How to set password for Redis?

后端 未结 10 1405
长发绾君心
长发绾君心 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:14

    open redis configuration file

    sudo nano /etc/redis/redis.conf 
    

    set passphrase

    replace

    # requirepass foobared
    

    with

    requirepass YOURPASSPHRASE
    

    restart redis

    redis-server restart
    

提交回复
热议问题