Commit 8e2a3024 authored by qa_quantgroup's avatar qa_quantgroup

dfs

parent a50dfde7
......@@ -72,7 +72,7 @@ new pClass().init(true, "java", "7005", "rapi.xyqb.com", "di-ting", false, "QG",
new pClass().init(true, "java", "7013", "auth.xyqb.com", "han-gu-guan", false, "QG", "han-gu-guan.log", "application.properties", "--worker 1 --currentWorker 1 -t -ts > /dev/null 2>&1 &", null, 2, "用户注册登录-V1-server", "", "", "");
new pClass().init(true, "java", "7015", "", "jian-men-guan", false, "QG", "jian_men_guan.log", "application.properties", "--worker 1 --currentWorker 1 -t -ts > /dev/null 2>&1 &", null, 2, "信审服务-server", "", "", "");
new pClass().init(true, "java", "7028", "", "black-hole", false, "QG", "black-hole.log", "application.properties", "--worker 1 --currentWorker 1 -t -ts > /dev/null 2>&1 &", null, 2, "合同中心-server", "", "", "");
new pClass().init(true, "java", "7006", "payapi.xyqb.com", "gu-bei", false, "funding", "pay-center.log", "application.properties", "--worker 1 --currentWorker 1 -t -ts > /dev/null 2>&1 &", null, 2, "支付中心-server", "", "", "");
new pClass().init(true, "java", "7006", "payapi.xyqb.com", "gu-bei", true, "funding", "pay-center.log", "application.properties", "--worker 1 --currentWorker 1 -t -ts > /dev/null 2>&1 &", null, 2, "支付中心-server", "", "", "");
new pClass().init(true, "java", "7023", "", "xyqb-quartz", false, "QG", "quartz.log", "application.properties", "--worker 1 --currentWorker 1 -t -ts > /dev/null 2>&1 &", null, 2, "定时任务-server", "", "", "");
new pClass().init(true, "java", "7021", "scapi.xyqb.com", "spider-center", false, "QG", "spider-center.log", "application.properties", "--worker 1 --currentWorker 1 -t -ts > /dev/null 2>&1 &", null, 2, "授信-server", "", "", "");
new pClass().init(true, "java", "7037", "qapi.xyqb.com", "cash-loan-flow", false, "QG", "cash_loan_flow.log", "application.properties", "--worker 1 --currentWorker 1 -t -ts > /dev/null 2>&1 &", null, 2, "现金贷流量对接-server", "", "", "");
......
......@@ -158,6 +158,7 @@ tranceConfig java "139.198.2.95:2231" "192.168.4.22:7031" "192.168.4.22" "xyqb.p
#4.156
tranceConfig java "http:\/\/192.168.4.241\/" "http:\/\/221.207.229.3:17500\/wlpf\/HttpServer\/XFXD_INPUT_SVR\/" "192.168.4.156" "baitiao-zhitou.properties"
tranceConfig java "http:\/\/192.168.4.156:7017\/eureka\/" "http:\/\/192.168.4.152:7017\/eureka\/" "192.168.4.156" "baitiao.properties"
#微信环境修改,请勿删除,可以注释
tranceConfig java "wx89894cd83d117b26" "wx5b2e77c58fdcf1a5" "192.168.4.22" "xyqb-user2.properties"
......
......@@ -20,6 +20,12 @@ function addFileHead()
echo "local_port = 10087" >> $1
echo "subdomain = company-241" >> $1
echo " " >> $1
echo "[auth-center-193]" >> $1
echo "type = http" >> $1
echo "local_ip = 192.168.4.193" >> $1
echo "local_port = 8099" >> $1
echo "subdomain = auth-center-38" >> $1
echo " " >> $1
}
addFileHead $filename
......
#!/bin/bash
redis-cli -p 6379 FLUSHALL
redis-cli -p 6380 FLUSHALL
redis-cli -p 6381 FLUSHALL
redis-cli -p 6382 FLUSHALL
redis-cli -p 6383 FLUSHALL
port=$1
if [ -n "$port" ];then
redis-cli -p $port FLUSHALL
else
redis-cli -p 6379 FLUSHALL
redis-cli -p 6380 FLUSHALL
redis-cli -p 6381 FLUSHALL
redis-cli -p 6382 FLUSHALL
redis-cli -p 6383 FLUSHALL
fi
......@@ -24,7 +24,7 @@ function closeloan()
echo "user_id=$user_id"
#更新loan_application_history表中的is_active=0
update_sql="update ${TABLENAME} set is_active=0 where user_id=${user_id}"
update_sql="update ${TABLENAME} set is_active=0 where user_id=${user_id} and is_active=1 and business_type=0"
mysql $mysqld ${DBNAME} -e "${update_sql}"
echo "done!!! $date"
break
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment