diff options
author | Loic Dachary <loic@dachary.org> | 2013-10-13 11:14:14 +0200 |
---|---|---|
committer | Loic Dachary <loic@dachary.org> | 2013-10-13 11:18:27 +0200 |
commit | bf82ba90bceab304afdea4666e03390d8581f8ee (patch) | |
tree | 61e6e95449cb6393426ff166e8eb6c51cc940267 | |
parent | 8d8ae58c420d880989c9430074be9f7710f6c74f (diff) | |
download | ceph-bf82ba90bceab304afdea4666e03390d8581f8ee.tar.gz |
doc: disable cephx requires auth_supported = none
auth cluster required = none
auth service required = none
auth client required = none
is not enough to disable cephx if there is a
auth_supported = cephx
line in the [global] section. It will produce the following error
# ceph --id myself auth list
2013-10-13 11:05:00.368638 7f812aea3700 0 librados: client.myself authentication error (1) Operation not permitted
Error connecting to cluster: PermissionError
Changing the line to
auth_supported = none
fixes the problem.
Signed-off-by: Loic Dachary <loic@dachary.org>
-rw-r--r-- | doc/rados/operations/authentication.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/rados/operations/authentication.rst b/doc/rados/operations/authentication.rst index 6bacf4c7dff..5c6c90447a8 100644 --- a/doc/rados/operations/authentication.rst +++ b/doc/rados/operations/authentication.rst @@ -154,6 +154,7 @@ during setup and/or troubleshooting to temporarily disable authentication. auth cluster required = none auth service required = none auth client required = none + auth_supported = none #. Or, disable ``cephx`` authentication for versions ``0.50`` and below (deprecated as of version 0.51) by setting the following option in the |