启动 httpd 服务时报错
Job for httpd.service failed because the control process exited with error code. See "systemctl status httpd.service" and "journalctl -xe" for details.
首先 systemctl status httpd 查看下状态:
8月 14 16:57:26 10-255-0-230 httpd[28061]: (98)Address already in use: AH00072: make_sock: could not bind to address [::]:80 8月 14 16:57:26 10-255-0-230 httpd[28061]: (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80 8月 14 16:57:26 10-255-0-230 httpd[28061]: no listening sockets available, shutting down 8月 14 16:57:26 10-255-0-230 httpd[28061]: AH00015: Unable to open logs 8月 14 16:57:26 10-255-0-230 systemd[1]: httpd.service: main process exited, code=exited, status=1/FAILURE 8月 14 16:57:26 10-255-0-230 kill[28062]: kill: cannot find process "" 8月 14 16:57:26 10-255-0-230 systemd[1]: httpd.service: control process exited, code=exited status=1 8月 14 16:57:26 10-255-0-230 systemd[1]: Failed to start The Apache HTTP Server. 8月 14 16:57:26 10-255-0-230 systemd[1]: Unit httpd.service entered failed state. 8月 14 16:57:26 10-255-0-230 systemd[1]: httpd.service failed.
更具状态看出 80 端口被占用
netstat -antlp | grep 80
了解一下
原来是 nginx 占用了端口
停止即可
nginx如何停止,命令是什么?
Linux下nginx服务如果要停止的话我们需要通过命令来控制,下面为大家整理了linux下nginx停止命令的相关知识,希望对大家有帮助!
linux的nginx停止命令详解
nginx的停止有三种方式:
linux的nginx停止命令一、从容停止
1、查看进程号
1 |
|
2、杀死进程
1 |
|
linux的nginx停止命令二、快速停止
1、查看进程号
1 |
|
2、杀死进程
1 2 |
|
linux的nginx停止命令三、强制停止
1 |
|
更多Nginx相关技术文章,请访问Nginx使用教程栏目进行学习!
以上就是nginx如何停止命令的详细内容,更多请关注php中文网其它相关文章!
评论专区