ps aux --sort -%cpu |less (查看占用系统cpu排序)
ps aux 查看静态的进程信息
--sort -%cpu 排序反向查看cpu的负载
less 分页查看
top
动态查看进程
top 中的 load average 显示服务器 1 5 15 分钟内的平均负载
image.png
端口被占
原因是nginx 和 httpd 服务使用同一个端口 80
先查看80端口是谁在占用
lsof -i:80
systemctl rtop httpd ------> killall httpd
进程被杀 或者 关闭占用端口的进程
然后 systemctl restart nginx --- 80
网友评论