Rancher与K8S 踩坑

陌路散爱 提交于 2020-03-26 10:19:09

3 月,跳不动了?>>>

环境:Centos7

ERROR: http://serverip:8080/v1 is not accessible (Failed to connect to ip port 8080: No route to host)

Centos默认设置/proc/sys/net/ipv4/ip_forward 为 0,这从底层阻断了Docker所有网络。

解决办法:

1.比较麻烦

 vi /usr/lib/sysctl.d/00-system.conf

添加如下代码:

net.ipv4.ip_forward=1

net.bridge.bridge-nf-call-ip6tables = 1

net.bridge.bridge-nf-call-iptables = 1

net.bridge.bridge-nf-call-arptables = 1

重启network服务

systemctl restart network

查看是否修改成功

sysctl net.ipv4.ip_forward

如果返回为

net.ipv4.ip_forward = 1

转自:https://blog.csdn.net/hb_964385339/article/details/100636176

2.办法2简单 systemctl stop firewalld 直接关闭防火墙

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!