Implementation steps for installing Redis container in Docker

Implementation steps for installing Redis container in Docker

If you want to install software in Docker, you must first download the image from the Docker image repository.

Docker image repository

Install Redis on Docker

1. Find the Redis image

Find the Redis image in the Docker image repository

Redis official website mirror

Docker download Redis image command

Download the Reids image command

2. Download the Redis image

Order describe
docker pull redis Download the latest version of Redis image (in fact, this command is equivalent to: docker pull redis:latest )
docker pull redis:xxx Download the specified version of the Redis image (xxx refers to the specific version number)

Download the specified version of Redis

Check all currently downloaded Docker images

 docker images

3. Create a Redis configuration file

Before starting, you need to create a configuration file for Redis external mounting (/mydata/redis/conf/redis.conf)
The reason why we need to create it first is that the Redis container itself only has the /etc/redis directory, and does not create the redis.conf file. When the redis.conf file does not exist on the server or in the container, Docker will create redis.conf as a directory when executing the startup command, which is not what we want.

## Create directory mkdir -p /mydata/redis/conf
## Create the file touch /mydata/redis/conf/redis.conf

4. Create and start a Redis container

Docker creates Redis container command

docker run \
-d \
--name redis \
-p 6379:6379 \
--restart unless-stopped \
-v /mydata/redis/data:/data \
-v /mydata/redis/conf/redis.conf:/etc/redis/redis.conf \
redis-server /etc/redis/redis.conf \
redis:buster 

Order describe
–name redis The name of the container to start
-d Background operation
-p 6379:6379 Map the container's port 6379 (the latter one) to the host's port 6379 (the former one)
--restart unless-stopped Container restart policy
-v /mydata/redis/data:/data Mount the Redis storage folder on the host
-v /mydata/redis/conf/redis.conf:/etc/redis/redis.conf Mount the configuration folder on the host
-d redis:buster Which version of Redis to start (version of the local image)
redis-server /etc/redis/redis.conf Set redis-server in the Redis container and read /etc/redis/redis.conf every time it starts.
\ Shell command line break

Note: All the commands before the colon are host configurations, and the commands after the colon are mysql container configurations.
--restart unless-stopped : Restart the current container when Docker restarts. However, it does not include containers that were stopped when Docker was restarted.

5. Check whether Redis is running

### View the running Docker container docker ps 
docker ps | grep redis

Check if Redis is running

6. Enter the Redis container

### Enter the Redis container through the Docker command docker exec -it redis /bin/bash
docker exec -it redis bash
### Enter the Redis console redis-cli
### Add a variable with key name and value bella> set name bella
### View the value of the key name> get name


### Or you can directly enter the Redis console through the Docker Redis command (a combination of the above two commands)
docker exec -it redis redis-cli

> Separate commands

Separate commands

> Merge Command

Merge Command

7. Exit the container

exit

8. Modify the Redis configuration file

Modify /mydata/redis/conf/redis.conf

Order Function
appendonly yes Enable Redis persistence (default is no, all information is stored in memory [lost after restart]. Set to yes, it will be stored on the hard disk [still exists after restart])
protected-mode no Disable protected-mode, so that external networks can access it directly (docker seems to be enabled automatically)
bind 0.0.0.0 Set all IP addresses to be accessible (docker seems to be automatically enabled)
requirepass password Set password

9. Enter the Redis console with a password

If you set a password, you need to enter the Redis console using the following command

## Enter the Redis container docker exec -it redis /bin/bash

## Enter the Redis console with the password redis-cli -h 127.0.0.1 -p 6379 -a 123456

Enter the Redis console with a password

This is the end of this article about the implementation steps of installing Redis container with Docker. For more relevant content about installing 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:
  • Introduction to the steps of deploying redis in docker container
  • Docker installation and configuration steps for Redis image
  • Docker builds Redis5.0 and mounts data

<<:  Study on using characters instead of pictures to achieve rounded or sharp corners

>>:  Problems with join queries and subqueries in MySQL

Recommend

Sample code for separating the front-end and back-end using FastApi+Vue+LayUI

Table of contents Preface Project Design rear end...

Tips for optimizing MySQL SQL statements

When faced with a SQL statement that is not optim...

Ubuntu installation graphics driver and cuda tutorial

Table of contents 1. Uninstall the original drive...

Example of stars for CSS rating effect

What? What star coat? Well, let’s look at the pic...

JavaScript implements mouse drag to adjust div size

This article shares the specific code of JavaScri...

Detailed tutorial on installing Docker on CentOS 8.4

Table of contents Preface: System Requirements: I...

How to set a dotted border in html

Use CSS styles and HTML tag elements In order to ...

The difference between the four file extensions .html, .htm, .shtml and .shtm

Many friends who have just started to make web pag...

Detailed explanation of the update command for software (library) under Linux

When installing packages on an Ubuntu server, you...

Vue.js style layout Flutter business development common skills

Correspondence between flutter and css in shadow ...

Using zabbix to monitor the ogg process (Linux platform)

The ogg process of a database produced some time ...

Several methods to solve the problem of MySQL fuzzy query index failure

When we use the like % wildcard, we often encount...