Redis - Username, Password And Db?
Is it possible to use username, password and db in Redis? The reason for this question is because in the official pyramid_redis_sessions documentation ( http://pyramid-redis-sessio
Solution 1:
In the Redis, the AUTH command is used to authenticate to the Redis server. Once a client is authenticated against a server, it can switch to any of the DBs configured on there server. There is no inbuilt authentication against a specific database.
Post a Comment for "Redis - Username, Password And Db?"