1 Star 0 Fork 10

yuan/jd-base

forked from 舞动的风/jd-base 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
install-panel.sh 773 Bytes
一键复制 编辑 原始数据 按行查看 历史
舞动的风 提交于 2021-01-31 20:19 . add install-panel.sh.
#!/bin/bash
#Author:SuperManito
ls /etc | grep redhat-release -qw
if [ $? -eq 0 ];then
yum -y install net-tools
else
apt -y install net-tools
fi
IP=`ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6 | awk '{print $2}' | tr -d "addr:"`
systemctl disable --now firewalld
cd /data/data/com.termux/files/home/storage/shared/jd
cp sample/auth.json config/auth.json
cd panel
npm install || npm install --registry=https://registry.npm.taobao.org
npm install -g pm2
pm2 start server.js
echo -e "\033[32m 本机访问 http://127.0.0.1:5678 \033[0m"
echo -e "\033[32m 局域网访问 http://$IP:5678 \033[0m"
echo -e "\033[32m 初始用户名:admin,初始密码:adminadmin \033[0m"
echo -e "\033[32m 启动命令: pm2 start server.js \033[0m"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mryuan123/jd-base.git
git@gitee.com:mryuan123/jd-base.git
mryuan123
jd-base
jd-base
v3

搜索帮助