FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cloudstack/test/scripts/deploycluster.sh at master · insom/cloudstack · GitHub
This repository was archived by the owner on Aug 11, 2020. It is now read-only.
insom
/
cloudstack
Public archive
forked from
apache/cloudstack
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cloudstack
/
test
/
scripts
/
deploycluster.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
77 lines (53 loc) · 2.52 KB
Breadcrumbs
cloudstack
/
test
/
scripts
/
deploycluster.sh
Copy path
File metadata and controls
executable file
·
77 lines (53 loc) · 2.52 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!
/usr/bin/env bash
#
Licensed to the Apache Software Foundation (ASF) under one
#
or more contributor license agreements. See the NOTICE file
#
distributed with this work for additional information
#
regarding copyright ownership. The ASF licenses this file
#
to you under the Apache License, Version 2.0 (the
#
"License"); you may not use this file except in compliance
#
with the License. You may obtain a copy of the License at
#
#
http://www.apache.org/licenses/LICENSE-2.0
#
#
Unless required by applicable law or agreed to in writing,
#
software distributed under the License is distributed on an
#
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
#
KIND, either express or implied. See the License for the
#
specific language governing permissions and limitations
#
under the License.
set
-x
usage
() {
printf
"
Usage: %s: [-f] [-d] [-i] \n
"
$(
basename
$0
)
>&2
}
path=
db=
ips=
while
getopts
'
p:d:i:
'
OPTION
do
case
$OPTION
in
p) path=
"
$OPTARG
"
;;
d) db=
"
$OPTARG
"
;;
i) ips=
"
$OPTARG
"
;;
?
) usage
esac
done
deploy_server
() {
echo
"
Deploying management server software on remote machine
$1
"
rsync -avzh -e ssh
$path
/cloudstack-oss root@
$1
:/root/
if
[
$?
-gt
0 ]
;
then
echo
"
failed to rsync software between
$path
/cloudstack-oss and and remote machine
$1
"
;
return
2
;
fi
ssh root@
$1
"
cd /root/cloudstack-oss && ant clean build-all deploy-server
"
if
[
$?
-gt
0 ]
;
then
echo
"
failed to deploy cluster on
$1
"
;
return
2
;
fi
ssh root@
$1
"
dir=
\`
cat ~/.bashrc | grep 'export CATALINA_HOME' | awk -F '=' '{ print
\$
2}'
\`
&& file=
\$
dir/conf/db.properties && sed '/cluster.node.IP/ d'
\$
file > db.properties1; dos2unix db.properties1; mv -f db.properties1
\$
file; echo \cluster.node.IP=
$1
>>
\$
file && file=
\$
dir/conf/db.properties && sed '/db.cloud.host/ d'
\$
file > db.properties1; dos2unix db.properties1; mv -f db.properties1
\$
file; echo \db.cloud.host=
$db
>>
\$
file && file=
\$
dir/conf/db.properties && sed '/db.usage.host/ d'
\$
file > db.properties1; dos2unix db.properties1; mv -f db.properties1
\$
file; echo \db.usage.host=
$db
>>
\$
file
"
if
[
$?
-gt
0 ]
;
then
echo
"
failed to setup db.properties file on remote
$1
"
;
return
2
;
fi
#
ssh root@$1 "cd /root/cloudstack-oss && nohup ant run &"
#
if [ $? -gt 0 ]; then echo "failed to start the softare on remote $1"; return 2; fi
echo
"
Remote management server is deployed as a part of cluster setup; you have to start it manually by logging in remotely
"
}
export
IFS=
"
,
"
for
ip
in
$ips
;
do
echo
"
$ip
"
deploy_server
$ip
done
Back
|
FazBrowse Home
|
New Git URL