httpd -v Server version: Apache/2.4.6 (CentOS) Server built: May 30 2023 14:01:11
输入: 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.
输入 httpd -v 后显示:
Server version: Apache/2.4.6 (CentOS) Server built: May 30 2023 14:01:11
然后输入: 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.
无法继续下一步。
网上各种搜原因,终于找到:Apache 和 Nginx的端口 80 冲突了,导致失败。需要修改端口。
所以在 httpd -v 和systemctl start httpd.service 中间加入这几步:
vim /etc/httpd/conf/httpd.conf
然后出来的页面找到 listen 80 改为 listen 8080
(知识点:进入编辑模式: i (在当前位置插入,开始编辑);
保存编辑文本: :w (英文冒号,保存当前编辑的文件);
退出编辑文件: :q(英文冒号,退出当前编辑的文件);
保存并退出: :wq (英文冒号,保存并退出当前编辑的文件);
强制退出: :q! (英文冒号,强制退出不保存)。)
然后按Esc,然后按:wq (好像也可以按Shift+zz 我忘了我是按哪个保存了)
然后就可以正常按流程走下去了。
但是后续的网址,记得要加上 :8080
其他就参照教程来了。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。