consul 单机启动命令:
./consul agent -dev -client=0.0.0.0 -bind=127.0.0.1
在docker 服务中通过consul 的dns 进行服务发现时报错如下:
解决方法:
在宿主机的 /etc/docker/daemon.json 文件中增加以下内容来设置全部容器的 DNS:
{
"dns" : [
"114.114.114.114",
"8.8.8.8"
]
}
在宿主机的 /etc/resolv.conf 文件中设置如下:
search mshome.net
nameserver 114.114.114.114
dig 命令安装:
ubuntu系
apt-get update
apt-get install dnsutils
centos系
yum install bind-utils
使用 如下命令测试正常,进去容器内部测试也正常(ip:172.17.176.201 是我测试环境的ip ):
dig @172.17.176.201 -p 8600 consul.service.consul SRV
如果是云服务器的话将ip 换成云服务器内网ip(172.17.165.110 是我测试云服务器的内网ip) :
进入容器内部测试如下:
dig @172.17.165.110 -p 8600 consul.service.consul SRV