System environment: Ubuntu 16.04LTS This article uses 6 Docker containers to build a single-machine cluster test. If the actual environment has multiple machines, you can modify the number of containers, port numbers, and cluster IP addresses accordingly. Each machine can follow the same steps as below. Pull the official redis image docker pull redis:5.0 Create configuration files and data directories Create a Directory mkdir ~/redis_cluster cd ~/redis_cluster Create a new template file sudo vim redis_cluster.tmpl and fill in the following content: # redis port ${PORT} # Disable protection mode protected-mode no # Enable cluster cluster-enabled yes # Cluster node configuration cluster-config-file nodes.conf #Timeout cluster-node-timeout 5000 # Cluster node IP host mode is the host machine IP cluster-announce-ip 10.10.100.197 # Cluster node ports 7000 - 7005 cluster-announce-port ${PORT} cluster-announce-bus-port 1${PORT} # Enable appendonly backup mode appendonly yes # Backup every second appendfsync everysec #Whether to perform synchronization when compressing aof files no-appendfsync-on-rewrite no # When the current aof file size exceeds 100% of the last rewritten aof file size, it will be rewritten again auto-aof-rewrite-percentage 100 # The minimum size of the AOF file before rewriting is 64mb by default auto-aof-rewrite-min-size 5120mb # Disable snapshot backup save "" To create configuration files and data directories in batches, run the following command in the terminal: for port in `seq 7000 7005`; do \ mkdir -p ./${port}/conf \ && PORT=${port} envsubst < ./redis_cluster.tmpl > ./${port}/conf/redis.conf \ && mkdir -p ./${port}/data; \ done Start redis containers in batches The container's IP address uses the host mode: for port in `seq 7000 7005`; do \ docker run -d -it --memory=1G \ -v ~/redis_cluster/${port}/conf/redis.conf:/usr/local/etc/redis/redis.conf \ -v ~/redis_cluster/${port}/data:/data \ --restart always --name redis-${port} --net host \ --sysctl net.core.somaxconn=1024 redis:5.0 redis-server /usr/local/etc/redis/redis.conf; \ done Here, --memeory=1G limits the memory size of a single Docker container to 1G. If it exceeds this limit, the process will be killed. During runtime, a warning "Memory limited without swap..." may appear, which can be ignored. If you do not need to limit memory, you can remove the --memeory parameter. Creating a cluster Enter any of the containers: docker exec -it redis-7000 bash After entering, execute the following command to create a cluster: redis-cli --cluster create 10.10.100.197:7000 10.10.100.197:7001 10.10.100.197:7002 10.10.100.197:7003 10.10.100.197:7004 10.10.100.197:7005 --cluster-replicas 1 Install the redis-cli command (skip this step if you already have it): sudo apt install redis-tools After entering yes, the cluster is created. Exit Docker and log in to one of the nodes to verify the cluster availability: redis-cli -c -p 7000 Enter cluster nodes to view the cluster status 127.0.0.1:7000> cluster nodes 06851aa134d50096d82a434eced9194233b5204e 10.10.100.197:7003@17003 slave 8b33f273386c9504ef8bd10b005e24825b3b9596 0 1567671901000 4 connected a42297b65f7101fc9e4941ef8a0e65080d1b6338 10.10.100.197:7005@17005 slave 0aa20378d14e3ef0859815196cbafa67e1001d0e 0 1567671901581 6 connected e7b6a35b1e92f94c225c507ea19f7f0318f0d1c3 10.10.100.197:7002@17002 master - 0 1567671902582 3 connected 10923-16383 0aa20378d14e3ef0859815196cbafa67e1001d0e 10.10.100.197:7000@17000 myself,master - 0 1567671901000 1 connected 0-5460 8b33f273386c9504ef8bd10b005e24825b3b9596 10.10.100.197:7001@17001 master - 0 1567671902383 2 connected 5461-10922 fe355eed99100197f43d1216d1de82643dd496a5 10.10.100.197:7004@17004 slave e7b6a35b1e92f94c225c507ea19f7f0318f0d1c3 0 1567671901380 5 connected Set the cluster password Why don't you write the password in the above steps when you use the template file to batch create configuration files? Whether in redis 5.x or previous redis versions that use ruby to create a cluster, there is no password parameter configuration in the redis-cli --cluster create process of creating a cluster, so we need to set the password after creating the cluster. We use the config set method to set the same password for each node (no need to restart redis, and it is still valid after restart). Before that, add w permissions to all redis configuration files, otherwise the password cannot be saved to the file. Note that the current path is still ~/redis_cluster/: for port in `seq 7000 7005`; do \ chmod a+w ./${port}/conf/redis.conf; \ done Let's use one as an example: Log in to a node: redis-cli -c -p 7000 Set password: 127.0.0.1:7000> config set masterauth 123456 OK 127.0.0.1:7000> config set requirepass 123456 OK 127.0.0.1:7000>auth 123456 OK 127.0.0.1:7000> config rewrite OK Perform the same operation on the following devices. Simple test of cluster writing data Log in to any cluster node: redis-cli -c -p 7003 -a 123456 Write data: 127.0.0.1:7003> set va 1 -> Redirected to slot [7800] located at 10.10.100.197:7001 OK 10.10.100.197:7001> get va "1" 10.10.100.197:7001> del va (integer) 1 It can be seen that data written by any node in the cluster can be read by any other node. At this point, the redis cluster is built. Other considerations
for port in `seq 7000 7005`; do \ docker stop redis-${port}; docker rm redis-${port}; done The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Eight common SQL usage examples in MySQL
hint This plug-in can only be accessed under the ...
Table of contents Overview Blob Blob in Action Bl...
Recently, I encountered many problems when instal...
Preface The string types of MySQL database are CH...
When we encounter a fault, we often think about h...
Table of contents 1.parseInt(string, radix) 2. Nu...
Preface In the development of actual projects, we...
When we make a web page, sometimes we want to hav...
Original link: https://vien.tech/article/138 Pref...
Purchase Certificate You can purchase it from Ali...
Preview: Code: Page Sections: <template> &l...
This article example shares the specific code of ...
Mybatis fuzzy query implementation method The rev...
Array Methods JavaScript has provided many array ...
Copy code The code is as follows: <a href=# ti...