Linux:判断httpd服务是否启动的多种方式

①systemctl is-active httpd
②systemctl status httpd
③ps -aux | grep httpd 查看服务进程信息
④lsof -i:80 列出80端口的网络连接信息
⑤netstat -tunlp | grep httpd 查看网络监听的80端口信息

你可能感兴趣的:(笔记,RHCE,linux,运维,服务器)