Hi @Manish Reddy
Greetings! Welcome to Microsoft Q&A Forum. Thanks for posting your query here.
In addition to above recommended solution from Azar, we suggest you follow the below and give a try.
Please follow the below steps to persist mount with BlobFuse2 lib mentioned in the article: https://github.com/Azure/azure-storage-fuse/wiki/Blobfuse2-Installation#persisting-mount
- Make sure the fuse package is installed (e.g., yum install fuse3 / apt-get install fuse3)
- Update config.yaml file with your preferred configuration.
- Edit /etc/fstab with the blobfuse script.
Add the following line to use mount.sh:
/<path_to_blobfuse2_mount.sh_file>/mount.sh </path/to/desired/mountpoint> fuse defaults,_netdev 0 0
OR
Add the following line to run without mount.sh:
blobfuse2 /home/azureuser/mntblobfuse fuse defaults,_netdev,--config-file=/home/azureuser/config.yaml,allow_other 0 0
Also, please refer the additional link which helps with the commands related to blobfuse2 mount commands and how to use the BlobFuse2 command set.
There might also be a permission issue, please ensure that you have necessary permissions to access the mount point /mnt/blobfuse
You must grant access to the storage account for the user who mounts the container. The most common ways to grant access are by using one of the following options:
- Storage account access key
- Shared access signature
- Managed identity
- Service principal
You can provide authorization information in a configuration file or in environment variables.
However, also please try unmounting and remounting the Blob storage.
I hope by following the above solutions helps in resolving the issue. If the still persists, please helps in providing the error details, we will be glad to assist you closely.
I hope this helps! Let me know in the comments if you have further questions. Comment is the fastest way to reach the experts for any questions or help you need.
Please don’t forget to Accept Answer and hit Yes for "was this answer helpful" wherever the information provided helps you, this can be beneficial to other community members for remediation for similar issues.