zoukankan      html  css  js  c++  java
  • 解决apache启动错误"httpd:Could not reliably determine..."

    启动apache遇到错误:httpd: Could not reliably determine the server's fully qualified domain name

    [root@server httpd-2.2.4]# /usr/local/apache/bin/apachectl start

    httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

    1)进入apache的安装目录:(视个人安装情况而不同)

    [root@server ~]# cd /usr/local/apache/conf

    2)编辑httpd.conf文件,搜索"#ServerName",添加ServerName localhost:80

    [root@server conf]# ls
    extra  httpd.conf  magic  mime.types  original
    [root@server conf]# vi httpd.conf
    #ServerName www.example.com:80
    ServerName localhost:80

    3)再重新启动apache 即可。

    [root@server ~]# /usr/local/apache/bin/apachectl restart
  • 相关阅读:
    ES6 解构
    一些vue的知识点
    CSS选择器
    Django学习--介绍Django
    正则表达式
    ftp命令
    Vim学习指南
    关于ACM与OJ
    brctl命令
    LXC
  • 原文地址:https://www.cnblogs.com/kekeoutlook/p/10159578.html
Copyright © 2011-2022 走看看