Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qa-deploy-utils
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
QA
qa-deploy-utils
Commits
c67903f8
Commit
c67903f8
authored
Mar 01, 2017
by
智勇
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitabc.xyqb.com/QA/qa-deploy-utils
parents
22e754db
427ac861
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
114 additions
and
83 deletions
+114
-83
.gitignore
.gitignore
+1
-0
5_restart_by_name.sh
qa_shell_script/5_restart_by_name.sh
+17
-13
5_restart_by_type.sh
qa_shell_script/5_restart_by_type.sh
+17
-12
6_start_by_name.sh
qa_shell_script/6_start_by_name.sh
+17
-13
get_project_config.js
qa_shell_script/config_server/get_project_config.js
+41
-40
exception_sub_shell.sh
qa_shell_script/exception_sub_shell.sh
+20
-5
initial_mq.sh
qa_shell_script/rabbitmq/initial_mq.sh
+1
-0
No files found.
.gitignore
0 → 100644
View file @
c67903f8
/qa_shell_script/TEMP/*
qa_shell_script/5_restart_by_name.sh
View file @
c67903f8
...
...
@@ -71,21 +71,25 @@ function restartNodeProject()
{
project
=
$1
desc
=
`
node
$config_server
/get_project_config.js
-name
$project
-attr
desc
`
stop_command
=
`
node
$config_server
/get_project_config.js
-name
$project
-attr
command2
`
sh
$config_server
/show_info.sh
$project
重新启动
$desc
cd
$project_path
/
$project
forever stop
$project
forever stop
$project
-www
setup_path_temp
=
`
find ./
-maxdepth
2
-path
"./node_modules"
-prune
-o
-type
f
-name
"app.js"
-print
`
echo
"------setup_path_temp:
$setup_path_temp
"
echo
`
forever start
-a
-s
--uid
$project
${
setup_path_temp
}
`
setup_path_temp_for_appbackent
=
`
find ./
-maxdepth
2
-path
"./node_modules"
-prune
-o
-type
f
-name
"www"
-print
`
if
[
-n
"
$setup_path_temp_for_appbackent
"
]
;
then
echo
"-----project:
$project
while be run command: python
$python_project_path
--mode=beta --port=
$port
> /dev/null 2>&1 &"
echo
`
forever start
-a
-s
--uid
$project
-www
${
setup_path_temp_for_appbackent
}
`
fi
$stop_command
# forever stop $project
# forever stop $project-www
# pm2 stop $project
start_command
=
`
node
$config_server
/get_project_config.js
-name
$project
-attr
command
`
$start_command
# setup_path_temp=`find ./ -maxdepth 2 -path "./node_modules" -prune -o -type f -name "app.js" -print`
# echo "------setup_path_temp:$setup_path_temp"
#
# echo `forever start -a -s --uid $project ${setup_path_temp}`
#
# setup_path_temp_for_appbackent=`find ./ -maxdepth 2 -path "./node_modules" -prune -o -type f -name "www" -print`
# if [ -n "$setup_path_temp_for_appbackent" ];then
# echo "-----project:$project while be run command: python $python_project_path --mode=beta --port=$port > /dev/null 2>&1 &"
# echo `forever start -a -s --uid $project-www ${setup_path_temp_for_appbackent}`
# fi
}
function
restartPythonProject
()
...
...
qa_shell_script/5_restart_by_type.sh
View file @
c67903f8
...
...
@@ -67,21 +67,26 @@ function restartNodeProject()
for
project
in
${
projects
[@]
}
do
desc
=
`
node
$config_server
/get_project_config.js
-name
$project
-attr
desc
`
stop_command
=
`
node
$config_server
/get_project_config.js
-name
$project
-attr
command2
`
sh
$config_server
/show_info.sh
$project
重新启动
$desc
cd
$project_path
/
$project
forever stop
$project
forever stop
$project
-www
setup_path_temp
=
`
find ./
-maxdepth
2
-path
"./node_modules"
-prune
-o
-type
f
-name
"app.js"
-print
`
echo
"------setup_path_temp:
$setup_path_temp
"
echo
`
forever start
-a
-s
--uid
$project
${
setup_path_temp
}
`
setup_path_temp_for_appbackent
=
`
find ./
-maxdepth
2
-path
"./node_modules"
-prune
-o
-type
f
-name
"www"
-print
`
if
[
-n
"
$setup_path_temp_for_appbackent
"
]
;
then
echo
"-----project:
$project
while be run command: python
$python_project_path
--mode=beta --port=
$port
> /dev/null 2>&1 &"
echo
`
forever start
-a
-s
--uid
$project
-www
${
setup_path_temp_for_appbackent
}
`
fi
$stop_command
# forever stop $project
# forever stop $project-www
# pm2 stop $project
start_command
=
`
node
$config_server
/get_project_config.js
-name
$project
-attr
command
`
$start_command
# setup_path_temp=`find ./ -maxdepth 2 -path "./node_modules" -prune -o -type f -name "app.js" -print`
# echo "------setup_path_temp:$setup_path_temp"
#
# echo `forever start -a -s --uid $project ${setup_path_temp}`
#
# setup_path_temp_for_appbackent=`find ./ -maxdepth 2 -path "./node_modules" -prune -o -type f -name "www" -print`
# if [ -n "$setup_path_temp_for_appbackent" ];then
# echo "-----project:$project while be run command: python $python_project_path --mode=beta --port=$port > /dev/null 2>&1 &"
# echo `forever start -a -s --uid $project-www ${setup_path_temp_for_appbackent}`
# fi
done
}
...
...
qa_shell_script/6_start_by_name.sh
View file @
c67903f8
...
...
@@ -46,21 +46,25 @@ function restartNodeProject()
{
project
=
$1
desc
=
`
node
$config_server
/get_project_config.js
-name
$project
-attr
desc
`
stop_command
=
`
node
$config_server
/get_project_config.js
-name
$project
-attr
command2
`
sh
$config_server
/show_info.sh
$project
重新启动
$desc
cd
$project_path
/
$project
forever stop
$project
forever stop
$project
-www
setup_path_temp
=
`
find ./
-maxdepth
2
-path
"./node_modules"
-prune
-o
-type
f
-name
"app.js"
-print
`
echo
"------setup_path_temp:
$setup_path_temp
"
echo
`
forever start
-a
-s
--uid
$project
${
setup_path_temp
}
`
setup_path_temp_for_appbackent
=
`
find ./
-maxdepth
2
-path
"./node_modules"
-prune
-o
-type
f
-name
"www"
-print
`
if
[
-n
"
$setup_path_temp_for_appbackent
"
]
;
then
echo
"-----project:
$project
while be run command: python
$python_project_path
--mode=beta --port=
$port
> /dev/null 2>&1 &"
echo
`
forever start
-a
-s
--uid
$project
-www
${
setup_path_temp_for_appbackent
}
`
fi
$stop_command
# forever stop $project
# forever stop $project-www
# pm2 stop $project
start_command
=
`
node
$config_server
/get_project_config.js
-name
$project
-attr
command
`
$start_command
# setup_path_temp=`find ./ -maxdepth 2 -path "./node_modules" -prune -o -type f -name "app.js" -print`
# echo "------setup_path_temp:$setup_path_temp"
#
# echo `forever start -a -s --uid $project ${setup_path_temp}`
#
# setup_path_temp_for_appbackent=`find ./ -maxdepth 2 -path "./node_modules" -prune -o -type f -name "www" -print`
# if [ -n "$setup_path_temp_for_appbackent" ];then
# echo "-----project:$project while be run command: python $python_project_path --mode=beta --port=$port > /dev/null 2>&1 &"
# echo `forever start -a -s --uid $project-www ${setup_path_temp_for_appbackent}`
# fi
}
function
restartPythonProject
()
...
...
qa_shell_script/config_server/get_project_config.js
View file @
c67903f8
...
...
@@ -18,13 +18,14 @@ var users = [{}, {
var
pClass
=
function
()
{};
pClass
.
prototype
=
{
init
:
function
(
isActive
,
projectType
,
port
,
projectName
,
gitPath
,
logName
,
configFile
,
command
,
nodeVersion
,
userIndex
,
desc
,
auth
)
{
init
:
function
(
isActive
,
projectType
,
port
,
projectName
,
gitPath
,
logName
,
configFile
,
command
,
nodeVersion
,
userIndex
,
desc
,
auth
,
command2
)
{
this
.
name
=
projectName
;
this
.
type
=
projectType
;
this
.
git_path
=
"
http://
"
+
users
[
userIndex
].
name
+
"
:
"
+
users
[
userIndex
].
pwd
+
"
@gitabc.xyqb.com/
"
+
gitPath
+
"
/
"
+
projectName
+
"
.git
"
this
.
log_name
=
logName
;
this
.
config_file
=
configFile
;
this
.
command
=
command
;
this
.
command2
=
command2
;
this
.
node_version
=
nodeVersion
;
this
.
port
=
port
;
this
.
desc
=
desc
;
...
...
@@ -48,52 +49,52 @@ pClass.prototype = {
}
}
// projectName,projectType,port,gitPath,logName,configFile,command,nodeVersion
new
pClass
().
init
(
true
,
"
java
"
,
"
7003
"
,
"
xyqb
"
,
"
QG
"
,
"
xyqb.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
现金贷和白条-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7019
"
,
"
xyqb-mall
"
,
"
QG
"
,
"
mall.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
商城后台-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7010
"
,
"
xyqb-offline
"
,
"
QG
"
,
"
xyqb_offline.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
线下业务-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7042
"
,
"
xyqb-user2
"
,
"
head_group
"
,
"
xyqb_user.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
用户注册登录-V2-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7005
"
,
"
di-ting
"
,
"
QG
"
,
"
di_ting.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
风控审计-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7013
"
,
"
han-gu-guan
"
,
"
QG
"
,
"
han-gu-guan.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
用户注册登录-V1-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7015
"
,
"
jian-men-guan
"
,
"
QG
"
,
"
jian_men_guan.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
信审服务-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7028
"
,
"
black-hole
"
,
"
QG
"
,
"
black-hole.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
合同中心-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7006
"
,
"
gu-bei
"
,
"
QG
"
,
"
pay-center.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
支付中心-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7023
"
,
"
xyqb-quartz
"
,
"
QG
"
,
"
quartz.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
定时任务-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7021
"
,
"
spider-center
"
,
"
QG
"
,
"
spider-center.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
授信-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7037
"
,
"
cash-loan-flow
"
,
"
QG
"
,
"
cash_loan_flow.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
现金贷流量对接-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7012
"
,
"
financial-system
"
,
"
QG
"
,
"
financial_system.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
财务系统-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7034
"
,
"
fund-manage
"
,
"
QG
"
,
"
fund_manage.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
债转系统-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7029
"
,
"
gyxd
"
,
"
QG
"
,
"
gyxd.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
广源小贷-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7003
"
,
"
xyqb
"
,
"
QG
"
,
"
xyqb.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
现金贷和白条-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7019
"
,
"
xyqb-mall
"
,
"
QG
"
,
"
mall.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
商城后台-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7010
"
,
"
xyqb-offline
"
,
"
QG
"
,
"
xyqb_offline.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
线下业务-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7042
"
,
"
xyqb-user2
"
,
"
head_group
"
,
"
xyqb_user.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
用户注册登录-V2-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7005
"
,
"
di-ting
"
,
"
QG
"
,
"
di_ting.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
风控审计-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7013
"
,
"
han-gu-guan
"
,
"
QG
"
,
"
han-gu-guan.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
用户注册登录-V1-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7015
"
,
"
jian-men-guan
"
,
"
QG
"
,
"
jian_men_guan.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
信审服务-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7028
"
,
"
black-hole
"
,
"
QG
"
,
"
black-hole.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
合同中心-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7006
"
,
"
gu-bei
"
,
"
QG
"
,
"
pay-center.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
支付中心-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7023
"
,
"
xyqb-quartz
"
,
"
QG
"
,
"
quartz.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
定时任务-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7021
"
,
"
spider-center
"
,
"
QG
"
,
"
spider-center.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
授信-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7037
"
,
"
cash-loan-flow
"
,
"
QG
"
,
"
cash_loan_flow.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
现金贷流量对接-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7012
"
,
"
financial-system
"
,
"
QG
"
,
"
financial_system.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
财务系统-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7034
"
,
"
fund-manage
"
,
"
QG
"
,
"
fund_manage.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
债转系统-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7029
"
,
"
gyxd
"
,
"
QG
"
,
"
gyxd.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
广源小贷-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7038
"
,
"
merchant-backend
"
,
"
QG
"
,
"
merchant.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
商户后台-server
"
,
"
凌子华/陈东亮
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7031
"
,
"
redpacket
"
,
"
QG
"
,
"
redpacket.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
红包系统-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7044
"
,
"
finance-api
"
,
"
bo.wang
"
,
"
finance-api.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
财务系统-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7045
"
,
"
check-accounts
"
,
"
QG
"
,
"
check_accounts.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
对账系统-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7014
"
,
"
du-jiang-yan
"
,
"
QG
"
,
"
du_jiang_yan.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
第三方对接导流-server
"
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7031
"
,
"
redpacket
"
,
"
QG
"
,
"
redpacket.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
红包系统-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7044
"
,
"
finance-api
"
,
"
bo.wang
"
,
"
finance-api.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
财务系统-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7045
"
,
"
check-accounts
"
,
"
QG
"
,
"
check_accounts.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
对账系统-server
"
,
""
);
new
pClass
().
init
(
true
,
"
java
"
,
"
7014
"
,
"
du-jiang-yan
"
,
"
QG
"
,
"
du_jiang_yan.log
"
,
"
application.properties
"
,
null
,
null
,
2
,
"
第三方对接导流-server
"
,
""
);
// new pClass(true,"java","7027","sms-center","QG","sms-center.log",null,null,null,"短信中心-server");
// ui----
// projectName,projectType,port,gitPath,logName,configFile,command,nodeVersion
new
pClass
().
init
(
true
,
"
ui
"
,
"
7032
"
,
"
op-ui
"
,
"
QG
"
,
null
,
"
src/js/env.config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
运营系统-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7040
"
,
"
activity-ui
"
,
"
QG
"
,
null
,
"
src/app/config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
活动中心-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7011
"
,
"
financial-system-ui
"
,
"
QG
"
,
null
,
"
src/js/env.config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
财务系统-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7032
"
,
"
op-ui
"
,
"
QG
"
,
null
,
"
src/js/env.config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
运营系统-ui
"
,
""
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7040
"
,
"
activity-ui
"
,
"
QG
"
,
null
,
"
src/app/config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
活动中心-ui
"
,
""
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7011
"
,
"
financial-system-ui
"
,
"
QG
"
,
null
,
"
src/js/env.config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
财务系统-ui
"
,
""
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7030
"
,
"
gyxd-ui
"
,
"
QG
"
,
null
,
"
src/js/env.config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
广源小贷-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7008
"
,
"
offline-ui
"
,
"
QG
"
,
null
,
"
src/app/config/env.config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
线下白条-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7035
"
,
"
funding-corp-op-ui
"
,
"
QG
"
,
null
,
"
src/js/env.config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
白条债转系统-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7007
"
,
"
paycenter-ui
"
,
"
QG
"
,
null
,
"
src/app/config/env.config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
支付中心-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7043
"
,
"
xyqb-user-ui
"
,
"
head_group
"
,
null
,
"
src/app/config.js
"
,
"
npm run qa
"
,
"
node7
"
,
1
,
"
用户注册登录-V2-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7039
"
,
"
merchant-op-ui
"
,
"
QG
"
,
null
,
"
src/js/env.config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
商户系统-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7004
"
,
"
di-ting-ui
"
,
"
QG
"
,
null
,
"
client/app/config.js
"
,
"
grunt build
"
,
"
node4
"
,
1
,
"
信审-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7020
"
,
"
spider-center-ui
"
,
"
QG
"
,
null
,
"
src/app/config/env.config.js
"
,
"
npm run qa
"
,
"
node7
"
,
1
,
"
授信中心-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7002
"
,
"
qgbc-ui
"
,
"
QG
"
,
null
,
"
src/app/config/env.config.js
"
,
"
npm run build_production
"
,
"
node7
"
,
1
,
"
现金贷和白条-白条-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7001
"
,
"
xyqb-ui
"
,
"
QG
"
,
null
,
"
client/app/config.js
"
,
"
grunt build
"
,
"
node4
"
,
1
,
"
现金贷和白条-现金贷-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7046
"
,
"
activity-op-ui
"
,
"
QG
"
,
null
,
"
src/js/env.config.js
"
,
"
gulp build
"
,
"
node7
"
,
1
,
"
优惠券管理后台-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7048
"
,
"
order-op-ui
"
,
"
OP
"
,
null
,
"
src/js/env.config.js
"
,
"
gulp build
"
,
"
node7
"
,
1
,
"
订单系统-ui
"
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7008
"
,
"
offline-ui
"
,
"
QG
"
,
null
,
"
src/app/config/env.config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
线下白条-ui
"
,
""
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7035
"
,
"
funding-corp-op-ui
"
,
"
QG
"
,
null
,
"
src/js/env.config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
白条债转系统-ui
"
,
""
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7007
"
,
"
paycenter-ui
"
,
"
QG
"
,
null
,
"
src/app/config/env.config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
支付中心-ui
"
,
""
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7043
"
,
"
xyqb-user-ui
"
,
"
head_group
"
,
null
,
"
src/app/config.js
"
,
"
npm run qa
"
,
"
node7
"
,
1
,
"
用户注册登录-V2-ui
"
,
""
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7039
"
,
"
merchant-op-ui
"
,
"
QG
"
,
null
,
"
src/js/env.config.js
"
,
"
npm run build
"
,
"
node7
"
,
1
,
"
商户系统-ui
"
,
""
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7004
"
,
"
di-ting-ui
"
,
"
QG
"
,
null
,
"
client/app/config.js
"
,
"
grunt build
"
,
"
node4
"
,
1
,
"
信审-ui
"
,
""
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7020
"
,
"
spider-center-ui
"
,
"
QG
"
,
null
,
"
src/app/config/env.config.js
"
,
"
npm run qa
"
,
"
node7
"
,
1
,
"
授信中心-ui
"
,
""
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7002
"
,
"
qgbc-ui
"
,
"
QG
"
,
null
,
"
src/app/config/env.config.js
"
,
"
npm run build_production
"
,
"
node7
"
,
1
,
"
现金贷和白条-白条-ui
"
,
""
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7001
"
,
"
xyqb-ui
"
,
"
QG
"
,
null
,
"
client/app/config.js
"
,
"
grunt build
"
,
"
node4
"
,
1
,
"
现金贷和白条-现金贷-ui
"
,
""
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7046
"
,
"
activity-op-ui
"
,
"
QG
"
,
null
,
"
src/js/env.config.js
"
,
"
gulp build
"
,
"
node7
"
,
1
,
"
优惠券管理后台-ui
"
,
""
);
new
pClass
().
init
(
true
,
"
ui
"
,
"
7048
"
,
"
order-op-ui
"
,
"
OP
"
,
null
,
"
src/js/env.config.js
"
,
"
gulp build
"
,
"
node7
"
,
1
,
"
订单系统-ui
"
,
""
);
// node
new
pClass
().
init
(
true
,
"
node
"
,
"
7018
"
,
"
AppBackend
"
,
"
QG
"
,
null
,
"
config/environment/test.js
"
,
"
forever start -a -s --uid AppBackend bin/www
"
,
null
,
1
,
"
APP后台服务-server
"
);
new
pClass
().
init
(
true
,
"
node
"
,
"
7041
"
,
"
activity-op
"
,
"
QG
"
,
null
,
"
src/config.js
"
,
"
forever start -a -s --uid activity-op src/app.js
"
,
null
,
1
,
"
优惠券中心-server
"
);
new
pClass
().
init
(
true
,
"
node
"
,
"
7047
"
,
"
op-api
"
,
"
OP
"
,
null
,
"
src/config.js
"
,
"
pm2 start ./bin/server.js --node-args=
\"
--harmony
\"
-n op-api
"
,
null
,
1
,
"
系统Api Gateway-server
"
);
new
pClass
().
init
(
true
,
"
node
"
,
"
7018
"
,
"
AppBackend
"
,
"
QG
"
,
null
,
"
config/environment/test.js
"
,
"
forever start -a -s --uid AppBackend bin/www
"
,
null
,
1
,
"
APP后台服务-server
"
,
""
,
"
forever stop AppBackend
"
);
new
pClass
().
init
(
true
,
"
node
"
,
"
7041
"
,
"
activity-op
"
,
"
QG
"
,
null
,
"
src/config.js
"
,
"
forever start -a -s --uid activity-op src/app.js
"
,
null
,
1
,
"
优惠券中心-server
"
,
"
forever stop activity-op
"
);
new
pClass
().
init
(
true
,
"
node
"
,
"
7047
"
,
"
op-api
"
,
"
OP
"
,
null
,
"
src/config.js
"
,
"
sh start.sh
"
,
null
,
1
,
"
系统Api Gateway-server
"
,
"
sh stop.sh
"
);
//python
new
pClass
().
init
(
true
,
"
python
"
,
"
7022
"
,
"
qin-qiong
"
,
"
QG
"
,
null
,
"
config/beta/config.properties
"
,
null
,
null
,
1
,
"
加密解密-server
"
);
new
pClass
().
init
(
true
,
"
python
"
,
"
7033
"
,
"
xyqb-query
"
,
"
QG
"
,
null
,
"
server/config/beta/config.ini
"
,
null
,
null
,
1
,
"
query-server
"
);
new
pClass
().
init
(
false
,
"
python
"
,
"
7027
"
,
"
msg-center
"
,
"
QG
"
,
null
,
"
server/config/beta/config.ini
"
,
null
,
null
,
1
,
"
短信中心-以前的sms-center
"
);
new
pClass
().
init
(
true
,
"
python
"
,
"
7022
"
,
"
qin-qiong
"
,
"
QG
"
,
null
,
"
config/beta/config.properties
"
,
null
,
null
,
1
,
"
加密解密-server
"
,
""
);
new
pClass
().
init
(
true
,
"
python
"
,
"
7033
"
,
"
xyqb-query
"
,
"
QG
"
,
null
,
"
server/config/beta/config.ini
"
,
null
,
null
,
1
,
"
query-server
"
,
""
);
new
pClass
().
init
(
false
,
"
python
"
,
"
7027
"
,
"
msg-center
"
,
"
QG
"
,
null
,
"
server/config/beta/config.ini
"
,
null
,
null
,
1
,
"
短信中心-以前的sms-center
"
,
""
);
var
temp
=
""
;
...
...
qa_shell_script/exception_sub_shell.sh
View file @
c67903f8
...
...
@@ -37,15 +37,30 @@ function tranceConfig()
}
tranceConfig java
"pay.debug=0"
"pay.debug=1"
"192.168.4.13"
"xyqb-mall.properties"
tranceConfig java
"sms.is.debug=1"
"sms.is.debug=0"
"192.168.4.13"
"*.properties"
#tranceConfig java "pay.debug=0" "pay.debug=1" "192.168.4.13" "xyqb-mall.properties"
tranceConfig java
"pay.debug=0"
"pay.debug=1"
"192.168.4.151"
"xyqb-mall.properties"
#tranceConfig java "pay.debug=0" "pay.debug=1" "192.168.4.152" "xyqb-mall.properties"
#tranceConfig java "192.168.4.3" "192.168.4.17" "192.168.4.17" "*"
#tranceConfig java "sms.is.debug=1" "sms.is.debug=0" "192.168.4.24" "xyqb.properties"
#tranceConfig java "sms.is.debug=1" "sms.is.debug=0" "192.168.4.24" "di-ting.properties"
#tranceConfig java "xyqb.is.debug=1" "xyqb.is.debug=0" "192.168.4.24" "xyqb.properties"
tranceConfig node
"192.168.4.3"
"192.168.4.107"
"192.168.4.12"
"AppBackend.js"
tranceConfig java
"sms.is.debug=1"
"sms.is.debug=0"
"192.168.4.151"
"*.properties"
#tranceConfig node "192.168.4.3" "192.168.4.107" "192.168.4.12" "AppBackend.js"
tranceConfig java
"xyqb.is.debug=1"
"xyqb.is.debug=0"
"192.168.4.151"
"xyqb.properties"
tranceConfig java
"sms.is.debug=1"
"sms.is.debug=0"
"192.168.4.12"
"*.properties"
#tranceConfig ui "7047" "12047" "192.168.4.12" "merchant-op-ui.js"
tranceConfig node
"d45o0qd"
"5exp2xo"
"192.168.4.152"
"op-api.js"
tranceConfig java
"7007"
"1507"
"192.168.4.15"
"gu-bei.properties"
qa_shell_script/rabbitmq/initial_mq.sh
View file @
c67903f8
...
...
@@ -83,4 +83,5 @@ add_queues mall refund
add_queues mall refundFeed
add_queues financial_system refundInfo
add_queues bt_loan bt_loan_queue
add_queues financial_system save_redpacket
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment