GitHub:https://github.com/cloudreve/Cloudreve
官方文档:https://docs.cloudreve.org/getting-started/install
安装好宝塔面板,nginx + php7.3+mysql 5.7,添加网站做好域名解析
终端进入网站根目录,
centos一键安装脚本
wget https://gitee.com/jayson0201/webbackup/raw/master/centos_cloudinstall.sh && sh centos_cloudinstall.sh
Ubuntu一键安装脚本
wget https://gitee.com/jayson0201/webbackup/raw/master/Ubuntu_cloudinstall.sh && sh Ubuntu_cloudinstall.sh
如若未安装wget,执行
centos
yum install -y wget
ubuntu
apt install -y wget
查看状态
systemctl status cloudreve
启动
systemctl start cloudreve
停止
systemctl stop cloudreve
放行一个5212端口,
设置ssl,添加反向代理:
2、安装Aria2
这里用的逗比的脚本,使用命令:
wget -N --no-check-certificate https://raw.githubusercontent.com/ToyoDAdoubiBackup/doubi/master/aria2.sh && chmod +x aria2.sh && bash aria2.sh
#备用地址
wget -N --no-check-certificate https://www.moerats.com/usr/shell/Aria2/aria2.sh && chmod +x aria2.sh && bash aria2.sh
安装完成后,如果我们想修改密码、下载文件位置、端口的话,可以使用命令bash aria2.sh
,再选择修改配置即可,这里建议使用该脚本配置自动更新BT-Tracker
服务器,对下载BT
有加成。
3、安装AriaNg
这一步和安装OneIndex
差不多,先添加一个域名,不想用域名的可以在添加域名那里填上IP
或者IP:端口
,然后将AriaNg
程序上传到对应的根目录,可以使用命令:
#CentOS系统
yum install unzip -y
#这里以添加IP为例
#Debian/Ubuntu系统
apt-get install unzip -y
cd /home/wwwroot/
wget https://www.moerats.com/usr/down/aria-ng-0.2.0.zip && unzip aria-ng-0.2.0.zip
这时候我们就可以使用IP
访问AriaNg
界面了,或者IP:端口
,这取决于你添加域名的时候填的什么了。
添加rc.local开机自启的方法,把aria2加自启
1、添加rc-local.service
#以下为一整条命令,一起复制运行
cat > /etc/systemd/system/rc-local.service <<EOF
[Unit]
Description=/etc/rc.local
ConditionPathExists=/etc/rc.local
[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
StandardOutput=tty
RemainAfterExit=yes
SysVStartPriority=99
[Install]
WantedBy=multi-user.target
EOF
2、新建rc-local文件
#以下为一整条命令,一起复制运行
cat > /etc/rc.local <<EOF
#!/bin/sh -e
# @file /etc/rc.local
exit 0
EOF
3、添加权限并设置开机自启
chmod +x /etc/rc.local
systemctl enable rc-local
systemctl start rc-local.service
检查状态:
systemctl status rc-local.service
返回Active:active
信息,则成功。
添加自动启动: 记住添加在exit 0
之前
vi /etc/rc.local
aria2c –conf-path=/home/michael/.aria2/aria2.conf -D
作者:独行者阿杰
链接:https://www.jianshu.com/p/baa62cc9b785
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。