from redis import StrictRedis
redis = StrictRedis(host='localhost',port=6379,db=0,password='foobared')
注释:db是数据库名称
from redis import StrictRedis,ConnectionPool
pool = ConnectPool(host='localhost',port = 6379,db=0,password='foobared')
redis = StrictRedis(connection_pool=pool)
redis://[:password]@host:port/db
rediss://[:password]@host:port/db
unix://[:password]/path/to/socket.sock?db=db
url='redis://foobared@localhost:6379/0'
pool = ConnectionPool.from_url(url)
redis=StrictRedis(connection_pool=pool)
Redis 连接命令主要是用于连接 redis 服务。
以下实例演示了客户端如何通过密码验证连接到 redis 服务,并检测服务是否在运行:
redis 127.0.0.1:6379>AUTH "password"
OK
redis 127.0.0.1:6379>PING
PONG
更多命令详见:http://www.apiref.com/redis-zh/136.html
方法/步骤1、打开已经安装成功的Xshell,点击左上角【新建】按钮,打开新建会话属性对话框
2、连接信息验证,输入redis服务器的主机IP,端口号,名称(自定义,如test)
3、用户身份验证,方法:Password,输入连接redis服务器的用户名和密码;点击【确定】按钮
4、点击会话对话框中的【连接】按钮
5、连接成功状态
6、通过命令
【redis-cli
-a
test123】;连接redis数据库,其中【test123】数据库是名称。到这里为止,您已经通过Xshell能完整的 *** 作redis了,您会了吗?
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)