当前位置:首页 > linux > 正文内容

centos 开启docker 服务无法被外界访问(centos是虚拟机)

root3年前 (2021-08-27)linux851

现象:centos 能够被ssh 登录访问。但是用docker开启的服务就是访问不了,centos 自己可访问。

开启的一个python -m SimpleHTTPServer 能够访问;


原因:linux 的ip_forward设置限制了,centos内部虚拟网络无法被外界访问。

cat /proc/sys/net/ipv4/ip_forward

如果为0,就是限制

解决:

修改配置

vi /etc/sysctl.conf

添加/修改下面的内容

net.ipv4.ip_forward = 1

然后重启系统即可

扫描二维码推送至手机访问。

版权声明:本文由一叶知秋发布,如需转载请注明出处。

本文链接:https://zhiqiu.top/?id=143

分享给朋友:

相关文章

linux 更换apt的源

sudo sed -i 's/archive.ubuntu.com/mirrors.ustc.edu.cn/g' /etc/apt/sources.list将archive.ubunt...

python安装的时候出现python setup.py egg_info Check the logs for full command output

python安装的时候出现python setup.py egg_info Check the logs for full command output

解决yum install python2-develpip install --upgrade setuptools...

ssh自动添加hostkey到know_hosts

有时后端daemon或者脚本在执行ssh连接时,会遇到以下提示:The authenticity of host 'git.sws.com (10.42.1.88)' can't be establishe...

contos yum install ** 提示没有可用软件包

yum install -y epel-release#添加一个epel的三方源,据说新大全在执行yum install ***...

Cannot uninstall 'ipaddress'. It is a distutils installed project and thus

强制升级:sudo pip install --ignore-installed +模块名...

nfs 服务搭建

https://blog.51cto.com/u_12965094/2788462 https://blog.csdn.net/weixin_44767040/article/details/124735520...