diff options
author | hejindong <wodeshijie3394@126.com> | 2024-09-12 09:14:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-12 09:14:21 +0200 |
commit | 128e6451d8c4764025d4a2565f15ec175c857bb2 (patch) | |
tree | 12052d272218973f301efa2fb70e294ef67417b4 /doc/install | |
parent | Merge pull request #59482 from rhcs-dashboard/nvmeof-api-group-support (diff) | |
download | ceph-128e6451d8c4764025d4a2565f15ec175c857bb2.tar.xz ceph-128e6451d8c4764025d4a2565f15ec175c857bb2.zip |
doc/install: Keep the name field of the created user consistent with the node name in the Start RADOSGW service command
If the user name does not match the name of the node that started the RADOSGW service, this will cause confusion for those who are new to ceph. Because they can't start the radosgw service normally as shown in the tutorial.
Signed-off-by: hejindong <wodeshijie3394@126.com>
Diffstat (limited to 'doc/install')
-rw-r--r-- | doc/install/manual-deployment.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/install/manual-deployment.rst b/doc/install/manual-deployment.rst index 0eb759de701..30d80d2681b 100644 --- a/doc/install/manual-deployment.rst +++ b/doc/install/manual-deployment.rst @@ -475,7 +475,7 @@ thread on the ceph-users mailing list .. prompt:: bash # - ceph auth get-or-create client.short-hostname-of-rgw mon 'allow rw' osd 'allow rwx' + ceph auth get-or-create client.$(hostname -s) mon 'allow rw' osd 'allow rwx' #. On one of the RGW nodes, do the following: |