内容目录
在 Ubuntu / CentOS 服务器上使用 s3fs
挂载 Oracle Cloud(OCI)Object Storage,并通过 crontab
计划任务 实现 开机自动挂载 。
1. 安装 s3fs
Ubuntu/Debian
sudo apt update
sudo apt install -y s3fs
CentOS/RHEL
sudo yum install -y epel-release
sudo yum install -y s3fs-fuse
2. 获取 Oracle Cloud 访问凭据
在 OCI 控制台 生成 Access Key 和 Secret Key:
- 进入 OCI 控制台 → 身份与安全(Identity & Security) → 用户(Users)。
- 选择你的用户,进入 API Keys 选项卡。
- 生成新密钥,并保存 Access Key 和 Secret Key。
3. 配置 s3fs
认证
创建 ~/.passwd-s3fs
文件:
echo "your_access_key:your_secret_key" > ~/.passwd-s3fs
设置文件权限:
chmod 600 ~/.passwd-s3fs
4. 获取 Object Storage 信息
4.1 获取存储桶名称和Namespace
https://cloud.oracle.com/object-storage/buckets/
打开这个地址的存储桶名称就是Bucket Name,点击进去
面板显示就是Namespace
常规
名称空间:cnmjmhxxxx
4.2 获取 Region
OCI 的 Object Storage URL 结构如下:
https://<namespace>.compat.objectstorage.<region>.oraclecloud.com
例如,ap-seoul-1
的 URL:
https://cnmjmhxxxx.compat.objectstorage.ap-seoul-1.oraclecloud.com
5. 挂载 OCI Object Storage
5.1 创建挂载目录
mkdir -p /mnt/oci-object-storage
5.2 执行挂载
s3fs my_bucket /mnt/oci-object-storage \
-o passwd_file=~/.passwd-s3fs \
-o url=https://cnmjmhxxxx.compat.objectstorage.ap-seoul-1.oraclecloud.com \
-o use_path_request_style \
-o allow_other
验证是否挂载成功:
ls /mnt/oci-object-storage
如果能列出文件,说明挂载成功。
6. 设置开机自动挂载
方法 1:使用 crontab
计划任务
由于 s3fs
依赖网络,有时候系统启动时网络未准备好,可能导致 fstab
方式失败。我们可以使用 计划任务 crontab
来确保挂载成功。
步骤:
- 编辑
crontab
crontab -e
- 添加以下内容
@reboot sleep 30 && s3fs my_bucket /mnt/oci-object-storage -o passwd_file=/root/.passwd-s3fs -o url=https://cnmjmhxxxx.compat.objectstorage.ap-seoul-1.oraclecloud.com -o use_path_request_style -o allow_other
@reboot
代表 开机自动执行,sleep 30
让s3fs
等待 30 秒,以确保网络就绪。
测试计划任务:
reboot
然后登录服务器:
ls /mnt/oci-object-storage
如果能看到存储桶文件,说明 crontab
配置成功。
方法 2:使用 fstab
(不推荐)
编辑 /etc/fstab
:
echo "s3fs#my_bucket /mnt/oci-object-storage fuse _netdev,passwd_file=/root/.passwd-s3fs,url=https://cnmjmhxxxx.compat.objectstorage.ap-seoul-1.oraclecloud.com,use_path_request_style,allow_other 0 0" >> /etc/fstab
测试自动挂载:
umount /mnt/oci-object-storage
mount -a
ls /mnt/oci-object-storage
如果 ls
可以列出文件,则自动挂载成功。
如果报错千万,不要重新启动服务器之类的,会导致服务器启动不起来,尤其云服务器会很麻烦,还需要分离磁盘,挂载到别的服务器修改/etc/fstab
7. 其他常见问题
(1) 挂载后 ls
没有文件
可能的原因:
- 挂载失败,检查:
mount | grep s3fs
重新挂载:
fusermount -uz /mnt/oci-object-storage s3fs my_bucket /mnt/oci-object-storage -o url=https://cnmjmhxxxx.compat.objectstorage.ap-seoul-1.oraclecloud.com -o passwd_file=~/.passwd-s3fs -o use_path_request_style -o allow_other
(2) mount
时报错 403 Forbidden
可能的原因:
- Access Key / Secret Key 错误,检查
~/.passwd-s3fs
。 - Namespace,Bucket Name不正确,检查字段有没输入错误。
(3) mount: wrong fs type, bad option, bad superblock
可能的原因:
s3fs
版本过旧,更新:sudo apt update && sudo apt upgrade -y
还不行手动编译安装
https://github.com/s3fs-fuse/s3fs-fuse/
sudo apt install -y automake autotools-dev g++ git libcurl4-openssl-dev libfuse-dev libssl-dev libxml2-dev make pkg-config
git clone https://github.com/s3fs-fuse/s3fs-fuse.git
cd s3fs-fuse
./autogen.sh
./configure
make -j$(nproc)
sudo make install
s3fs --version
这样就可以像本地文件系统一样使用 OCI Object Storage 了!🚀
近期评论