1. 在 setting.py 中添加 :
CACHES = {
‘default‘: {
‘BACKEND‘: ‘django_redis.cache.RedisCache‘,
‘LOCATION‘: redis主机ip + ‘:‘ + 端口号,
"OPTIONS": {
"CLIENT_CLASS": "django_redis.client.DefaultClient",
},
},
}
2. redis 主机中的配置修改:
bind 127.0.0.1 ===》 bind 主机ip
3. 重启redis
ps aux | grep redis
kill -9 redis-pid
redis-server redis.conf
4. redis 客户端的连接 :
redis-cli -h redis主机ip -p 端口号