使用Docker中的mysql
生活随笔
收集整理的這篇文章主要介紹了
使用Docker中的mysql
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1.pull mysql image
docker pull mysql
2.先最簡單啟動(dòng)mysql
docker run -d -e MYSQL_ROOT_PASSWORD=123456 -p 3306:3306 --name mysql mysql- 1
** 此處MYSQL_ROOT_PASSWORD是mysql root用戶初始密碼?
不出意外應(yīng)該可以連接。
3.將數(shù)據(jù)文件保存在宿主機(jī)上,并設(shè)置配置文件。
- Win10
- 1
- Mac
- 1
啟動(dòng)后執(zhí)行下面命令,確認(rèn)連接成功。
AMIDdeMacBook-Air:~ amid$ mysql -uroot -p -h 127.0.0.1 Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 5 Server version: 5.7.20 MySQL Community Server (GPL)Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>總結(jié)
以上是生活随笔為你收集整理的使用Docker中的mysql的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Linux中文件上传rz使用
- 下一篇: 使用nomad部署mysql