当前位置:网站首页>[play with Linux] [docker] MySQL installation and configuration
[play with Linux] [docker] MySQL installation and configuration
2022-07-06 19:37:00 【0xYGC】
brief introduction
Not recommended in docker Running in MySQL Database software , Use only when tests or data are of low importance . It is recommended to install in the production environment KVM
Method / step
One : install MySQL
# see docker edition
docker -v
--------------------------------------------
[[email protected] /]# docker -v
Docker version 1.13.1, build 7d71120/1.13.1
--------------------------------------------
1.1 Search view available MySQL
docker search mysql

1.2 Pull MySQL Mirror image
# Specify the version
docker pull mysql:5.7
# The latest version
docker pull mysql:latest

1.3 View local image
docker images
--------------------------------------------------------------------------------------------
[[email protected] /]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
docker.io/mysql 5.7 efa50097efbd 7 days ago 462 MB
--------------------------------------------------------------------------------------------
1.4 Run container
Default port number 5306
Be careful docker Parameters should be listed in MySQL Before the parameters
docker run \
-p 5306:3306 \
--privileged=true \
--name mysql5306 \
-v /docker/mysql5306/conf:/etc/mysql/conf.d \
-v/docker/mysql5306/logs:/logs \
-v/docker/mysql5306/data:/var/lib/mysql \
-e MYSQL_ROOT_PASSWORD=useradmin \
-d mysql:5.7
- The successful running

Two : modify Docker (MySQL) Related configuration
Find the configuration directory of the container
My configuration directory /docker/mysql5306/conf
edit my.cnf If there is no file, create one
- Default profile
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
# Settings user and group are ignored when systemd is used.
# If you need to run mysqld under a different user or group,
# customize your systemd unit file for mariadb according to the
# instructions in http://fedoraproject.org/wiki/Systemd
[mysqld_safe]
log-error=/var/log/mariadb/mariadb.log
pid-file=/var/run/mariadb/mariadb.pid
#
# include all files from the config directory
#
!includedir /etc/my.cnf.d
# Database default character set
character-set-server = utf8mb4
# The database character set corresponds to some sorting rules , Pay attention to and character-set-server Corresponding
collation-server = utf8mb4_general_ci
# Set up client Connect mysql Character set of time , Prevent confusion code
init_connect=‘SET NAMES utf8mb4‘
# Whether the sql Sentence case sensitive ,1 Indicates insensitivity
lower_case_table_names = 1
- Restart container
docker restart [ Target container id]
3、 ... and : Delete Docker Containers
# see docker Container log ,
docker logs ${id}
# One 、 Look at the container , Copy container id namely container id
docker ps -a
# Two 、 Stop container
docker stop Your container id
# 3、 ... and 、 Restart container
docker restart Your container id
# 3、 ... and 、 Delete container
docker rm Containers id
# Four 、 Look at the mirror image , Copy the image id namely images id
docker images
# 5、 ... and . delete mirror
docker rmi Mirror image id
Reference material & thank
[1] docker Modify the container configuration file 3 Summary of methods
边栏推荐
- 【翻译】数字内幕。KubeCon + CloudNativeCon在2022年欧洲的选择过程
- Computer network: sorting out common network interview questions (I)
- CCNP Part 11 BGP (III) (essence)
- The list of people who passed the fifth phase of personal ability certification assessment was published
- 【基础架构】Flink/Flink-CDC的部署和配置(MySQL / ES)
- Live broadcast today | the 2022 Hongji ecological partnership conference of "Renji collaboration has come" is ready to go
- Interview assault 63: how to remove duplication in MySQL?
- C language daily practice - day 22: Zero foundation learning dynamic planning
- 利用 clip-path 绘制不规则的图形
- 快速幂模板求逆元,逆元的作用以及例题【第20届上海大学程序设计联赛夏季赛】排列计数
猜你喜欢
受益匪浅,安卓面试问题

【计算情与思】扫地僧、打字员、信息恐慌与奥本海默

数学知识——高斯消元(初等行变换解方程组)代码实现

CCNP Part 11 BGP (III) (essence)

How to access localhost:8000 by mobile phone

手把手教你学会js的原型与原型链,猴子都能看懂的教程

潇洒郎: AttributeError: partially initialized module ‘cv2‘ has no attribute ‘gapi_wip_gst_GStreamerPipe

Leetcode 30. Concatenate substrings of all words

思維導圖+源代碼+筆記+項目,字節跳動+京東+360+網易面試題整理

Druid database connection pool details
随机推荐
DaGAN论文解读
Cereals Mall - Distributed Advanced p129~p339 (end)
Analysis of rainwater connection
Use of deg2rad and rad2deg functions in MATLAB
Computer network: sorting out common network interview questions (I)
Tensorflow2.0 自定义训练的方式求解函数系数
Elastic search indexes are often deleted [closed] - elastic search indexes gets deleted frequently [closed]
C # use Marshall to manually create unmanaged memory in the heap and use
Translation D28 (with AC code POJ 26:the nearest number)
Teach you to learn JS prototype and prototype chain hand in hand, a tutorial that monkeys can understand
CPU负载很低,loadavg很高处理方法
Tensorflow2.0 self defined training method to solve function coefficients
保证接口数据安全的10种方案
Hudi vs Delta vs Iceberg
黑马--Redis篇
全套教学资料,阿里快手拼多多等7家大厂Android面试真题
LeetCode_ Gray code_ Medium_ 89. Gray code
The slave i/o thread stops because master and slave have equal MySQL serv
中缀表达式转后缀表达式详细思路及代码实现
Interview assault 63: how to remove duplication in MySQL?