Nilanjdc installation latest tutorial

The original author NolanHzy deleted the library, and now all the installation tutorials on the Internet are invalid, because the source code and image cannot be pulled. The mirror image is the backup image of nvjdc 2.3, the source code is backed up, and all the information is in the 914535027 lazy welfare link
Get Rich Script Technology > Exchange

Source code deployment

After downloading the source code and image in the group, transfer it to the root user directory of the server,
insert image description here
install unzip, and decompress the source code

yum install unzip;
unzip -d /root/nolanjdc 诺兰2.4源码.zip;

There are already configuration files in the source code package, just modify them directly according to your needs

vi /root/nolanjdc/Config/Config.json;
{
  ///浏览器最多几个网页
  "MaxTab": "4",
  //网站标题
  "Title": "NolanJDCloud",
  //回收时间分钟 不填默认3分钟
  "Closetime": "5",
  //网站公告
  "Announcement": "为提高账户的安全性,请关闭免密支付。",
  //Proxy 支持不带密码的socks5 以及http
  ///http  Proxy 只需要填写 ip:端口
  /// Socks5 需要填写socks5://ip:端口 不能填写下方账户密码
  "Proxy": "",
  //Proxy帐号
  "ProxyUser": "",
  //Proxy密码
  "ProxyPass": "",
  ///开启打印等待日志卡短信验证登陆 可开启 拿到日志群里回复 默认不要填写
  "Debug": "",
  ///自动滑块次数5次 5次后手动滑块 可设置为0默认手动滑块
  "AutoCaptchaCount": "2",
  ///XDD PLUS Url  http://ip:端口/api/login/smslogin
  "XDDurl": "",
  ///xddToken
  "XDDToken": "",
  ///登陆预警 0 0 12 * * ?  每天中午十二点 https://www.bejson.com/othertools/cron/ 表达式在线生成网址
  "ExpirationCron": " 0 0 12 * * ?",
  ///个人资产 0 0 10,20 * * ?  早十点晚上八点
  "BeanCron": "0 0 10,20 * * ?",
  // ======================================= WxPusher 通知设置区域 ===========================================
  // 此处填你申请的 appToken. 官方文档:https://wxpusher.zjiecode.com/docs
  // WP_APP_TOKEN 可在管理台查看: https://wxpusher.zjiecode.com/admin/main/app/appToken
  // MainWP_UID 填你自己uid
  ///这里的通知只用于用户登陆 删除 是给你的通知
  "WP_APP_TOKEN": "",
  "MainWP_UID": "",
  // ======================================= pushplus 通知设置区域 ===========================================
  ///Push Plus官方网站:http" //www.pushplus.plus  只有青龙模式有用
  ///下方填写您的Token,微信扫码登录后一对一推送或一对多推送下面的token,只填" "PUSH_PLUS_TOKEN",
  "PUSH_PLUS_TOKEN": "",
  //下方填写您的一对多推送的 "群组编码" ,(一对多推送下面->您的群组(如无则新建)->群组编码)
  "PUSH_PLUS_USER": "",
  ///青龙配置  注意对接XDD 对接芝士 设置为"Config":[]
  "Config": []

}

Create a chromium directory and download chromium

cd /root/nolanjdc && mkdir -p  .local-chromium/Linux-884014 && cd .local-chromium/Linux-884014
wget https://mirrors.huaweicloud.com/chromium-browser-snapshots/Linux_x64/884014/chrome-linux.zip && unzip chrome-linux.zip 
rm  -f chrome-linux.zip

docker image import

Because the author of Nolan deleted the image, only the backup image can be used, and the image is imported by executing the import command at 914535027
Get Rich Script Technology > Exchange

cd /root
docker load < nolan2.3.tar.gz

import complete
Execute docker imagesand you can see that the image already exists
insert image description here
Create a container and start

cd  /root/nolanjdc

Note here that you can copy all of them directly to the command line. Don’t be clever and remove the newline. 5703 is the port you expose to the outside world, and you can change it according to your needs.

sudo docker run   --name nolanjdc -p 5703:80 -d  -v  "$(pwd)":/app \
-v /etc/localtime:/etc/localtime:ro \
-it --privileged=true nolanhzy/nvjdc:latest

View container startup

docker ps -a

insert image description here
View startup log

docker logs -f nolanjdc

Start successfully

Enter ip:5703 in the browser to access. If you can’t open it, check whether the firewall has released ports. If you confirm the released ports, you can restart and try.

docker restart nolanjdc

The installation is complete!
If you have any questions, please leave a message or send a private message. All the information is in the link of
914535027 Lazy Welfare.
Get Rich Script Technology > Exchange

Guess you like

Origin blog.csdn.net/qq_41846013/article/details/122703218
Recommended