Docker image repository Install Redis on Docker1. Find the Redis image
2. Download the Redis image
docker images 3. Create a Redis configuration file
## Create directory mkdir -p /mydata/redis/conf ## Create the file touch /mydata/redis/conf/redis.conf 4. Create and start a Redis container
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
5. Check whether Redis is running### View the running Docker container docker ps docker ps | grep redis 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 > Merge Command 7. Exit the containerexit 8. Modify the Redis configuration file
9. Enter the Redis console with a password
## 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 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:
|
<<: Study on using characters instead of pictures to achieve rounded or sharp corners
>>: Problems with join queries and subqueries in MySQL
Table of contents Preface Project Design rear end...
When faced with a SQL statement that is not optim...
Table of contents 1. Uninstall the original drive...
Table of contents 1. Event delegation Event Bubbl...
What? What star coat? Well, let’s look at the pic...
This article shares the specific code of JavaScri...
Table of contents Preface: System Requirements: I...
Use CSS styles and HTML tag elements In order to ...
8 optimization methods for MySQL database design,...
Many friends who have just started to make web pag...
Since myeclipse2017 and idea2017 are installed on...
When installing packages on an Ubuntu server, you...
Correspondence between flutter and css in shadow ...
The ogg process of a database produced some time ...
When we use the like % wildcard, we often encount...