1. nginx官网 https://redis.io/download/

  2. 把鼠标放到这里,复制下载地址

  3. 在服务器找个文件夹执行命令
    wget https://github.com/redis/redis/archive/7.2.4.tar.gz

  4. tar -zxvf 7.2.4.tar.gz

  5. make

  6. make install

  7. 看到这几行就说明安装成功了

  8. 不放心的话再查看下bin目录,如下图,可以看到redis-server

  9. 先备份配置文件,再修改配置文件 vi redis.conf

  10. daemonize no —> yes

  11. bind 127.0.0.1 —> bind 0.0.0.0

  12. requirepass 123456(自定义的密码)

  13. 保存文件,执行 redis-server redis.conf

  14. 我遇到了这个问题,不慌,提示说的很清楚,只需要在 /etc/sysctl.conf 这个文件中添加一行 vm.overcommit_memory = 1

  15. 执行sysctl vm.overcommit_memory=1

  16. 再执行 redis-server redis.conf

  17. 看到什么都没输出,这时已经在后台运行了

  18. 使用客户端连接进行测试,顺便推荐个好用的客户端,Another Redis Desktop Manager(https://goanother.com/cn/)

  19. 完结撒花,恭喜你,已经安装成功了