-lntp
|
grep
:80
找出占用80端口的进程
例如:
[root@localhost
~]#
netstat
-lntp
|
grep
:80
tcp
0
0
0000:80
0000:
LISTEN
3040/nginx
这里的程序名就是nginx
尝试用killall
[程序名],看能不能关闭他。
例如:killall
nginx
如果不行,用ps
找出他的PID,
例如:
[root@localhost
~]#
ps
aux
|
grep
nginx
|
grep
-v
grep
root
5406
00
02
5996
756
Ss
03:32
0:00
nginx:
master
process
/usr/local/webserver/nginx/sbin/nginx
这里的pid是
5406
然后用kill命令关掉它。
例如:kill
5406
PS:如果是通过apt-get安装的apache,可以尝试通过/etc/initd/[程序名]
stop
停止进程,或者
通过chkconfig
[程序名]
off
关闭开机启动。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)