Files
redis-docs/docs/AuthCommand.rst
T
Kenneth Reitz 525e9fd3d3 all into sphinx
2011-04-06 13:27:48 -04:00

30 lines
1.1 KiB
ReStructuredText
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
`|Redis Documentation| <index.html>`_
**AuthCommand: Contents**
  `AUTH \_password\_ <#AUTH%20_password_>`_
    `Return value <#Return%20value>`_
AuthCommand
===========
#sidebar
`ConnectionHandlingSidebar <ConnectionHandlingSidebar.html>`_
AUTH \_password\_
=================
Request for authentication in a password protected Redis server.A
Redis server can be instructed to require a password before to
allow clientsto issue commands. This is done using the
*requirepass* directive in theRedis configuration file.
If the password given by the client is correct the server replies
withan OK status code reply and starts accepting commands from the
client.Otherwise an error is returned and the clients needs to try
a new password.Note that for the high performance nature of Redis
it is possible to trya lot of passwords in parallel in very short
time, so make sure to generatea strong and very long password so
that this attack is infeasible.
Return value
------------
`Status code reply <ReplyTypes.html>`_
.. |Redis Documentation| image:: redis.png