分类: LINUX
2012-02-22 10:53:04
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是否安装
[root@localhost bin]# whereis rpc.rstatd
发现系统未安装rpc.rstatd
备注:rstatd Rstat协议允许网络上的用户获得同一网络上各机器的性能参数。
二 准备下载包:下载rpc.rstatd-4.0.1.tar.gz安装包
下载地址:
利用ssh客户端上传rpc.rstatd-4.0.1.tar.gz包至Linux下/home/Michael/tool/目录下
三 执行安装程序包:
tar -xzvf rpc.rstatd-4.0.1.tar.gz //解压rcp.rstatd
cd rpc.rstatd-4.0.1//进入到rpc.rstatd目录中
./configure //配置rc.rstatd的安装,以下我的是按照默认方式的
make //编译rc.rstatd
make install // 安装
启动rpc.rstatd和检测
rpc.rstatd//启动rpc.rstatd进程
rpcinfo –p // 执行此命令检查rpc服务的状态
[root@localhost xinetd.d]# rpcinfo -p
程序版本协议 端口
1000002 tcp111 portmapper
1000002 udp111 portmapper
1000241 udp 32768 status
1000241 tcp 32769 status
1000015 udp867 rstatd
1000013 udp867 rstatd
1000012 udp867 rstatd
1000011 udp867 rstatd
七 利用Loadunner中的Controller监控Linux资源
1 在controller中,将Systeme Resourece Graphs中的UNIX resources拖到右键的资源监控区域
2 鼠标右键选择Add Measurements,添加被监控linux的IP地址192.168.52.189,选择需监控的性能指标,确认
关于启动rpc时提示Cannot register service: RPC: Unable to receive; errno = Connection refused的问题
提示:Cannot register service: RPC: Unable to receive; errno = Connection refused
这是因为你的服务器没有开启端口映射的功能。今天把这个问题的解决方法写下来,希望对有类似问题的朋友有所帮助。
[root@codebreaker]#setup
这时会弹出一个类似图形化的界面,光标移动到System services,回车。在新界面中找到portmap项,空格选中。然后选择OK,再选择quit。
[root@codebreaker]#/etc/rc.d/init.d/portmap start //启动portmap
现在再试下rpc.rstatd?