这篇文章主要介绍“Docker中怎么构建Mariadb”,在日常操作中,相信很多人在Docker中怎么构建Mariadb问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Docker中怎么构建Mariadb”的疑
这篇文章主要介绍“Docker中怎么构建Mariadb”,在日常操作中,相信很多人在Docker中怎么构建Mariadb问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Docker中怎么构建Mariadb”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
root@debian1:~/Nginx# docker search mariadb NAME DESCRIPTioN STARS OFFICIAL AUTOMATED |
---|
mariadb MariaDB is a commUnity-developed fork of M… 1417 [OK] |
bitnami/mariadb Bitnami MariaDB Docker Image 39 [OK] |
root@debian1:~/nginx# docker pull mariadb |
---|
Using default tag: latest |
latest: Pulling from library/mariadb |
root@debian1:~/nginx# docker run –privileged -d -e TIMEZONE=Asis/Shanghai -e MYSQL_ROOT_PASSWord=hanye131 -e SERVER_ID=1 -v $PWD/Mysql_db:/var/lib/mysql -p 3306:3306 mariadb |
---|
255650e5e83D27402b1df338c09c0639b1512e73ef27cd31e1f2c90509dc104c |
root@debian1:~/nginx# docker ps -a |
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES |
255650e5e83d mariadb “docker-entrypoint…” 3 seconds aGo Up 1 second 0.0.0.0:3306->3306/tcp festive_ride |
root@debian1:~/nginx# netstat -tunl|grep 3306 |
---|
tcp6 0 0 :::3306 :::* LISTEN |
root@debian1:~/nginx# mysql -uroot -phanye131 -h227.0.0.1 Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 Server version: 5.5.5-10.2.6-MariaDB-10.2.6+maria~jessie mariadb.org binary distributionCopyright (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>
如果提示无法链接找到sock文件,你需要链接到docker的mariadb容器之内来授权链接
获取mariadb的CONTAINER ID
root@debian1:~/nginx# docker ps -a |
---|
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES |
255650e5e83d mariadb “docker-entrypoint…” 10 minutes ago Up 10 minutes 0.0.0.0:3306->3306/tcp festive_ride 360baf71efb0 a3ae0b27ec04 “/run.sh bash” 3 hours ago Exited (2) 3 hours ago nginx |
我这里的mariadb的镜像的CONTAINER ID是 255650e5e83d
root@debian1:~/nginx# docker exec -it 255650e5e83d bash |
---|
root@255650e5e83d:/# |
MariaDB [(none)]> grant all on . to ‘root’@’192.168.1.%’ identified by ‘hanye131’; Query OK, 0 rows affected (0.01 sec) |
---|
MariaDB [(none)]> flush privileges; Query OK, 0 rows affected (0.01 sec) |
到此,关于“Docker中怎么构建Mariadb”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!
--结束END--
本文标题: Docker中怎么构建Mariadb
本文链接: https://lsjlt.com/news/310308.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0