Installation Steps 1. Install Redis Download the redis image through 2. Create a new mount configuration folder Create two new folders, data and conf, in any location. mkdir -p /root/docker/redis/data mkdir -p /root/docker/redis/conf Note: Because of the default configuration of redis, you will find that you can only connect locally and cannot access remotely. Using 3. Add the configuration file redis.conf Create a new file redis.conf in the newly created redis/conf with the following content: #bind 127.0.0.1 //Allow remote connection protected-mode no appendonly yes //Persistence requirepass 123456 //Password 4. Create and start the redis container The execution command is as follows: docker run --name myredis -p 6379:6379 -v /root/docker/redis/data:/data -v /root/docker/redis/conf/redis.conf:/etc/redis/redis.conf -d redis redis-server /etc/redis/redis.conf The interpretation is as follows: –name: Give the container a name 5. Startup successful, check the status Check the startup status through docker ps to see if it is successful 6. Test the connection inside the container Execute Log in using The completed command is as follows: [root@*** conf]# docker exec -it myredis redis-cli 127.0.0.1:6379> set name jfaith (error) NOAUTH Authentication required. 127.0.0.1:6379> auth 123456 OK 127.0.0.1:6379> set name wangcai OK 127.0.0.1:6379> get name "jfaith" Note: If this error occurs: (error) NOAUTH Authentication required. Explanation: No password was entered for verification. Please enter: auth your password Summarize The above is the method of Linux environment deployment and Docker installation of redis introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
>>: How to use mqtt in uniapp project
Preface HTTP is a stateless communication protoco...
System environment: Windows 7 1. Install Docker D...
Table of contents Stabilization Throttling: Anti-...
structure body, head, html, title text abbr, acro...
HTML forms are used to collect different types of...
1. Run fonts, open the font folder, and find the ...
Table of contents 1. Technology Selection 2. Tech...
1. Replace your .js library file address with the...
Preface The best method may not be the one you ca...
This article shares the specific code of js to im...
Table of contents 1. Four concepts 1. JavaScript ...
Table of contents 1. Solution 1 (UDF) Demo Case 2...
1. Preparation Install Tomcat on Linux system, us...
Copy code The code is as follows: <!--[if IE]&...
Copy code The code is as follows: <!DOCTYPE HT...