Docker installation and configuration steps for Redis image

Docker installation and configuration steps for Redis image

Preface

This tutorial demonstrates how to install the Redis image, create a Redis container, and map ports to mount data volumes and configuration data.

insert image description here

environment

  • CentOS 7
  • Docker 20.10.10

Install

Pull the image

docker pull redis

insert image description here

View Mirror

docker images

insert image description here

Create and start the MySQL container

Create data directories and configuration files

Create a configuration folder

mkdir -p /mydata/redis/conf

Create a configuration file

touch /mydata/redis/conf/redis.conf

Reminder to avoid pitfalls

Create the redis.conf configuration file in advance. Because when the local /mydata/redis/conf/redis.conf is mounted to /etc/redis/redis.conf , the last redis.conf in the path is not regarded as a file, but as a directory. Therefore, if we want to mount the configuration file redis.conf on the local machine into the Docker container, we need to create the configuration file in advance.
#######################################
Complete the above steps to create data directories and configuration files~
#######################################

Create and start the MySQL container command

sudo docker run -p 6379:6379 --name redis \
-v /mydata/redis/data:/data \
-v /mydata/redis/conf/redis.conf:/etc/redis/redis.conf \
-d redis redis-server /etc/redis/redis.conf

Parameter Description

  • -p 3306:3306 : Map the container's port 6379 to the host's port 6379
  • --name redis : Define the container name as redis
  • -v /mydata/redis/data:/data : Mount the Redis data folder to the host
  • -v /mydata/redis/conf/redis.conf:/etc/redis/redis.conf : Mount the Redis configuration folder to the host
  • -d redis redis-server /etc/redis/redis.conf : Run in the background and start with the redis image according to the following configuration file /etc/redis/redis.conf

insert image description here

View running containers

docker ps

insert image description here

Connecting to Redis in Docker

docker exec -it redis redis-cli

insert image description here

Store Value

set name zhangsan

insert image description here


Value

get name

insert image description here

Setting up Redis persistent storage

By default, redis data is stored in memory. After restart, the data is lost. After setting persistent storage, the data will still be in memory after restart.

echo "appendonly yes" >> /mydata/redis/conf/redis.conf

This is the end of this article about the implementation steps of Docker installation and configuration of Redis image. For more relevant content about Docker installation of Redis image, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Redis installation and configuration process in Windows and remote access function
  • Redis installation configuration and common commands
  • Redis basic knowledge, installation, deployment, and configuration notes
  • Installation and configuration method of Redis database
  • Detailed installation and configuration tutorial of Redis database

<<:  Summary of HTML horizontal and vertical centering issues

>>:  Introduction to JavaScript array deduplication and flattening functions

Recommend

Detailed analysis of classic JavaScript recursion case questions

Table of contents What is recursion and how does ...

Nginx location matching rule example

1. Grammar location [=|~|~*|^~|@] /uri/ { ... } 2...

Practical notes on installing Jenkins with docker-compose

Create a Directory cd /usr/local/docker/ mkdir je...

User needs lead to marketing-oriented design

<br />For each of our topics, the team will ...

Differences between MySQL CHAR and VARCHAR when storing and reading

Introduction Do you really know the difference be...

How to use docker+devpi to build local pypi source

Some time ago, I needed to use pip downloads freq...

Summary of tips for setting the maximum number of connections in MySQL

Method 1: Command line modification We only need ...

Detailed process of using vmware to test PXE batch installation server

Table of contents 1. Preparation 1. Prepare the e...

Summary of principles for writing HTML pages for emails

Since HTML email is not an independent HOST page o...

Vue encapsulation component tool $attrs, $listeners usage

Table of contents Preface $attrs example: $listen...

JS+Canvas realizes dynamic clock effect

A dynamic clock demo based on Canvas is provided ...

Can you do all the web page making test questions?

Web page design related questions, see if you can...

Implementation of importing and exporting vue-element-admin projects

vue-element-admin import component encapsulation ...

Detailed explanation of MySQL 8.0 dictionary table enhancement

The data dictionary in MySQL is one of the import...