Windows安装Apache(解决问题Set the 'ServerName' directive globally to suppress this message)

  1. 下载Apache
  2. 修改tttp.conf文件
  3. 命令安装http服务
  4. (解决问题Could not reliably determine the server’s fully qualified domain name, using fe80::d558:4c0:68e3:fdd1. Set the ‘ServerName’ directive globally to suppress this message)
  5. 查看是否安装成功
    1.下载链接
    https://www.apachelounge.com/download/VC11/
    Windows安装Apache(解决问题Set the 'ServerName' directive globally to suppress this message)_第1张图片
    将压缩包解压到某盘,我的是E盘,找到Apache24这个目录的路径,等会儿要用,我的是安装路径是E:\httpd-2.4.38-win64-VC11\Apache24
    Windows安装Apache(解决问题Set the 'ServerName' directive globally to suppress this message)_第2张图片
    2.修改http.conf文件
    修改Apache24/conf/目录下的httpd.conf文件,记事本打开就可以
    Windows安装Apache(解决问题Set the 'ServerName' directive globally to suppress this message)_第3张图片
    修改内容:
    将" "中的路径改为自己的安装目录路径,也就是Apache24的路径,注意是这个斜杠“/”
    Windows安装Apache(解决问题Set the 'ServerName' directive globally to suppress this message)_第4张图片
    修改端口号,可以不修改,如果后面提示端口被占用启动不来httpd服务则可以选择修改这个端口号,或者停止占用80端口的服务。我这里不修改,默认80。
    Windows安装Apache(解决问题Set the 'ServerName' directive globally to suppress this message)_第5张图片
    将这个语句注释掉
    Windows安装Apache(解决问题Set the 'ServerName' directive globally to suppress this message)_第6张图片
    3.命令安装http服务
    管理员运行cmd
    Windows安装Apache(解决问题Set the 'ServerName' directive globally to suppress this message)_第7张图片
    先切换到Apache24/bin目录,输入命令httpd.exe -k install -n apache安装httpd服务
    -n apache是命名服务名为apache,后面启动服务就用这个名字
    Errors reported here must be corrected before the service can be started.这句话的意思是:如果这句话后面没有内容则表示安装成功,到第5步启动服务就可以了,后面有内容则为出现的错误。
    Windows安装Apache(解决问题Set the 'ServerName' directive globally to suppress this message)_第8张图片
    4.解决问题Could not reliably determine the server’s fully qualified domain name, using xxxx:xxxx:xxxx:ffff:68e3:fdd1. Set the ‘ServerName’ directive globally to suppress this message
    打开网易翻译这段话。。。
    无法使用xxx::xxx:xxx:xxx3:xxx1可靠地确定服务器的完全限定域名。全局设置’ServerName’指令来禁止此消息
    在httpd.conf文件加上这句ServerName localhost:80
    Windows安装Apache(解决问题Set the 'ServerName' directive globally to suppress this message)_第9张图片
    重新执行命令httpd.exe -k install -n apache
    5.查看是否安装成功
    启动服务
    Windows安装Apache(解决问题Set the 'ServerName' directive globally to suppress this message)_第10张图片
    右击计算机选择管理,查看服务
    Windows安装Apache(解决问题Set the 'ServerName' directive globally to suppress this message)_第11张图片
    也可在浏览器输入localhost:80地址查看

你可能感兴趣的:(工具使用)