linux进程和服务管理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux进程和服务管理相关的知识,希望对你有一定的参考价值。
进程管理
1.查看进程
ps -ef
ps -aux
top
-d 1 时间间隔1秒 默认3秒
-p XX 查看指定PID的进程信息
2.结束进程
服务管理
CentOS 7.0
1.启动关闭
systemctl start httpd.service 启动服务
systemctl stop httpd.service 关闭服务
systemctl restart httpd.service 重启服务
systemctl reload httpd.service 重新加载服务
systemctl status httpd.service 查看服务运行状态
systemctl show httpd.service 显示服务或任务的属性
2.开机启动
systemctl disable httpd.service 开机不启动
systemctl enable httpd.service 开机启动
以上是关于linux进程和服务管理的主要内容,如果未能解决你的问题,请参考以下文章