报错信息:
报错原因:
1、在安装好Nginx服务的时候,可以正常启动Nginx,但是执行systemctl restart nginx的时候,会报错,然后去查看服务的日志发现此问题。
2、经过在CSDN上面尝试了一下,找到了方法,可以正常运行。
解决方法:
1、先执行netstat -tnlp命令把端口号查出来。
netstat -tnlp | grep 80
2、可能是因为Nginx服务的端口被占用,查看Nginx服务。
ps -ef | grep nginx
3、然后再执行pkill -9 nginx命令把Nginx服务给杀掉。
pkill -9 nginx
4、然后再进行重启Nginx服务。
systemctl start nginx
5、查看Nginx服务的状态。
systemctl status nginx标签:服务,service,start,nginx,systemctl,报错,Nginx From: https://www.cnblogs.com/Bookcict/p/17251038.html