例如:killall nginx如果不行,用ps 找出他的PID,例如:[root@localhost ~]# ps aux | grep nginx | grep -v greproot 5406 0.0 0.2 5996 756 ? Ss 03:32 0:00 nginx: master process /usr/local/webserver/nginx/sbin/nginx这里的pid是 5406然后用kill命令关掉它。例如:kill 5406PS:如果是通过apt-get安...
netstat -anp | grep -E '(:80|:443)' 在这里,-E选项启用了扩展正则表达式,这样你就可以使用|来分隔多个端口号了。注意,我在端口号前后都加了冒号(:),这是为了匹配netstat输出中的端口号格式(例如tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 1234/nginx)。
4)、查出哪个IP地址连接最多,将其封了。 netstat -na|grep ESTABLISHED|awk {print $5}|awk -F: {print $1}|sort|uniq -c|sort -r +0n netstat -na|grep SYN|awk {print $5}|awk -F: {print $1}|sort|uniq -c|sort -r +0n 查看nginx当前并发访问数: netstat -apn|grep 'nginx: worker'...
4)、查出哪个IP地址连接最多,将其封了。 netstat -na|grep ESTABLISHED|awk {print $5}|awk -F: {print $1}|sort|uniq -c|sort -r +0n netstat -na|grep SYN|awk {print $5}|awk -F: {print $1}|sort|uniq -c|sort -r +0n 查看nginx当前并发访问数: netstat -apn|grep 'nginx: worker'...
+是前台进程,我们刚才在shell里执行的ps aux|grep nginx就是这样的状态。 才外还有: R:正在运行的进程 D:不能中断的进程 T:暂停的进程 Z:僵尸进程 <:高优先级进程 N:低优先级 I:多线程进程 二、查看网络状态 我们一般使用netstat命令查看我们的网络状态。比如我们的22号端口是否开启,80端口是否开启,有多少ud...
linux查看端口占用一般使用”netstat”命令,有时候”netstat”命令可能没有预装,则需要先进行安装 “yum install net-tools”。 比如用”netstat”命令查看80端口被哪进程占用 [root@localhost~]#netstat-anp|grep:80tcp000.0.0.0:800.0.0.0:*LISTEN 22500/nginx:master ...
netstat -na | grep -i 1883|grep ESTABLISHED|wc -l [root@iZbp10j40viotftelmrcx2Z~]# netstat-na|grep-i1883|grep ESTABLISHED|wc-l185[root@iZbp10j40viotftelmrcx2Z~]# 参考文献 1、man8手册 2、netstat 3、使用netstat进行网络管理
ps-ef|grep服务名 或ps-aux|grep服务名#查看进程状态lsof-i:端口号#看端口.前提是要知道服务的端口号是多少,常用端口号 nginx 80,FTP 21,SSH 22,Telnet 23,HTTP 80,HTTPS 443,Tomcat 8080,Oracle 1521,MySQL 3306,SQLServer 1433,Redis 6379netstat-anp|grep端口号#查看监听端口(若存在该端口的监听,证明服务...
grep <端口号> 表示查找过滤。 方法二 lsof 同样如果系统没有预装,则需要自己安装下”yum install lsof” [root@localhost ~]# lsof -i :80 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME nginx 22500 root 7u IPv4 194483 0t0 TCP *:http (LISTEN) ...
我的系统还安装了nginx,想要看看nginx运行是否正常,那么, pa aux |grep nginx 输出如下: [root@centos1 ~]# ps aux |grep nginx root 1647 0.0 0.0 47392 1308 ? Ss Sep08 0:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf ...