Blobfuse2 with rhel8 start/stop using systemd service we notice permission issues. #1565
-
Manually mounting the blob file system on RHEL 8 works with blobfuse2, but when using a systemd service with a specific user, we encounter with no permission with mounted file systems and log files give error as Attaching file with all config, systemd service file and error logs. Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
Blobfuse2 mounts the file system but it give permission error on that file system. $ ls -l |
Beta Was this translation helpful? Give feedback.
-
If you are using systemd or /etc/fstab mode where mount is done automatically you need to use "-o allow_other" option in your mount as the mount is not done by the user trying to access the path. In such case other users are not allowed to access it. This option will allow you to access the mount done by any other user in the system. |
Beta Was this translation helpful? Give feedback.
-
@vibhansa-msft : Thank you for the response. Using systemd to mount with "-o allow_other" option gives full permission (0777) to other user and groups. Is there any way we can limit other users with just read permission while mounting using systemd? |
Beta Was this translation helpful? Give feedback.
-
Only other way is to somehow mount via the user who wants to assume the ownership of the mount path. |
Beta Was this translation helpful? Give feedback.
Only other way is to somehow mount via the user who wants to assume the ownership of the mount path.