I use s3fs on aws ubuntu instance to mount s3 bucket. Following is the command I used to mount the bucket.
sudo fusermount -u /s3/project1
sudo s3fs -o allow_other project1 /s3/project1
The machines are never getting restarted. But frequently this mount detached. And while access the mount I'm getting following error.
cannot access '/s3/project1': Transport endpoint is not connected
How to make it permanantly attached?