Docker 容器访问宿主机器的MySql

1.首先打开

				vim /etc/mysql/mysql.conf.d/mysqld.cnf

这个文件,然后将

				bind-address = 127.0.0.1改成bind-address = 0.0.0.0

然后进入mysql,在mysql中输入

grant all privileges on *.* to 'root'@'%' identified by 'pswd' with grant option;//注意'pswd'是你自己的mysql的密码,你得在这里改下。

这样就可以了,但是要注意,你的docker容器中程序写的localhost应该改为172.17.0.1,才可以访问宿主机器的mysql

你可能感兴趣的:(数据库,docker)