Hi folks, I've built a ceph container image based on ubuntu and used rook to install ceph in my GKE cluster, but I found in the ceph-mon log that the run-dir is not created: warning: unable to create /var/run/ceph: (13) Permission denied debug 2022-08-05T00:38:06.472+0000 7f0960c2c540 -1 asok(0x56213ef7e000) AdminSocketConfigObs::init: failed: AdminSocket::bind_and_listen: failed to bind the UNIX domain socket to '/var/run/ceph/ceph-mon.a.asok': (2) No such file or directory I looked into the ceph/ceph source code. It turns out that we drop privilege before we create /var/run/ceph, which might explain why the run-dir creation failed. We create the run-dir here <https://github.com/ceph/ceph/blob/f36690f0e727f97b73c7846c8d19b5cf6b00f6b9/src/global/global_init.cc#L381> and call setuid here <https://github.com/ceph/ceph/blob/f36690f0e727f97b73c7846c8d19b5cf6b00f6b9/src/global/global_init.cc#L320>. Am I reading it right? Does anyone run into the same problem? Thanks, Zhongzhou Cai _______________________________________________ ceph-users mailing list -- ceph-users@xxxxxxx To unsubscribe send an email to ceph-users-leave@xxxxxxx