2024年最新apache,httpd服务启动报错解决方法【linux用日志排错方法】(2),Linux运维编程基础

最全的Linux教程,Linux从入门到精通

======================

  1. linux从入门到精通(第2版)

  2. Linux系统移植

  3. Linux驱动开发入门与实战

  4. LINUX 系统移植 第2版

  5. Linux开源网络全栈详解 从DPDK到OpenFlow

华为18级工程师呕心沥血撰写3000页Linux学习笔记教程

第一份《Linux从入门到精通》466页

====================

内容简介

====

本书是获得了很多读者好评的Linux经典畅销书**《Linux从入门到精通》的第2版**。本书第1版出版后曾经多次印刷,并被51CTO读书频道评为“最受读者喜爱的原创IT技术图书奖”。本书第﹖版以最新的Ubuntu 12.04为版本,循序渐进地向读者介绍了Linux 的基础应用、系统管理、网络应用、娱乐和办公、程序开发、服务器配置、系统安全等。本书附带1张光盘,内容为本书配套多媒体教学视频。另外,本书还为读者提供了大量的Linux学习资料和Ubuntu安装镜像文件,供读者免费下载。

华为18级工程师呕心沥血撰写3000页Linux学习笔记教程

本书适合广大Linux初中级用户、开源软件爱好者和大专院校的学生阅读,同时也非常适合准备从事Linux平台开发的各类人员。

需要《Linux入门到精通》、《linux系统移植》、《Linux驱动开发入门实战》、《Linux开源网络全栈》电子书籍及教程的工程师朋友们劳烦您转发+评论

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以点击这里获取!

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

  • 但无论是什么原因导致某服务启动失败的,不要慌,要学会看日志,日志一般都有详细提示。

  • 查看日志的方式有2种,一种是执行:journalctl -xe,另一种是查看messages的方式,两种方式不是绝对的某一种好使,下面我会分别作出说明。

  • 其实无论是哪种方式,查看到的报错内容根本都是一样的,只是这2种方式对于不同的服务会有不同的展示方式,所以2种都会的话是最好的了。

apache【httpd】启动报错【messages定位】

============================================================================================

  • 报错如图:

在这里插入图片描述

[root@control ~]# 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.

  • httpd服务启动可能报错原因各有不同,但无论是什么原因导致的,不要慌,要学会看日志,日志一般都有详细提示。

解决步骤


方式一【journalctl】

  • 启动报错的时候下面会提醒你输入 systemctl status httpd.servicejournalctl -xe查看详细

在这里插入图片描述

  • 说明

  • systemctl status httpd.service:既然服务起不来,那么看的这个状态肯定是failed的。

  • journalctl -xe:这是直接查看日志,这里面可能会有关键字

这个呢,就注意看有没有:invalid value这个开头的关键字,如果有的话,一般后面就是报错内容了

可以这样:journalctl -xe | grep "invalid value"过滤哦。

但这个不适用于http,因为http配置文件太多,过滤出来看不出是哪行,所以就pass了,但日志有行号哦。

在这里插入图片描述

方式二【messages】

  • 可以用这个来过滤:cat /var/log/messages |grep "invalid value"

但我这不用过滤,用查看动态的形式来展示吧。

  • 看日志,日志中有详细说明

  • cd /var/log

  • tail -f messages

简单说明一下:messages是系统日志,启动报错这里会有提示,tail -f 是动态查看的意思

在这里插入图片描述

  • 然后重新打开一个窗口,重启或启动httpd服务:systemctl restart httpd,然后回到日志窗口看最新日志

在这里插入图片描述

报错处理【带行号】

  • 这种有说行号的处理就比较简单了

  • 上图中看到 说配置文件中 /etc/httpd/conf/httpd.conf中265行错误,所以,现在打开文件,定位到265行

在这里插入图片描述

  • 问题定位到了,把265行注释掉,重启试试

在这里插入图片描述

  • 启动服务:systemctl start httpd, 成功

在这里插入图片描述

  • 说明一下,我之前以为把配置文件改了重启就会报错,然而发现配置文件不是关键,而是 mod_wsgi 服务,我把mon_wsgi卸载以后重启就报错了,把 mon_wsgi装上以后就重启正常了,这里这么做,只是 测试 如何看日志 以及 如果通过日志 处理报错问题。

在这里插入图片描述

  • wsgi 正确路径建议指定如下图哦:

在这里插入图片描述

etcd启动报错【journalctl定位】

=====================================================================================

  • 报错内容如下:

[root@vms160 ~]# systemctl restart etcd

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

[root@vms160 ~]#

解决步骤


方式一【journalctl】

  • 启动报错的时候下面会提醒你输入 systemctl status httpd.servicejournalctl -xe查看详细

[root@vms160 ~]# systemctl restart etcd

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

[root@vms160 ~]#

  • 说明

  • systemctl status httpd.service:既然服务起不来,那么看的这个状态肯定是failed的。

  • journalctl -xe:这是直接查看日志,这里面可能会有关键字

这个呢,就注意看有没有:invalid value这个开头的关键字,如果有的话,一般后面就是报错内容了

可以这样:journalctl -xe | grep "invalid value"过滤哦。

这种更实用于你知道这个配置文件,且知道这行内容是啥的情况。

如下:

[root@vms160 ~]# journalctl -xe | grep “invalid value”

7月 13 16:44:03 etcd1 bash[2559]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: URL scheme must be http, https, unix, or unixs:

7月 13 16:44:04 etcd1 bash[2570]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: URL scheme must be http, https, unix, or unixs:

7月 13 16:44:04 etcd1 bash[2580]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: URL scheme must be http, https, unix, or unixs:

7月 13 16:44:44 etcd1 bash[2604]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: URL scheme must be http, https, unix, or unixs:

7月 13 16:44:44 etcd1 bash[2615]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: URL scheme must be http, https, unix, or unixs:

7月 13 16:44:45 etcd1 bash[2625]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: URL scheme must be http, https, unix, or unixs:

7月 13 16:44:45 etcd1 bash[2635]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: URL scheme must be http, https, unix, or unixs:

7月 13 16:44:45 etcd1 bash[2646]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: URL scheme must be http, https, unix, or unixs:

7月 13 16:45:35 vms160 bash[2707]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: URL scheme must be http, https, unix, or unixs:

7月 13 16:45:35 vms160 bash[2722]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: URL scheme must be http, https, unix, or unixs:

7月 13 16:45:36 vms160 bash[2733]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: URL scheme must be http, https, unix, or unixs:

7月 13 16:45:36 vms160 bash[2744]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: URL scheme must be http, https, unix, or unixs:

7月 13 16:45:36 vms160 bash[2755]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: URL scheme must be http, https, unix, or unixs:

7月 13 16:47:21 vms160 bash[2789]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: parse 192.168.59.160:2379: first path segment in URL cannot contain colon

7月 13 16:47:21 vms160 bash[2800]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: parse 192.168.59.160:2379: first path segment in URL cannot contain colon

7月 13 16:47:21 vms160 bash[2811]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: parse 192.168.59.160:2379: first path segment in URL cannot contain colon

7月 13 16:47:22 vms160 bash[2821]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: parse 192.168.59.160:2379: first path segment in URL cannot contain colon

7月 13 16:47:22 vms160 bash[2832]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: parse 192.168.59.160:2379: first path segment in URL cannot contain colon

7月 13 16:48:00 vms160 bash[2862]: invalid value “http://localhost:2379,192.168.59.160:2379” for flag -listen-client-urls: parse 192.168.59.160:2379: first path segment in URL cannot contain colon

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以点击这里获取!

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

  • 22
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值