内容简介:拉取成功可以验证一下到这里我们查看容器运行状态:$ sudo docker ps
1.安装
1.1 拉取镜像
docker pull mysql
拉取成功可以验证一下
docker images
1.2 创建并启动一个 mysql 容器
docker run --name ly-mysql -e MYSQL_ROOT_PASSWORD=123456 -p 3306:3306 -d mysql
- –name:给新创建的容器命名,此处命名为ly-mysql
- -e:配置信息,此处配置mysql的root用户的登陆密码
- -p:端口映射,此处映射主机3306端口到容器pwc-mysql的3306端口
- -d:成功启动容器后输出容器的完整ID.
- 最后一个mysql指的是mysql镜像名字
到这里我们查看容器运行状态:
$ sudo docker ps
可以看到容器的简写ID,容器的源镜像,创建时间,状态,端口映射信息,容器名字等。
1.3 连接测试
使用navicat远程连接,这里碰到几个问题
1.3.1 mysql连接IP问题
首先这个IP肯定不是localhost,然后以为是mysql容器的IP
1.3.1.1 查看mysql容器的ip
docker inspect --format '{{ .NetworkSettings.IPAddress }}' <container-ID>
结果是:172.17.0.2
但是还是连接不上
1.3.1.2 获取 docker 主机 IP
docker-machine ip
192.168.99.100
这个可以连接
结论:
当使用windows和macOS时,不应该使用localhost而应该使用docker-machine ip
1.3.2 连接mysql 8提示2059 - authentication plugin 'caching_sha2_password...
原因:由于myslq8不支持动态修改密码验证方式
解决方案:
- 进入mysql容器
docker exec -it ly-mysql bash
- 连接mysql
mysql -uroot -p
3.修改配置
use mysql; ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'new password'; FLUSH PRIVILEGES;
1.4 其他
1.4.1 记录几个命令
1.4.1.1 退出容器
- 如果要正常退出不关闭容器,请按Ctrl+P+Q进行退出容器
- 如果使用exit退出,那么在退出之后会关闭容器,可以使用下面的流程进行恢复
-
使用docker restart命令重启容器
-
使用docker attach命令进入容器
1.4.1.2 修改MySQL配置文件有两种方法:
- 一是进入容器,修改容器里的MySQL的配置文件,然后重新启动容器,例如:
$ sudo docker exec -it ly-mysql /usr/bin/bash
然后可以进入容器的命令行模式,接着修改 /etc/mysql/my.cnf 文件即可
-
二是挂载主机的mysql配置文件,官方文档如下:
The MySQL startup configuration is specified in the file /etc/mysql/my.cnf, and that file in turn includes any files found in the /etc/mysql/conf.d directory that end with .cnf. Settings in files in this directory will augment and/or override settings in /etc/mysql/my.cnf. If you want to use a customized MySQL configuration, you can create your alternative configuration file in a directory on the host machine and then mount that directory location as /etc/mysql/conf.d inside the mysql container.
If /my/custom/config-file.cnf is the path and name of your custom configuration file, you can start your mysql container like this (note that only the directory path of the custom config file is used in this command):
$ docker run --name some-mysql -v /my/custom:/etc/mysql/conf.d -e MYSQL_ROOT_PASSWORD=my-secret-pw -d mysql:tag
This will start a new container some-mysql where the MySQL instance uses the combined startup settings from /etc/mysql/my.cnf and /etc/mysql/conf.d/config-file.cnf, with settings from the latter taking precedence.
Linux公社的RSS地址 : https://www.linuxidc.com/rssFeed.aspx
本文永久更新链接地址: https://www.linuxidc.com/Linux/2018-12/155833.htm
以上所述就是小编给大家介绍的《Docker创建MySQL镜像并成功进行远程连接》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 八、【Docker笔记】使用Dockerfile创建镜像
- 【自定义】通过Dockerfile创建httpd镜像
- 使用Jib快速简便地创建Docker镜像
- docker利用Dockerfile创建镜像,上传docker hub
- 创建优化的 Go 镜像文件以及踩过的坑
- 创建基于Java 11的SpringBoot Docker镜像到48M!
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
实战移动互联网营销
江礼坤 / 机械工业出版社 / 2016-1 / 79.00
移动互联网的兴起,又为企业带来了新的挑战与机遇!越来越多的人,看到了移动互联网的价值与前景,但是在具体操作时,移动互联网具体如何玩?企业如何向移动互联网转型?如何通过移动互联网做营销?等等一系列问题,接踵而至。虽然目前相关的资料和文章很多,但是都过于零散,让人看完后,还是无从下手。而本书旨在成为移动互联网营销领域标准的工具书、参考书,为大家呈现一个系统、全面的移动互联网营销体系。让大家从思维模式到......一起来看看 《实战移动互联网营销》 这本书的介绍吧!