美文网首页
2019-05-10 阿里云轻量服务器 nginx docker

2019-05-10 阿里云轻量服务器 nginx docker

作者: 多吃水果少吃肉 | 来源:发表于2019-05-10 14:07 被阅读0次

    阿里云轻量服务器安装了docker 之后, 拉取nginx 镜像, 运行出现:

    [zk@xxx opt]$ netstat -nlp
    (No info could be read for "-p": geteuid()=1003 but you should be root.)
    Active Internet connections (only servers)
    Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
    tcp        0     :::80              :::*               LISTEN      -
    

    而不是:
    tcp 0 0.0.0.0:80 0.0.0.0:* LISTEN -

    测试了google上的各种方法, 在临近放弃的时候, 发现一个管用的: https://github.com/moby/moby/issues/2174, 同时吐槽一下, 百度 n 多人的博客都是一模一样的, 都不管用, 不知道是百度的问题还是国内博客作风问题............此处没有态度, 仅做吐槽.
    最后用的方法是:

    nano /etc/default/grub
    add ipv6.disable=1 at line 6,like:
    GRUB_CMDLINE_LINUX="ipv6.disable=1 ..."
    grub2-mkconfig -o /boot/grub2/grub.cfg
    reboot
    

    引用自: https://github.com/moby/moby/issues/2174#issuecomment-256286602

    感谢!!

    最终效果:

    [zk@xxx opt]$ netstat -nlp
    (No info could be read for "-p": geteuid()=1003 but you should be root.)
    Active Internet connections (only servers)
    Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
    tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      -
    

    后来发现,虽然显示上是只监听 ipv6 其实 都能用的,笑哭😂瞎搞

    相关文章

      网友评论

          本文标题:2019-05-10 阿里云轻量服务器 nginx docker

          本文链接:https://www.haomeiwen.com/subject/yqhaoqtx.html