root@vps:~# netstat -tlnp|grep 3967
tcp 0 0 0.0.0.0:3967 0.0.0.0:* LISTEN 4293/flint
(说明3967端口被flint占用,flint的pid值是4293)
root@vps:~# netstat -tlnp|grep flint
tcp 0 0 0.0.0.0:3967 0.0.0.0:* LISTEN 4293/flint
(说明flint进程在运行中, 其pid值是4293,占用了3967端口)
root@vps:~#
netstat -tlnp|grep命令可以用来查找端口,也可用来查找进程。
查找端口的命令也可用lsof -i:3967
查找进程的命令也可用ps aux|grep flint或ps -ef|grep flint
tcp 0 0 0.0.0.0:3967 0.0.0.0:* LISTEN 4293/flint
(说明3967端口被flint占用,flint的pid值是4293)
root@vps:~# netstat -tlnp|grep flint
tcp 0 0 0.0.0.0:3967 0.0.0.0:* LISTEN 4293/flint
(说明flint进程在运行中, 其pid值是4293,占用了3967端口)
root@vps:~#
netstat -tlnp|grep命令可以用来查找端口,也可用来查找进程。
查找端口的命令也可用lsof -i:3967
查找进程的命令也可用ps aux|grep flint或ps -ef|grep flint
No comments:
Post a Comment