进程管理
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 开机启动
时间: 2024-10-03 13:44:59