如何在重启时自动挂载 S3 存储桶

如何在重启时自动挂载 S3 存储桶

我正在使用 s3fs 在我的 Ubuntu 服务器上挂载 s3 存储桶:

sudo apt-get install s3fs

sudo vim /etc/passwd-s3fs // <--put user access key and secret key in this file

sudo chmod 640 /etc/passwd-s3fs // <-- change permission to password file

sudo vim /etc/fuse.conf // uncomment user_allow_other

现在挂载 s3 存储桶:

sudo s3fs -o allow_other s3-bucket-name /home/myuser/s3

我想确保存储桶在重启后自动安装,我该怎么做?

答案1

您需要添加/etc/fstab类似于以下内容的行:

s3fs#mybucket /path/to/mountpoint fuse _netdev,allow_other 0 0

请参阅此处的其他示例:

https://github.com/s3fs-fuse/s3fs-fuse#examples

相关内容