https://download.redis.io/releases/ redis-7.0.0.tar.gz 27-Apr-2022 13:46 2943054 cd /usr/local/src wget wget https://download.redis.io/releases/redis-6.2.7.tar.gz tar -zxvf redis-6.2.7.tar.gz cd redis-6.2.7 make MALLOC=libc && make install PREFIX=/usr/local/redis cp /usr/local/src/redis-6.2.7/redis.conf /usr/local/redis/bin/ vi /usr/local/redis/bin/redis.conf /daemonize daemonize no -> yes # 允许 redis 后台运行 /bind bind 127.0.0.1 -::1 -> bind 0.0.0.0 -::1 # 允许任意主机连接 redis ./redis-server redis.conf ps -ef | grep redis