Skip to content

腾讯云对象存储 COSFS 工具安装配置与使用命令

安装

获取源码

shell
git clone https://github.com/tencentyun/cosfs /usr/cosfs

安装依赖软件

shell
sudo yum install automake gcc-c++ git libcurl-devel libxml2-devel fuse-devel make openssl-devel fuse

编译和安装 COSFS

shell
cd /usr/cosfs
./autogen.sh
./configure
make
sudo make install
cosfs --version
#查看 cosfs 版本号

配置

获取挂载信息

登录腾讯云 - 控制台 - 对象存储 - 存储桶获取相关信息

  • BucketName-APPID : test-1250000000 为存储桶名称
  • 区域地址 : https://cos.ap-shanghai.myqcloud.com 存储桶所在的区域域名.

登录腾讯云 - 控制台 - 访问管理

创建子账号并赋予 COS 相关权限,生成SecretIdSecretKey.

  • SecretId : XXXXXX
  • SecretKey : XXXXXX

配置密钥文件

官方样本

shell
echo <BucketName-APPID>:<SecretId>:<SecretKey> > /etc/passwd-cosfs
chmod 640 /etc/passwd-cosfs

示例

shell
echo test-1250000000:AKIDHTVVaVR6e3:PdkhT9e2rZCfy6 > /etc/passwd-cosfs
chmod 640 /etc/passwd-cosfs

命令

挂载

官方样本

shell
cosfs <BucketName-APPID> <MountPoint> -ourl=<CosDomainName> -odbglevel=info

相关参数

shell
-o nonempty # 挂载到本地的目录不为空时.
-oallow_other # 允许其他用户访问,允许Web直连下载.

示例

创建挂载路径

shell
mkdir -p /mnt/cosfs

挂载

shell
cosfs test-1250000000 /mnt/cosfs -ourl=https://cos.ap-shanghai.myqcloud.com -odbglevel=info -onoxattr -oallow_other

如需挂载子目录

shell
cosfs test-1250000000:/my-dir /mnt/cosfs -ourl=https://cos.ap-shanghai.myqcloud.com -odbglevel=info -onoxattr -oallow_other

卸载

shell
umount -l /mnt/cosfs

!> 更多命令及参数请参考下文官方文档

链接: