Redis (erro) Autenticação NOAUTH requerida

17

Eu recebo o erro:

(error) NOAUTH Authentication required.

Quando em redis-cli e tentando exibir o KEYS * . Eu só defini um requirepass não um auth afaiac. Estou no redis.conf mas não sei o que fazer.

    
por Karl Morrison 16.09.2015 / 20:28

3 respostas

15

Definir a diretiva requirepass configuration faz com que o servidor exija autenticação de senha com o comando AUTH antes de enviar outros comandos. O arquivo redis.conf afirma isso claramente:

Require clients to issue AUTH before processing any other
commands. This might be useful in environments in which you do not trust
others with access to the host running redis-server.

    
por 06.12.2015 / 10:29
14
1. redis-cli
2. auth yourpassword
3. shutdown
4. sudo service redis_6379 start
    
por 22.01.2016 / 21:00
1
  1. Certifique-se de ter o redis-cli instalado.
  2. Basta usar o seguinte comando.

    redis-cli -h host.domain.com -p port -a yourpassword

por 12.06.2018 / 22:27

Tags