查看服务器连接数命令
netstat 命令:
1)统计80端口连接数
netstat -nat|grep -i "80"|wc -l
2)统计httpd协议连接数
ps -ef|grep httpd|wc -l
3)、统计已连接上的,状态为“established'
netstat -na|grep ESTABLISHED|wc -l
4) netstat -anpt |grep :80 |wc -l
统计80端口连接数
相关推荐
leodengzx 2020-04-16
chenchuang 2020-01-25
kyssfanhui 2020-11-16
secondid 2020-06-12
Attend 2020-04-08
cuixingwudi 2020-02-01
citic 2020-01-31
alfredkao 2013-06-25
周海汉的开发 2013-06-24
wpeng 2013-07-18
LUOPING0 2019-12-24
onlykg 2019-12-10
atb 2019-12-08
Summer的小屋 2013-08-13
dasheng0 2013-09-11