当前位置:网站首页>[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
边栏推荐
- 【pytorch】yolov5 训练自己的数据集
- 手把手教你学会js的原型与原型链,猴子都能看懂的教程
- Swagger2 reports an error illegal DefaultValue null for parameter type integer
- [pytorch] yolov5 train your own data set
- A full set of teaching materials, real questions of Android interview of 7 major manufacturers including Alibaba Kwai pinduoduo
- C # - realize serialization with Marshall class
- LeetCode_ Double pointer_ Medium_ 61. rotating linked list
- [translation] supply chain security project in toto moved to CNCF incubator
- [玩转Linux] [Docker] MySQL安装和配置
- 121. 买卖股票的最佳时机
猜你喜欢

Using clip path to draw irregular graphics
![打家劫舍III[后序遍历与回溯+动态规划]](/img/9b/e9eeed138e46afdeed340bf2629ee1.png)
打家劫舍III[后序遍历与回溯+动态规划]

VMware virtual machine cannot open the kernel device "\.\global\vmx86"

Hudi vs Delta vs Iceberg

学习探索-无缝轮播图

Problems encountered in using RT thread component fish

Reflection and illegalaccessexception exception during application

Interpretation of Dagan paper

Chic Lang: attributeerror: partially initialized module 'CV2' has no attribute 'GAPI_ wip_ gst_ GStreamerPipe

Learn to explore - use pseudo elements to clear the high collapse caused by floating elements
随机推荐
利用 clip-path 绘制不规则的图形
Leetcode 30. 串联所有单词的子串
A full set of teaching materials, real questions of Android interview of 7 major manufacturers including Alibaba Kwai pinduoduo
Simple application of VBA script in Excel
CF960G - Bandit Blues(第一类斯特林数+OGF)
Problems encountered in using RT thread component fish
VMware virtual machine cannot open the kernel device "\.\global\vmx86"
How to access localhost:8000 by mobile phone
思維導圖+源代碼+筆記+項目,字節跳動+京東+360+網易面試題整理
通俗的讲解,带你入门协程
DaGAN论文解读
An error occurs when installing MySQL: could not create or access the registry key needed for the
【计算情与思】扫地僧、打字员、信息恐慌与奥本海默
In 50W, what have I done right?
Lick the dog until the last one has nothing (simple DP)
终于可以一行代码也不用改了!ShardingSphere 原生驱动问世
Zero foundation entry polardb-x: build a highly available system and link the big data screen
Dark horse -- redis
Leetcode 30. Concatenate substrings of all words
[pytorch] yolov5 train your own data set