redis(设置密码)配置文件详细
在Redis中设置密码,你需要修改Redis配置文件(通常名为redis.conf
),找到# requirepass foobared
这行配置,去掉前面的#
并将foobared
替换成你想要设置的密码。
例如,你想要设置密码为myStrongPassword123
,你应该这样修改配置文件:
requirepass myStrongPassword123
修改完成后,重启Redis服务以使配置生效。
在Linux中,你可以使用以下命令来重启Redis服务:
sudo service redis-server restart
或者如果你使用的是systemd(大多数现代Linux发行版):
sudo systemctl restart redis.service
设置密码后,客户端连接到Redis服务时需要提供密码。使用redis-cli时,可以使用-a
参数:
redis-cli -a myStrongPassword123
在编程时,连接Redis时需要提供密码:
import redis
# 创建连接对象
r = redis.StrictRedis(host='localhost', port=6379, password='myStrongPassword123')
# 测试连接
r.ping()
请确保在设置密码后,你的应用程序和其他管理工具(如Redis Desktop Manager或其他CLI工具)都使用正确的密码进行连接,否则将无法正常访问Redis服务。
评论已关闭