redis install
Posted Howhy Blogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redis install相关的知识,希望对你有一定的参考价值。
yum install -y epel-release
yum install -y redis
vim /etc/redis.conf
修改:bind 0.0.0.0
requirepass foobared123
systemctl restart redis
redis-cli
>>auth foobared123
import redis
pool = redis.ConnectionPool(host=‘192.168.1.144‘, port=6379,password=‘foobared123‘)
r = redis.Redis(connection_pool=pool)
r.set(‘test‘, ‘Bar‘)
print r.get(‘test‘)
以上是关于redis install的主要内容,如果未能解决你的问题,请参考以下文章