使用yum安装:
yum install redis
配置redis.conf文件:
vi /etc/redis.conf
如果要在外网访问访问你的redis服务器,将阿里云的公网ip加到ping 127.0.0.1后面
添加访问密码,添加
requirepass yourpassword
重启服务:
service redis restart
完成,如果发现外网访问不了,则检查下服务器的redis使用的6379端口是不是没有开放出去。
使用spring-data-redis去测试访问,可以参考这个连接