CentOS服务进程管理
时间:2015-08-27 13:29 来源:linux.it.net.cn 作者:IT
1. 查看进程
查看所有有关httpd的进程
ps –ef |httpd
以树的方式查看所有httpd的进程(-p代表显示树枝)
pstree –p |grep httpd
2. 查看端口
netstat –tunpl |grep httpd
netstat -an
3. 关闭进程
pkill <进程名字>
kill -9 pid
4. 查看服务器的性能负载、日志等
Linux下的进程管理器
top
简单查看负载
uptime
最近重要操作
last
查看系统日志
cat /var/log/messages
查看当前在线
who
(责任编辑:IT)
1. 查看进程 查看所有有关httpd的进程 ps –ef |httpd 以树的方式查看所有httpd的进程(-p代表显示树枝) pstree –p |grep httpd 2. 查看端口 netstat –tunpl |grep httpd netstat -an 3. 关闭进程 pkill <进程名字> kill -9 pid 4. 查看服务器的性能负载、日志等 Linux下的进程管理器 top 简单查看负载 uptime 最近重要操作 last 查看系统日志 cat /var/log/messages 查看当前在线 who (责任编辑:IT) |