CentOS 7 |无法启动Apache

时间:2016-07-09 16:30:04

标签: linux apache centos

我在虚拟机上运行CentOS 7 x86。 我已经安装了Apache并希望启动它,但如果我键入:

systemctl start httpd.service

它给了我这个错误:

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.service

它给了我this error

当我输入

journalctl -xe

它给了我this error

请帮帮我。 :○

由于

1 个答案:

答案 0 :(得分:0)

我认为您希望将端口3221映射为使用apache而您无法访问selinux。

尝试这些解决方案的解决方案:

  

/etc/httpd/conf/httpd.conf的监听选项更改为 80 ,如果 3221 对您不重要并再次重新启动httpd

  

setsebool -P httpd_can_network_connect 1

并重新启动您的httpd服务。

  

sudo yum -y install policycoreutils-python

     

sudo semanage port -a -t http_port_t -p tcp 3221

并重新启动您的httpd服务。

我认为在使用这些解决方案的解决方案后,您的问题就可以了。