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

阿里云ECS在CentOS 6.9中使用Nginx提示:nginx: [emerg] socket() [::]:80 failed (97: Address family not supported by protocol)的解决方法

时间:2017-12-18 14:10:48      阅读:391      评论:0      收藏:0      [点我收藏+]

标签:替换   col   tail   color   led   centos 6   ref   www.   details   

说明:

1、[::]:80这个是IPv6的地址。

2、阿里云截至到今天还不支持IPv6。

解决方式:

1、普通解决方式:开启IPv6的支持,不过这个方法在阿里云行不通。

vim /etc/nginx/conf.d/default.conf
#找到并替换为以下:
listen 80;
listen [::]:80 ipv6only=on default_server;

2、极端方式:直接屏蔽IPv6,全部服务器都适用。

vim /etc/nginx/conf.d/default.conf
#找到并替换为以下:
listen 80;
#listen [::]:80 default_server;

最后直接在命令行下执行nginx即可启动成功。

 

参考:

http://www.hankcs.com/appos/linux/fix-nginx-bind-err.html

https://bbs.aliyun.com/read/147622.html?spm=5176.7114037.1996646101.4.Zgs0P7

http://m.blog.csdn.net/ltstud/article/details/75092319

阿里云ECS在CentOS 6.9中使用Nginx提示:nginx: [emerg] socket() [::]:80 failed (97: Address family not supported by protocol)的解决方法

标签:替换   col   tail   color   led   centos 6   ref   www.   details   

原文地址:http://www.cnblogs.com/EasonJim/p/8056944.html

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