How to set password for Redis?

后端 未结 10 1298
长发绾君心
长发绾君心 2021-01-29 19:17

I\'m working with redis on my local machine so I dont really need to set up a password to connect to the server with my php client (I\'m using predis as a client). However, I\'

10条回答
  •  无人及你
    2021-01-29 20:01

    using redis-cli:

    root@server:~# redis-cli 
    127.0.0.1:6379> CONFIG SET requirepass secret_password
    OK
    

    this will set password temporarily (until redis or server restart)

    test password:

    root@server:~# redis-cli 
    127.0.0.1:6379> AUTH secret_password
    OK
    

提交回复
热议问题