码迷,mamicode.com
首页 > 其他好文 > 详细

97: Address family not supported by protocol,nginx服务启动失败

时间:2018-09-04 23:34:54      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:服务启动   config   ima   fail   test   配置文件   服务   src   yum   

1、启动nginx服务报错

环境:centos 6.9,yum安装的nginx,启动报错

[root@lnmp ~]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: [emerg] socket() [::]:80 failed (97: Address family not supported by protocol)
nginx: configuration file /etc/nginx/nginx.conf test failed

 

2、尝试修改配置文件

vi /etc/nginx/nginx.conf

没发现要修改的端口信息

listen 80;
仔细查看nginx的主配置文件发现include选项,包含了nginx的其他配置文件

技术分享图片

然后继续查看发现:

技术分享图片

 

3、解决办法

   vim /etc/nginx/conf.d/default.conf
将:
    listen       80 default_server;
    listen       [::]:80 default_server;
改为:
    listen       80;
    #listen     [::]:80 default_server;

启动nginx就成功了。

 

 

97: Address family not supported by protocol,nginx服务启动失败

标签:服务启动   config   ima   fail   test   配置文件   服务   src   yum   

原文地址:https://www.cnblogs.com/yihr/p/9588964.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!