我在Ubuntu 14.04的Docker容器中运行一个.NET Core 1.1应用程序,但它无法连接到在单独的服务器上运行的sql Server数据库.
错误是:
Unhandled Exception: System.Data.sqlClient.sqlException: A network-related or instance-specific error occurred while establishing a connection to sql Server. The server was not found or was not accessible. Verify that the instance name is correct and that sql Server is configured to allow remote connections. (provider: TCP Provider,error: 25 – Connection string is not valid)
>我在另一台Ubuntu 14.04服务器上使用相同的命令行部署了相同的映像,并且连接正常.
>在问题服务器(Docker外部)上运行的控制台应用程序可以使用相同的连接字符串进行连接.
据我从文档中可以看到,默认情况下,在容器中运行的应用可以访问外部网络,那么阻止该连接的原因是什么?
an app running in a container has access to the external network by default
只有为容器分配了有效的IP地址,它才可以访问.有时Docker为容器选择的IP可能与外部网络冲突.
默认情况下,容器在网桥网络中运行,因此请看一下:
docker network inspect bridge
找到容器并检查其IP.
要解决冲突,可以在customize网桥上设置bip参数来更改网络的IP范围(配置文件的位置取决于主机的OS):
"bip": "192.168.1.5/24"
或create一个新的docker网络.
或尝试使用net = host选项:docker run network settings