FUSE error: Transport endpoint is not connected
Solution 1:
This typically is caused by the mount directory being left mounted due to a crash of your filesystem. Go to the parent directory of the mount point and enter fusermount -u YOUR_MNT_DIR
.
If this doesn't do the trick, do sudo umount -l YOUR_MNT_DIR
.
Solution 2:
I mounted a ssh file system (sshfs command line) and left it mounted and I had same problem, fusermount -u YOUR_MNT_DIR
solved my problem. Thanks
Solution 3:
In Azure, I tried to mount my container using user managed identities. I kept getting Transport endpoint is not connected
until the Storage Blob Data Contributor
permission was added to the managed identity.