当前位置: 代码迷 >> 综合 >> [Nginx] emerg 8080 failed address family not supported by protocal
  详细解决方案

[Nginx] emerg 8080 failed address family not supported by protocal

热度:2   发布时间:2023-12-12 01:19:42.0

question

ng配置里有一项是接收ipv6地址

与IPV6有关,Address family not supported by protocol也进一步印证了
ipv6 is disabled on your server.

resolution1

修改配置,将ipv6相关配置注释,也就是下面第二行

listen 8080;
listen [::]:8080 ipv6only=on;  # 这一行注释 可以解决问题 

resolution2

编译ng时需要加上ipv6的模块
具体查一下

ipv6的理解
有些客户端用的ipv6地址,如果直接ng需要ng支持接收ipv6协议的客户端,

因此这种情况需要ipv6模块
实际生产环境f5会将客户端的Ipv6转成ipv4

  相关解决方案