How to install MySQL and Redis in Docker

How to install MySQL and Redis in Docker

This article is based on the CentOS 7.3 system environment, and is about the installation and use of MySQL and Redis

  • CentOS 7.3
  • Docker-ce

1. Install MySQL image

(1) Pull the MySQL image

docker pull mysql:5.6

(2) Run and configure MySQL

docker run -p 3306:3306 --name xz_mysql
-v /data/mysql/conf:/etc/mysql/conf.g
-v /data/mysql/logs:/logs
-v /data/mysql/data:/var/lib/mysql
-e MYSQL_ROOT_PASSWORD=123456
-d mysql:5.6

(3) Enter the MySQL image container

docker exec -it xz_mysql /bin/bash

(4) Enter MySQL

mysql -uroot -p123456

2. Install the Redis image

(1) Pull the Redis image

docker pull redis:3.2

(2) Run and configure Redis

docker run -p 6379:6379 --name xz_redis
-v /data/redis/conf/redis.conf:/usr/local/etc/redis/redis.conf
-v /data/mysql/data:/data
-d redis:3.2 redis server /usr/local/etc/redis/redis.conf
--appendonly yes

(3) Create a new configuration file redis.conf

cd /usr/local/etc/redis/redis.conf
vim redis.conf

client-output-buffer-limit normal 0 0 0
client-output-buffer-limit slave 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60

hz 10

aof-rewrite-incremental-fsync yes

(4) Enter the redis image container

docker exec -it xz_redis redis-cli

This is the end of this article about the steps to install MySQL and Redis with Docker. For more information about installing MySQL and Redis with Docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed steps for installing Tomcat, MySQL and Redis with Docker
  • How to install mysql in docker
  • Tutorial on installing MySQL with Docker and implementing remote connection
  • How to install MySQL 8.0 in Docker
  • Docker installation of MySQL (8 and 5.7)
  • How to install MySQL and MariaDB in Docker
  • How to install common components (mysql, redis) in Docker
  • How to install MySQL8 in Docker
  • Docker installation and configuration steps for MySQL

<<:  XHTML Getting Started Tutorial: XHTML Web Page Image Application

>>:  How does the MySQL database implement the XA specification?

Recommend

MySQL 5.7.17 installation and configuration graphic tutorial

Features of MySQL: MySQL is a relational database...

How to use flat style to design websites

The essence of a flat website structure is simpli...

Detailed explanation of Mysql transaction isolation level read commit

View MySQL transaction isolation level mysql> ...

How to develop uniapp using vscode

Because I have always used vscode to develop fron...

MySQL encoding utf8 and utf8mb4 utf8mb4_unicode_ci and utf8mb4_general_ci

Reference: MySQL character set summary utf8mb4 ha...

Several common methods of CSS equal height layout

Equal height layout Refers to the layout of child...

Linux Basic Tutorial: Special Permissions SUID, SGID and SBIT

Preface For file or directory permissions in Linu...

Differences between FLOW CHART and UI FLOW

Many concepts in UI design may seem similar in wo...

nginx solves the problem of slow image display and incomplete download

Written in front Recently, a reader told me that ...

Html to achieve dynamic display of color blocks report effect (example code)

Use HTML color blocks to dynamically display data...

Summary of commonly used performance test scripts for VPS servers

Here is a common one-click performance test scrip...

What are the benefits of using // instead of http:// (adaptive https)

//Default protocol /The use of the default protoc...

Detailed explanation of Docker Swarm service orchestration commands

1. Introduction Docker has an orchestration tool ...

Share 20 JavaScript one-line codes

Table of contents 1. Get the value of browser coo...