青龙面板安装教程
青龙面板 简单介绍
青龙面板是一套基于 docker 的定时任务执行系统,可以运行一些脚本库,简单来说这东西适合白嫖各种活动,最多的使用场景就是京东每日自动领京豆程序,每天大概可以领取60~100+京豆。因为脚本要定时运行,所以最好安装在服务器上,1核1G的服务器完全够用,系统方面选择 CentOS 7.5 左右就行,接下来的教程都基于上述条件进行搭建的。
青龙面板安装教程
第一步,安装 Docker,已经安装 Docker 的可以跳过这一步,没有安装的可以使用以下脚本命令直接安装 Docker。
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
or
curl -sSL https://get.daocloud.io/docker | sh
第二步,安装 Docker 后,记得配置开机启动。
sudo systemctl start docker #启动
sudo systemctl enable docker #配置开机自启
第三步,拉取镜像,获取最新版的青龙镜像,有 Docker 的直接执行这一步拉取镜像,不明白的,直接复制命令然后回车。
docker pull whyour/qinglong:latest
第四步,部署镜像,复制以下命令,然后回车执行,其中**-p 5600:5600 **是访问青龙面板的端口号,记得在服务器防火墙设置中放行5600端口。
docker run -dit \
-v $PWD/ql/config:/ql/config \
-v $PWD/ql/log:/ql/log \
-v $PWD/ql/db:/ql/db \
-p 5600:5600 \
--name qinglong \
--hostname qinglong \
--restart always \
whyour/qinglong:latest
第五步,执行如下命令查看账号及密码。
docker exec -it qinglong cat /ql/config/auth.json
第六步,访问 web 青龙面板。PS:通知方式直接跳过,当然你也可以配置,比较麻烦。
http:// 你的服务器IP :5600
安装依赖
docker exec -it qinglong bash
curl -fsSL https://ghproxy.com/https://raw.githubusercontent.com/bean661/utils/main/QLOneKeyDependency.sh | sh
拉取脚本
docker exec -it qinglong bash
脚本
【Faker集合仓库】
ql repo https://ghproxy.com/https://github.com/shufflewzc/faker2.git "jd_|jx_|getJDCookie" "activity|backUp" "^jd[^_]|USER|ZooFaker_Necklace"
【curtinlv仓库】
ql repo https://github.com/curtinlv/JD-Script.git
【star】
ql repo https://github.com/star261/jd.git "scripts" "code"
【怨念集合仓库】
ql repo https://hub.fastgit.org/yuannian1112/jd_scripts.git "jd_|jx_|getJDCookie" "activity|backUp" "^jd[^_]|USER|utils"
【ddo(hyzaw)】
ql repo https://ghproxy.com/https://github.com/shufflewzc/hyzaw.git "ddo_"
【柠檬(胖虎)】
ql repo https://github.com/panghu999/panghu.git "jd_"
【温某某】
ql repo https://ghproxy.com/https://github.com/shufflewzc/Wenmoux.git
【混沌】
ql repo https://github.com/whyour/hundun.git "quanx" "tokens|caiyun|didi|donate|fold|Env"
青龙面板 基础命令
一般用不到,大部分操作可以在 web 端中进行,下面命令简单了解就好。
#更新青龙
docker exec -it qinglong ql update
#更新青龙并编译
docker exec -it qinglong ql restart
#拉取自定义仓库
docker exec -it qinglong ql repo https://ghproxy.com/https://github.com/whyour/hundun.git "quanx" "tokens|caiyun|didi|donate|fold|Env"
#拉取单个脚本
docker exec -it qinglong ql raw https://ghproxy.com/https://raw.githubusercontent.com/moposmall/Script/main/Me/jx_cfd.js
#删除7天前的所有日志
docker exec -it qinglong ql rmlog 7
#启动bot
docker exec -it qinglong ql bot
#导出互助码
docker exec -it qinglong ql code
#通知测试
docker exec -it qinglong notify test test
#立即执行脚本
docker exec -it qinglong task test.js now
#并行执行脚本
docker exec -it qinglong task test.js conc
GitHub Discussions