Redis Security (How to set password for redis database)



Redis Security (How to set password for redis database)

Redis Security (How to set password for redis database)

Redis Security (How to set password for redis database)

commands
********************

config get requirepass
1) “requirepass”
2) “”

config set requirepass password
OK

config get requirepass
(error) NOAUTH Authentication required.

auth password
OK

set mykey helloworld
OK

get mykey
“helloworld”

Comments are closed.