你甚至已经构建了 Rook-Ceph。您还可以使用以下命令设置从节点挂载。
# Create the directory
mkdir /tmp/registry
# Detect the mon endpoints and the user secret for the connection
mon_endpoints=$(grep mon_host /etc/ceph/ceph.conf | awk '{print $3}')
my_secret=$(grep key /etc/ceph/keyring | awk '{print $3}')
# Mount the filesystem
mount -t ceph -o mds_namespace=myfs,name=admin,secret=$my_secret $mon_endpoints:/ /tmp/registry
# See your mounted filesystem
df -h
重新启动节点时,挂载设置消失。我在/etc/fstab中写了如下命令,但是节点没有正常启动。请教我解决方法。
10.43.18.0:6789,10.43.50.178:6789,10.43.208.235:6789:/ /tmp/registry name=admin,secretfile=/etc/ceph/keyring,noatune,_netdev 0 2