PrefaceThis tutorial demonstrates how to install the Redis image, create a Redis container, and map ports to mount data volumes and configuration data. environment
InstallPull the image docker pull redis View Mirror docker images Create and start the MySQL containerCreate 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 Create and start the MySQL container commandsudo 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
View running containersdocker ps Connecting to Redis in Dockerdocker exec -it redis redis-cli Store Value set name zhangsan
get name Setting up Redis persistent storageBy 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:
|
<<: Summary of HTML horizontal and vertical centering issues
>>: Introduction to JavaScript array deduplication and flattening functions
Table of contents What is recursion and how does ...
1. Grammar location [=|~|~*|^~|@] /uri/ { ... } 2...
Create a Directory cd /usr/local/docker/ mkdir je...
<br />For each of our topics, the team will ...
Introduction Do you really know the difference be...
Some time ago, I needed to use pip downloads freq...
Method 1: Command line modification We only need ...
Table of contents 1. Preparation 1. Prepare the e...
Since HTML email is not an independent HOST page o...
Table of contents Preface $attrs example: $listen...
Today I have nothing to do, so I listed some tool...
A dynamic clock demo based on Canvas is provided ...
Web page design related questions, see if you can...
vue-element-admin import component encapsulation ...
The data dictionary in MySQL is one of the import...