Loadrunner监控Centos

一、安装必要包

yum istall gcc gcc-c++ rpcbind -y

二、下载安装必要软件rstatd

下载并安装rstatd,下载地址:http://sourceforge.net/projects/rstatd

安装rstatd

[[email protected] /]#  tar -xzvf  rpc.rstatd-4.0.1.tar.gz

[[email protected] /]#  cd  rpc.rstatd-4.0.1

[[email protected] /]#  ./configure

[[email protected] /]#  make && make install

三、启动

[[email protected] /]#  rpcbind

[[email protected] /]#  rpc.rstatd

四、关闭防火墙

[[email protected] /]# service iptables stop

[[email protected] /]# chkconfig iptables off

五、关于安装rsh、rsh-server

看网上好多教程说要安装这两个服务,这两个服务是基于xinetd服务的,所以yum安装完rsh-server服务后,自动安装xinetd(如果没有安装的话)。但没有安装这两个服务,在Loadrunner添加监控时,也能成功。不知道这两个服务有什么用???

六、错误-47195

在Loadrunner添加ip时,报一个-47195错误:

Monitor name :UNIX Resources. 无法在计算机 ***.***.***.*** 上访问度量 Disk Traffic 的数据。提示: 在计算机上检查是否有此类度量(使用“添加计算机”对话框)(入口点: CRstatMeasurement::CRstatMeasurement)。 [MsgId: MMSG-47195]

解决办法:因为汉化版的缘故,所以要在添加监控时,把“资源度量位于”中的Disk Traffic选项删除,添加中文的“磁盘流量” 。

时间: 2024-09-29 02:38:03

Loadrunner监控Centos的相关文章

LoadRunner监控Linux

LoadRunner监控Linux rstat协议允许网络上的用户获得同一网络上各机器的性能参数. 需要下载3个包: (1)rsh-0.17-14.i386.rpm (2)rsh-server-0.17-14.i386.rpm (3)rpc.rstatd-4.0.1.tar.gz 一.安装rsh 查看是否安装并卸载rsh [[email protected] /]#  rpm –qa |grep rsh --查看是否安装rsh [[email protected] /]#  rpm –e + 版

LoadRunner监控Linux资源

一.LoadRunner监控Linux资源 (一).准备工作 首先,监视Linux一定要有rstatd这个守护进程,有的Linux版本里也有可能是rpc.rstatd这里只是名字不同而已,功能是一样的. 1.可以通过两种方法验证服务器上是否配置了rstatd守护程序: (1)使用rup命令 它用于报告计算机的各种统计信息,其中就包括rstatd的配置信息.使用命令rup 10.130.61.203,此处10.130.61.203是要监视的linux/Unix服务器的Ip,如果该命令返回相关的统计

使用LoadRunner监控Apache的步骤 (转)

一.Apache上的设置 打开<Apache Installation>/conf/httpd.conf,进行如下修改: 1.  设置允许查看Apache运行状态的主机 # # Allow server status reports, with the URL of http://servername/server-status # Change the ".your-domain.com" to match your domain to enable. # #取消一下代码

Cacti监控Centos抓包unreachable - admin prohibited

09:10:41.023399 IP 192.168.1.80 > 192.168.2.182: ICMP host 192.168.1.80 unreachable - admin prohibited, length 79 抓包发现总是有这个出现,而且是跟在GetRequest后面. 打开iptables配置: 最开始网上找的配置语句是这个, -A INPUT -p udp -m udp --sport 161 -j ACCEPT 后面以为还需要开放tcp,又加了一条, -A INPUT -

LoadRunner监控tomcat

LoadRunner监控tomcat (2012-10-25 14:01:42)转载▼ double atof (const char * string);Action(){    // 保存JVM内存数值   web_reg_save_param("JVM_FreeMemory",                       "LB=Free memory: ",                       "RB= MB",         

LoadRunner监控Linux配置教程

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 thi

LoadRunner监控Linux与Windows方法

1.首先保证被监视的windows系统开启以下二个服务Remote Procedure Call(RPC) 和Remote Registry Service: 2.被监视的WINDOWS机器:右击我的电脑,选择管理->共享文件夹->共享 在这里面要有C$这个共享文件夹: 3.然后保证在安装LR的机器上使用运行.输入//被监视机器IP/C$ 然后输入管理员帐号和密码,如果能看到被监视机器的C盘了,就说明你得到了那台机器的管理员权限,可以使用LR去连接了. (说明: LR要连接WINDOWS机器进

Loadrunner监控windows系统“找不到网络路径”问题解决

一.监控windows系统: 1.监视连接前的准备工作 1)进入被监视windows系统,开启以下二个服务Remote Procedure Call(RPC) 和Remote Registry Service (开始—)运行 中输入services.msc,开启对应服务即可). 2)在被监视的WINDOWS机器上:右击我的电脑,选择管理->共享文件夹->共享 在这里面要有C$这个共享文件夹 (要是没有自己手动加上). 3)在安装LR的机器上,开始—>运行,输入 \\被监视机器IP\C$

LoadRunner 监控 Apache

配置Apache部分 1.修改Apache中Httpd.conf文件 <Location /server-status> SetHandler server-status Order deny,allow Deny from all Allow from .localhost </Location> 2.添加ExtendedStatus,设置ExtendedStatus On. 3.取消注释LoadModule status_module modules/mod_status.so