linux如何关闭
发布时间: 2023-12-30 04:47:25
‘壹’ 如何关闭linux主机的web服务器
用netstat
-lntp
|
grep
:80
找出占用80端口的进程
例如:
[root@localhost
~]#
netstat
-lntp
|
grep
:80
tcp
0
0
0.0.0.0:80
0.0.0.0:*
LISTEN
3040/nginx
这里的程序名就是nginx
尝试用killall
[程序名],看能不能关闭他。
例如:killall
nginx
如果不行,用ps
找出他的PID,
例如:
[root@localhost
~]#
ps
aux
|
grep
nginx
|
grep
-v
grep
root
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
5406
PS:如果是通过apt-get安装的apache,可以尝试通过/etc/init.d/[程序名]
stop
停止进程,或者
通过chkconfig
[程序名]
off
关闭开机启动。
热点内容