新来了一批机子,打算用来做
性能测试的负载机,安装好完整的LR程序后(可能有些人认为只安装agent proess程序就行了,但我还是安装了完整版的,避免出现一些未知的问题,反正花费的时间差不多),通过Contorller进行调用,在调用HTTP协议的代码时,一切顺利,但是调用JAVA代码时,遇到了一些问题,现总结如下:
1. 启动 agent proess时,报如下错误
28/10/2013 14:55:06 Error: Communication error: Failed to bind socket while calling bind function. [MsgId: MERR-10344] 28/10/2013 14:55:06 Error: Communication error: Failed to create a TCP server for the HTTP channel's server. [MsgId: MERR-10344] 28/10/2013 14:55:06 Error: Two Way Communication Error: Function two_way_comm_create_acceptor failed. [MsgId: MERR-60999] 28/10/2013 14:55:06 Warning: Failed to create "router" server. [MsgId: MWAR-29974] |
可以不用去理会,不影响运行结果
2. Contorller调用JAVA程序,在负载机上运行时,报如下错误:
Error: Failed to open .eve file: "d:\lr_results\sw\smx\login\res\192.168.32.114_8.eve”
这个是负载机环境的.NET环境有问题(谢谢MIKE的提醒),更新完最新的相关补丁后,解决!(
360打补丁还是很好用的)
3. 解决完问题2后,再次调用运行后,报如下错误:
Compilation process failed
最后的解决方案记录如下:
在负载机上,把脚本中使用到的其它jar包或class文件,放到
loadrunner安装路径下的classes目录下
如:D:\Program Files\HP\LoadRunner\classes
注意:如果import 时,调用的class文件,有路径,则放到classes时,也需要对应放置
如:import com.seaway.test.CookieCallServer;
那么,放到D:\Program Files\HP\LoadRunner\classes下的,也要为com.seaway\test\CookieCallServer;
即,完整路径为:D:\Program Files\HP\LoadRunner\classes\com.seaway\test\CookieCallServer;
问题解决!