我是靠谱客的博主 动人香水,最近开发中收集的这篇文章主要介绍解决apache 启动报错方法:# systemctl start httpd Job for httpd.service failed because ...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

问题:

    # systemctl start httpd

Job for httpd.service failed because the control process exited with error code. See "systemctl status httpd.service" and "journalctl -xe" for details.

解决思路:

   1、如果是通过配置本地yum源安装apache服务启动报错,可能是存在当前Linux系统的进程被默认端口(80)占用的情况,那么就可以通过修改httpd的配置文件中的端口来解决。

   2、或者是直接停止当前进程重启httpd。

解决方法:

   方法1:

        #  vim /etc/httpd/conf/httpd.conf

             将 Listen 80改为Listen 8080

   方法2:

        #  lsof -i:80 (如果没有修改则默认端口号为80)

        #   systemctl stop 进程名    

        # systemctl restart httpd

最后

以上就是动人香水为你收集整理的解决apache 启动报错方法:# systemctl start httpd Job for httpd.service failed because ...的全部内容,希望文章能够帮你解决解决apache 启动报错方法:# systemctl start httpd Job for httpd.service failed because ...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部