首先需要安装s3fs,安装方式可参考官方文档,这里以centos为例
sudo yum install epel-release
sudo yum install s3fs-fuse
将七牛AK/SK 写入密钥文件,比如 /root/.passwd-s3fs,并将密钥文件权限设为600
echo AK:SK > /root/.passwd-s3fs
chmod 600 /root/.passwd-s3fs
将已经存在的bucket挂载到本地目录,url填写七牛s3的服务域名
s3fs s3空间名 /mnt/s3fs -o passwd_file=/root/.passwd-s3fs -o url=http://s3-cn-north-1.qiniucs.com -o use_path_request_style
此处注意,网上很多写的是s3fs bucketname,但使用bucketname根本不好用。s3域名可以在空间概览中看到
使用 df -h 使命可以看到挂载情况
如果挂载不成功可以使用下面命令查看错误
s3fs s3空间名 /mnt/s3fs -o passwd_file=/root/.passwd-s3fs -o url=http://s3-cn-north-1.qiniucs.com -o dbglevel=info -f -o curldbg