1.青龙DOCKER
环境
Docker
代理 (尽量满足)
部署
Host方式
docker run -dit \
--name QL \
--hostname QL \
--restart always \
-p 5700:5700 \
-v $PWD/QL/config:/ql/config \
-v $PWD/QL/log:/ql/log \
-v $PWD/QL/db:/ql/db \
-v $PWD/QL/scripts:/ql/scripts \
-v $PWD/QL/jbot:/ql/jbot \
whyour/qinglong:latest
MacVlan方式
docker run -dit \
--name QL \
--hostname QL \
--restart always \
--net=macnet \
--ip=192.168.2.20 \
--dns=192.168.2.2 \
--mac-address C2:F2:9C:C5:B1:01 \
-v $PWD/QL/config:/ql/config \
-v $PWD/QL/log:/ql/log \
-v $PWD/QL/db:/ql/db \
-v $PWD/QL/scripts:/ql/scripts \
-v $PWD/QL/jbot:/ql/jbot \
whyour/qinglong:latest
2.各大佬的脚本
【lxk0301】
ql repo https://ghproxy.com/https://github.com/chinnkarahoi/jd_scripts.git "jd_" "activity|backUp" "^jd[^_]|USER"
【龙珠】
ql repo https://ghproxy.com/https://github.com/nianyuguai/longzhuzhu.git "qx"
【混沌】
ql repo https://ghproxy.com/https://github.com/whyour/hundun.git "quanx" "tokens|caiyun|didi|donate|fold|Env"
【passerby-b】(需要修改专用ck文件jddj_cookie.js)
ql repo https://github.com/passerby-b/JDDJ.git "jddj_" "scf_test_event" "jddj_cookie"
【温某某】
ql repo https://github.com/Wenmoux/scripts.git "jd"
【柠檬(胖虎)】
ql repo https://github.com/panghu999/panghu.git "jd_"
【zoopanda(动物园)】
ql repo https://github.com/zooPanda/zoo.git "zoo"
【hyzaw】
ql repo https://github.com/hyzaw/scripts.git "ddo_"
【翻翻乐提现单文件】
ql raw https://ghproxy.com/https://raw.githubusercontent.com/jiulan/platypus/main/scripts/jd_ffl.js
3.扫码自动添加COOKIE
检查环境
请确保你的环境中已经安装了青龙面板 2.0。
首先 cd 到青龙面板容器的映射目录。(一般为 /root)
cd /root
ls -l
如果发现有 QL 文件夹,即说明目录正确。
下载程序
请先安装 wget 和 unzip
//ubuntu
apt install wget unzip
//centos
yum install wget unzip -y
请按照你的 cpu 架构进行下载
//如果你是amd64架构(服务器,PC等)
wget https://github.com/huayu8/JDC/releases/download/1.0.2/linux_amd64.zip && unzip linux_amd64.zip
//如果你是arm架构(N1,路由器,树莓派等)
wget https://github.com/huayu8/JDC/releases/download/1.0.2/linux_arm.zip && unzip linux_arm.zip
其他架构或系统请自行编译
开始使用
chmod 777 JDC
./JDC
第一次运行,自动生成配置文件并且程序会自动退出。如果你没有修改过青龙面板的端口,可直接执行下一步。
如果不为默认端口,请自行修改 config.toml 文件
然后执行下面步骤
nohup ./JDC &
开始后台运行程序。程序默认端口为 5701。打开 http://ip:5701 即可看到面板
如果无法打开请检查端口是否放行。
更新教程
如果你已经安装了旧版程序更新时如下操作。
首先 kill 掉原来的程序。
//查看原程序PID,第一行第二列为程序的PID
ps -ajx|grep JDC
//结束程序(*改为你的PID)
kill -9 *****
然后删除原来的程序和 config.toml 文件
rm -rf JDC config.toml
下载新程序并执行一次
//如果你是amd64架构(服务器,PC等)
wget https://github.com/huayu8/JDC/releases/download/1.0.2/linux_amd64.zip && unzip linux_amd64.zip
//如果你是arm架构(N1,路由器,树莓派等)
wget https://github.com/huayu8/JDC/releases/download/1.0.2/linux_arm.zip && unzip linux_arm.zip
chmod 777 JDC
./JDC
生成新的配置文件后,如有需要请自行更改
运行新版本程序
nohup ./JDC &
扫码面板下载地址失效了
咋配置多节点?