我在虚拟机上运行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
请帮帮我。 :○
由于
答案 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服务。
我认为在使用这些解决方案的解决方案后,您的问题就可以了。