安装Cloudreve
wget https://labfileapp.oss-cn-hangzhou.aliyuncs.com/cloudreve_3.3.1_linux_amd64.tar.gz
解压cloudreve
tar -zxvf cloudreve_3.3.1_linux_amd64.tar.gz
给cloudreve添加权限
chmod +x ./cloudreve
运行cloudreve
./cloudreve
打开web
登入后界面
安装ossfs
这样可以挂载到本地文件系统中方便文件操作共享
下载ossfs安装包
wget https://gosspublic.alicdn.com/ossfs/ossfs_1.80.6_centos8.0_x86_64.rpm
因为官方centos8下载,没有更换镜像源的先更换镜像源地址
删除系统内过期的.repo文件
rm -f /etc/yum.repos.d/*
载新的 CentOS-Base.repo 到 /etc/yum.repos.d/
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo
运行 yum makecache 生成缓存
yum clean all && yum makecache
安装ossfs
yum install -y ./ossfs_1.80.6_centos8.0_x86_64.rpm
配置账号访问信息,Bucket名称、AccessKey ID和AccessKey Secret
echo adc-oss-18d2:LTFu:LN**hp > /etc/passwd-ossfs
给passwd-ossfs文件授予权限
chmod 640 /etc/passwd-ossfs
创建oss文件夹
mkdir oss
将Bucket挂载到指定目录oss
ossfs adc-oss-18**d2 oss -o url=oss-cn-shanghai-internal.aliyuncs.com
查看挂载
df -h
编辑ossfs,设置开机自启动挂载oss
vim /etc/init.d/ossfs
#! /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 adc-oss-18***d2 oss -o url=oss-cn-shanghai-internal.aliyuncs.com -oallow_other
为ossfs脚本赋予可执行权限
chmod a+x /etc/init.d/ossfs
chkconfig ossfs on
运行cloudreve
./cloudreve
登入页面,进入管理面板,对url更改成当前IP
存储方式选择本机存储
添加本机存储策略
其他都默认
上传文件测试