2. 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,服务未开启的原因造成的。
3. configure: error: no acceptable C compiler found in $PATH
原因:未安装gcc编译器. 在命令行里敲入gcc –v, 如果提示command not found 就表示你的系统里没有安装gcc编译器
解决办法:yum install gcc
作者: pcxty 时间: 2015-5-10 18:28
不错作者: 焦糖玛奇朵乔乔 时间: 2015-5-12 20:48
沙发作者: heise668 时间: 2015-11-23 16:29
很好的帖子作者: hjjtw 时间: 2015-11-27 11:11
修改/etc/xinetd.d目录下面的3个conf(rogin,rsh,rexec)中的disable均设置为no (这三个文件要安装rsh后才有)
[root@localhost /]# cd /etc/xinetd.d --进入到/etc/xinetd.conf目录中
[root@localhost /]# vi rlogin --编辑disable=no,保存
[root@localhost /]# vi rsh --编辑disable=no,保存
[root@localhost /]# vi rexec --编辑disable=no,保存作者: hjjtw 时间: 2015-11-27 11:12
修改/etc/xinetd.d目录下面的3个conf(rogin,rsh,rexec)中的disable均设置为no (这三个文件要安装rsh后才有)
[root@localhost /]# cd /etc/xinetd.d --进入到/etc/xinetd.conf目录中
[root@localhost /]# vi rlogin --编辑disable=no,保存
[root@localhost /]# vi rsh --编辑disable=no,保存
[root@localhost /]# vi rexec --编辑disable=no,保存
为什么我在CentOs系统上安装之后却找不到这三个文件呢?作者: GTP 时间: 2015-12-12 11:32
如果需要监控Linux,虽然这种方式可行,但我建议你使用另外两种方式:
1,使用HP的SiteScope进行监控,SiteScope本生可以和LR集成
2,使用Nmon(Linux版本)进行服务器监控 (下载地址:http://sourceforge.net/projects/nmon/)