文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

使用docker-compose部署MySQL方法

2024-04-02 19:55

关注

本文主要给大家介绍使用docker-compose部署MySQL方法,文章内容都是笔者用心摘选和编辑的,具有一定的针对性,对大家的参考意义还是比较大的,下面跟笔者一起了解下使用docker-compose部署MySQL方法吧。 

[root@169_test mariadb10.3]# cat docker-compose.yml
version: '2'

services:
db:
image: mytest/mariadb10.3:latest
volumes:

  - ./db_data/:/var/lib/mysql/
restart: always
ports:
  - "3306:3306"

[root@169_test mariadb10.3]# docker-compose up
Creating network "mariadb103_default" with the default driver
Creating mariadb103_db_1 ... done
Attaching to mariadb103_db_1
db_1  | Installing MariaDB/MySQL system tables in '/var/lib/mysql' ...
db_1  | OK
db_1  |
db_1  | To start mysqld at boot time you have to copy
db_1  | support-files/mysql.server to the right place for your system
db_1  |
db_1  |
db_1  | PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
db_1  | To do so, start the server, then issue the following commands:
db_1  |
db_1  | '/usr/bin/mysqladmin' -u root password 'new-password'
db_1  | '/usr/bin/mysqladmin' -u root -h d56fe1b27eb9 password 'new-password'
db_1  |
db_1  | Alternatively you can run:
db_1  | '/usr/bin/mysql_secure_installation'
db_1  |
db_1  | which will also give you the option of removing the test
db_1  | databases and anonymous user created by default.  This is
db_1  | strongly recommended for production servers.
db_1  |
db_1  | See the MariaDB Knowledgebase at http://mariadb.com/kb or the
db_1  | MySQL manual for more instructions.
db_1  |
db_1  | You can start the MariaDB daemon with:
db_1  | cd '/usr' ; /usr/bin/mysqld_safe --datadir='/var/lib/mysql'
db_1  |
db_1  | You can test the MariaDB daemon with mysql-test-run.pl
db_1  | cd '/usr/mysql-test' ; perl mysql-test-run.pl
db_1  |
db_1  | Please report any problems at http://mariadb.org/jira
db_1  |
db_1  | The latest information about MariaDB is available at http://mariadb.org/.
db_1  | You can find additional information about the MySQL part at:
db_1  | http://dev.mysql.com
db_1  | Consider joining MariaDB's strong and vibrant community:
db_1  | https://mariadb.org/get-involved/
db_1  |
db_1  | Starting MariaDB.190611 03:38:08 mysqld_safe Logging to '/var/lib/mysql/d56fe1b27eb9.err'.
db_1  | 190611 03:38:08 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
db_1  |  SUCCESS!

^CGracefully stopping... (press Ctrl+C again to force)
Stopping mariadb103_db_1 ...
Killing mariadb103_db_1 ... done
[root@169_test mariadb10.3]# ^C
[root@169_test mariadb10.3]# docker ps -a
CONTAINER ID        IMAGE                       COMMAND                  CREATED             STATUS                       PORTS                    NAMES
d56fe1b27eb9        mytest/mariadb10.3:latest   "/run.sh"                27 seconds ago      Exited (137) 7 seconds ago                            mariadb103_db_1
762ed1f53368        registry:2                  "/entrypoint.sh /etc…"   2 hours ago         Up 2 hours                   0.0.0.0:5000->5000/tcp   registry
[root@169_test mariadb10.3]# docker rm d
d
[root@169_test mariadb10.3]# docker-compose up  -d
Creating mariadb103_db_1 ... done

[root@169_test mariadb10.3]# mysql  -h227.0.0.1 -uroot -P3306 -p123456
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 14
Server version: 5.5.5-10.3.15-MariaDB MariaDB Server

Copyright (c) 2000, 2019, 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> select @@version;
+-----------------+
| @@version       |
+-----------------+
| 10.3.15-MariaDB |
+-----------------+
1 row in set (0.00 sec)

mysql>

看完以上关于使用docker-compose部署MySQL方法,很多读者朋友肯定多少有一定的了解,如需获取更多的行业知识信息 ,可以持续关注我们的数据库栏目的。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯