安装Cloudreve
在putty中按顺序输入下面的命令进行安装。

下载Cloudreve:
记得改版本号

wget https://github.com/cloudreve/Cloudreve/releases/download/3.0.0/cloudreve_3.0.0_linux_amd64.tar.gz

解压Cloudreve:
记得改版本号

tar -zxvf cloudreve_3.0.0_linux_amd64.tar.gz

赋予执行权限:

chmod +x ./cloudreve

启动 Cloudreve:

./cloudreve

Cloudreve 在首次启动时,会创建初始管理员账号,请注意保管管理员密码,此密码只会在首次启动时出现。

然后按键盘的Ctrl+C键来退出到命令模式。

设置进程守护:

安装升级systemd:

sudo yum install systemd-*

编辑systemd配置文件:

vim /usr/lib/systemd/system/cloudreve.service

按i键进入编辑模式,然后将下面内容复制进去:

[Unit]
Description=Cloudreve
Documentation=https://www.vidcss.com
After=network.target
Wants=network.target

[Service]
WorkingDirectory=/root
ExecStart=/root/cloudreve
Restart=on-abnormal
RestartSec=5s
KillMode=mixed

StandardOutput=null
StandardError=syslog

[Install]
WantedBy=multi-user.target

然后按esc键退出编辑模式,输入:wq再按回车键来保存。

接着分别运行下面三条命令:

systemctl daemon-reload
systemctl start cloudreve
systemctl enable cloudreve

登陆宝塔,添加网站

设置反向代理
代理名称:test
发送域名:$host
目标URL输入:http://127.0.0.1:5212,然后保存。

最后修改:2022 年 06 月 30 日 03 : 43 PM
如果觉得我的文章对你有用,请随意赞赏