五、关闭防火墙
  [root@localhost /]#  service iptables stop
  六、利用LR中的Controller监控Linux资源
  在Controller中,将System Resource Graphs中的Unix resources拖到右侧的资源监控区域。
  鼠标右键选择Add Measurements,添加被监控Linux的IP地址x.x.x.x,选择需要监控的性能指标,确认。
  注意:监控过程中要关闭Linux防火墙,否则可能会监控失败
  七、遇到的问题
  1. LoadRunner监控Linux资源时弹出如下错误:
  Monitor name :UNIX Resources. Cannot initialize the monitoring on 192.168.52.189. Error while creating the RPC client. Ensure that the machine can be connected and that it runs the rstat daemon (use rpcinfo utility for this verification). Detailed error: RPC: Failed to create RPC client.
  RPC-TCP: Failed to establish RPC server address.
  原因:Linux系统中没有安装rpc.rstatd,服务未开启的原因造成的。
  解决办法:照上述方法安装rpc.rstatd并开启即可监控Linux.
  2. configure: error: no acceptable C compiler found in $PATH
  原因:未安装gcc编译器. 在命令行里敲入gcc –v, 如果提示command not found 表示你的系统里没有安装gcc编译器
  解决办法:yum install gcc
  简单介绍监控UNIX
  lr监控UNIX ,UNIX先启动一rstatd服务
  以下是在IBM AIX系统中启动rstatd服务的方法:
  1、 使用telnet以root用户的身份登录入AIX系统
  2、 在命令行提示符下输入:vi /etc/inetd.conf
  3、 查找rstatd,找到
  #rstatd   sunrpc_udp     udp     wait    root    /usr/sbin/rpc.rstatd rstatd 100001 1-3
  4、将#去掉
  5、:wq保存修改结果
  6、命令提示符下输入:refresh –s inetd 重新启动服务。
  这样使用loadrunner可以监视AIX系统的性能情况了。
  注:在HP UNIX系统上编辑完inetd.conf后,重启inetd服务需要输入inetd -c
  UNIX上也可以用rup命令查看rstatd程序是否被配置并激活
  若rstatd程序已经运行,重启时,先查看进程ps -ef |grep inet,然后杀掉进程,再refresh –s inetd进行重启。