Redis: NOAUTH Authentication required but there is no password setting

后端 未结 6 1650
小蘑菇
小蘑菇 2020-12-08 06:57

I got error NOAUTH Authentication required when I connect to Redis server via command: redis-cli and run ping to check if Redis is

6条回答
  •  无人及你
    2020-12-08 07:30

    I Have the same problem. after that I'm set requirepass for the redis server.
    And add that password in initializer/redis.rb

    $redis = Redis.new(:password=>"****") 
    

    It works fine

提交回复
热议问题