How to deploy MySQL and Redis services using Docker

How to deploy MySQL and Redis services using Docker

How to deploy MySQL service using Docker

1. Pull the latest version of MySQL 5.6

sudo docker pull mysql:5.6

2. View the MySQL image

sudo docker images

insert image description here

3. Create the directory that needs to be mapped under the home directory:

mkdir -p /home/computer/project/mysql/{conf,log,data}

4. Run the container

duso docker run -p 53603:3306 --name iot-mysql \ -v /home/computer/project/mysql/conf:/etc/mysql \ -v /home/computer/project/mysql/log:/var/log/mysql \ -v /home/computer/project/mysql/data:/var/lib/mysql \ -e MYSQL_ROOT_PASSWORD=pwd \ -d mysql:5.6

5. Configure MySQL remote connection

You need to enter the docker local client to set up a remote access account

View running containers

sudo docker ps

insert image description here

Enter the running container

sudo docker exec -it iot-mysql bash

# Operate mysql in the container -uroot -p123456
mysql> grant all privileges on *.* to root@'%' identified by "password";
select host,user,password from user;

# Change password update user set password=password("xxxxx") where user="root";
flush privileges;

6. More Docker Operations

sudo docker ps to view the running container
sudo docker ps -a View all containers
sudo docker stop 容器ID stops the container
sudo docker start 容器ID starts the container
sudo docker rm 容器ID delete container
sudo docker rmi 鏡像ID delete container

Let's look at how to deploy Redis service with Docker

1. Pull the latest version of redis image

sudo docker pull redis

2. View the Redis image

sudo docker images

insert image description here

3. Do not configure the data directory

sudo docker run -itd --name redis1 -p 53610:6379 redis --requirepass "psd"

4. Configure data directory

sudo docker run -itd --name redis1 -p 53610:6379 -v /home/computer/project/redis/data:/data --restart always redis --appendonly yes --requirepass "psd"

5. Parameter Description

-d -> Start the container as a daemon -p 53610:6379 -> Bind to the host port, 53610 host port, 6379 container port --name myredis -> Specify the container name --restart always -> Start at boot --privileged=true -> Increase permissions in the container --requirepass -> Set login password -v /root/docker/redis/data:/data -> Map data directory --appendonly yes -> Enable data persistence

6. More Docker Operations

insert image description here

sudo docker ps to view the running container
sudo docker ps -a View all containers
sudo docker stop 容器ID stops the container
sudo docker start 容器ID starts the container
sudo docker rm 容器ID delete container
sudo docker rmi 鏡像ID delete container

This is the end of this article about how to deploy MySQL and Redis services with Docker. For more information about deploying MySQL and Redis services 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:
  • Docker deploys mysql remote connection to solve 2003 problems
  • Implementation of docker-compose deployment project based on MySQL8
  • Example of how to deploy MySQL 8.0 using Docker
  • Implementation of Docker deployment of MySQL cluster
  • Detailed explanation of how to use Docker to deploy Django+MySQL8 development environment
  • Implementation of Docker deployment of Django+Mysql+Redis+Gunicorn+Nginx
  • Detailed explanation of deploying MySQL using Docker (data persistence)
  • Docker deploys mysql to achieve remote connection sample code
  • How to deploy MySQL 5.7 & 8.0 master-slave cluster using Docker
  • Alibaba Cloud ESC Server Docker Deployment of Single Node Mysql
  • Example of deploying MySQL on Docker

<<:  How to draw a mind map in a mini program

>>:  HTML is the central foundation for the development of WEB standards

Recommend

How to implement mobile web page size adaptation

I finally finished the project at hand, and the m...

Alibaba Cloud ESC Server Docker Deployment of Single Node Mysql

1. Download the accelerated version of msyql dock...

Solution to the problem of large font size on iPhone devices in wap pages

If you don't want to use javascript control, t...

MySQL column to row conversion tips (share)

Preface: Because many business tables use design ...

How to delete table data in MySQL

There are two ways to delete data in MySQL, one i...

Analysis of MySQL lock mechanism and usage

This article uses examples to illustrate the MySQ...

vue cli3 implements the steps of packaging by environment

The vue project built with cli3 is known as a zer...

Detailed example of clearing tablespace fragmentation in MySQL

Detailed example of clearing tablespace fragmenta...

How to manage multiple projects on CentOS SVN server

One demand Generally speaking, a company has mult...

Linux operation and maintenance basic swap partition and lvm management tutorial

Table of contents 1. Swap partition SWAP 1.1 Crea...

Detailed tutorial on deploying Hadoop cluster using Docker

Recently, I want to build a hadoop test cluster i...