docker的WARNING:bridge-nf-call-iptables is disabled的解决方案
作者:所有的向往303
这篇文章主要介绍了docker的WARNING:bridge-nf-call-iptables is disabled的解决方案,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
执行docker info出现如下警告
WARNING: bridge-nf-call-iptables is disabled
WARNING: bridge-nf-call-ip6tables is disabled
解决办法
vim /etc/sysctl.conf
- 添加以下内容
net.bridge.bridge-nf-call-ip6tables = 1 net.bridge.bridge-nf-call-iptables = 1
- 最后再执行
sysctl -p
此时docker info就看不到此报错了!
Docker之WARNING: IPv4 forwarding is disabled. Networking will not work
- 配置转发
[root@centos7 ~]vim /etc/sysctl.conf #配置转发 net.ipv4.ip_forward=1 #重启服务,让配置生效 [root@centos7 ~]systemctl restart network #查看是否成功,如果返回为“net.ipv4.ip_forward = 1”则表示成功 [root@centos7 ~]sysctl net.ipv4.ip_forward
- 检查容器是否正常访问网络
#重启docker服务 service docker restart #查看运行过的容器 docker ps -a #启动gitlab 容器 docker start gitblab2 #进入gitlab容器 docker attach gitlab2 #获取百度信息 curl baidu.com
WARNING: No swap limit support
- 系统警告信息 (没有开启 swap 资源限制 )
vim /etc/default/grub GRUB_DEFAULT=0 GRUB_TIMEOUT_STYLE=hidden GRUB_TIMEOUT=2 GRUB_DISTRIBUTOR=`lsb_ release -i -s 2> /dev/null || echo Debian` GRUB_CMDLINE_LINUX_DEFAULT="" GRUB_CMDLINE_LINUX="net.ifnames=0 swapaccount=1" #修改此行swapaccount=1 update-grub reboot
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- docker的iptables策略详解和用户自定义策略的添加方式
- Docker iptables的错误解决
- iptables使用及docker的iptables规则
- 解决docker安装完成报:bridge-nf-call-iptables is disabled问题
- Docker与iptables及实现bridge方式网络隔离与通信操作
- Docker中iptables规则在iptables重启后丢失的完整过程
- 详解Docker使用Linux iptables 和 Interfaces管理容器网络
- 在Docker容器中使用iptables时的最小权限的开启方法
- iptables如何限制宿主机跟Docker IP和端口访问(安全整改)