争怎路由网/系统工具/内容

jmeter在linux上打开报错:连接拒绝

系统工具2024-06-13 阅读
Linux,全称GNU/Linux,是一种免费使用和自由传播的类UNIX操作系统,其内核由林纳斯·本纳第克特·托瓦兹于1991年10月5日首次发布,它主要受到Minix和Unix思想的启发,是一个基于POSIX的多用户、多任务、支持多线程和多CPU的操作系统。
最近在Linux上使用jmeter进行压测时,遇到了下面问题:
使用jmeter-server启动jmeter server报错,提示中的endpoint并不是该server的ip:
server的ip是内网的192.168.60.223,但endpoint却是202.106.199.37,貌似是联通的一个外网ip。
[root@host_60_223 bin]# ./jmeter-server
Created remote object: UnicastServerRef [liveRef: [endpoint:[202.106.199.37:48777](local),objID:[114b877d:1535f0bf800:-7fff, -8953048443915791496]]]
Server failed to start: Java.rmi.RemoteException: Cannot start. See server log file.; nested exception is: 
java.rmi.ConnectException: Connection refused to host: 202.106.199.37; nested exception is: 
java.net.ConnectException: 连接超时
An error occurred: Cannot start. See server log file.; nested exception is: 
java.rmi.ConnectException: Connection refused to host: 202.106.199.37; nested exception is: 
java.net.ConnectException: 连接超时
 
通过网上各种查询,有人说是hostname在hosts文件中没有配置,这个一般都需要配置吗?
虽然疑问但没有找到别的解决办法,只能试试看:
[root@host_60_223 bin]# hostname
host_60_223
修改/etc/hosts文件加入下面的ip hostname
vi /etc/hosts
192.168.60.223 host_60_223
 
果然跟这个有关,至于为什么现在还不清楚。
[root@host_60_223 bin]# ./jmeter-server
Created remote object: UnicastServerRef [liveRef: [endpoint:[192.168.60.223:36259](local),objID:[3d1e428a:1535f20e6c7:-7fff, -6723038591539730142]]]

Linux是一套免费使用和自由传播的类Unix操作系统



……

相关阅读