失效链接处理 |
docker安装mysql踩过的坑 PDF 下载
本站整理下载:
相关截图:
主要内容:
2021.5.21
1.在dockers里面安装mysql,出现很多错误,第一是虚拟机打开了,但是xshell连接不上。原因是因为
在改mysql里面docker ps 的时候,里面没用东西,一直报错
[root@localhost ~]# docker run -di --name=mysql_5.7 -p 3307:3306 -v /root/mysql/logs:/logs -v/root/mysql/data:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=123456 2c9028880e58
docker: Error response from daemon: Conflict. The container name "/mysql_5.7" is already in use by container "bd0649456ff5de010d97e671feae3be67b490cc803f5aff8427cba144a7d8add". You have to remove (or rename) that container to be able to reuse that name.
这个错就是因为是因为docker容器里面已经存在,如果不需要,则删除。docker rm fb087642b497(该containerID)
所以操作步骤就是重启该镜像: docker restart mysql
在看一眼有没有数据进去 docker ps
|