阿里云的存储桶是默认开机后需要手动挂载的,为了避免以后麻烦,现在设置成开机自动挂载ossfs
由于使用的是阿里云的ECS和centos7的系统,所以现在就按照官方的文档进行操作即可(https://help.aliyun.com/document_detail/32197.html )
先请参考使用说明,把bucket name,access key id/secret等信息写入/etc/passwd-ossfs,并将该文件权限修改为640。
echo your_bucket_name:your_access_key_id:your_access_key_secret >/etc/passwd-ossfs
chmod 640 /etc/passwd-ossfs
通过开机自启动脚本mount(适用于centos7.0及以上的系统)
模板文件
#! /bin/bash
#
# ossfs Automount Aliyun OSS Bucket in the specified direcotry.
#
# chkconfig: 2345 90 10
# description: Activates/Deactivates ossfs configured to start at boot time.
ossfs your_bucket your_mountpoint -ourl=your_url -oallow_other
chmod a+x /etc/init.d/ossfs
chkconfig ossfs on