Jmeter监控服务器性能-拒绝连接

Ps:本篇文章纯属记录性能测试中遇到的问题(本人性能测试小白)

问题:ERROR java.net.connectException : Connection refused: connect

Jmeter监控服务器性能-拒绝连接_第1张图片
首先遇到这种问题,需要检查以下几点:
1、检查端口是否开放(如未开放则开放端口4444即可)

2、检查服务器防火墙是否关闭
service iptables status查看iptables服务的当前状态,绿色部分表示防火墙开启状态
iptables -L查看防火墙规则
Jmeter监控服务器性能-拒绝连接_第2张图片
1)重启后生效
开启: chkconfig iptables on
关闭: chkconfig iptables off
2)即时生效,重启后失效
开启: service iptables start
关闭: service iptables stop

遇到的问题,服务器 #/etc/sysconfig/没有iptables文件,解决办法:
因为默认使用的是firewall作为防火墙,把他停掉装iptable
1)systemctl stop firewalld //关闭firewalld
2)systemctl mask firewalld
3)yum install -y iptables //安装iptables
4)yum install iptables-services //安装iptables服务
然后就有iptables文件,就可以作配置
5)systemctl start iptables.service //开启服务
6)systemctl restart iptables.service // 重启防火墙使配置生效
7)systemctl enable iptables.service // 设置防火墙开机启动

3、检查服务器中ServerAgent服务是否启动(测试过程中因本地启动导致监控拒绝连接)
1)首先将ServerAgent文件传至服务器
Jmeter监控服务器性能-拒绝连接_第3张图片
startAgent.bat为window启动文件
startAgent.sh 为linux启动文件

2)给startAgent.sh赋权限chmod +x startAgent.sh
3)启动./startAgent.sh
Jmeter监控服务器性能-拒绝连接_第4张图片

你可能感兴趣的:(Jmeter)