-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeploy-be.sh
executable file
·142 lines (125 loc) · 4.08 KB
/
deploy-be.sh
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!/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.
#################################################################################
# This script is used to deploy Apache Doris(incubating) Backend
#
# Usage:
# sh deploy-be.sh 1 /data1/palo palo /usr/local/src/output /data1/palo_be_log
#
# You need acknowledge following items before run it:
# - Execute this script by root account;
# - Supervisor have been installed previously;
#################################################################################
# Usage
Usage() {
echo "deploy-be.sh [be_id] [be_data_path] [be_owner] [palo_output_path] [be_log_path]"
echo "Eg: sh deploy-be.sh 1 /data1/palo palo /usr/local/src/output /data1/palo_be_log"
return 0
}
# Check input parameters
if [ $# -eq 1 ]; then
if [ "$1" = "-h" ]; then
Usage
exit 0
else
Usage
exit -1
fi
elif [ $# -ne 5 ]; then
Usage
exit -1
fi
# Check `be_id` is number
re='^[0-9]$'
if ! [[ $1 =~ $re ]]; then
echo "error: [be_id] should be number between 0~9!" >&2;
exit 1
fi
# Confirm BE parameters
echo "BE settings:"
echo "be_id: $1"
echo "be_data_path: $2"
echo "be_owner: $3"
echo "palo_output_path: $4"
echo "be_log_path: $5"
read -p "If continue, press y..." -n 1 -r
echo # (optional) move to a new line
if [[ ! $REPLY =~ ^[Yy]$ ]]
then
exit 1
fi
# Add BE owner
echo "Add BE owner..."
useradd $3
# Initial BE directory
echo "Initial BE directory..."
mkdir /home/$3/be$1 -pv
cp -rf $4/be/* /home/$3/be$1/
chown -R $3:$3 /home/$3/
# Initial BE data directory
echo "Initial BE data directory..."
mkdir $2 -pv
chown -R $3:$3 $2
# Initial BE log directory
echo "Initial BE log directory..."
mkdir $5 -pv
chown -R $3:$3 $5
# Build BE log softlink
echo "Build BE log softlink..."
ln -s $5 /home/$3/be$1/log
chown $3:$3 /home/$3/be$1/log
# Modify BE conf file
echo "Modify BE conf file..."
cp -rf /home/$3/be$1/conf/be.conf /home/$3/be$1/conf/be.conf.src
chown $3:$3 /home/$3/be$1/conf/be.conf.src
sed -i "s,be_port = 9060,be_port = 906$1,g" /home/$3/be$1/conf/be.conf
sed -i "s,be_rpc_port = 9070,be_rpc_port = 907$1,g" /home/$3/be$1/conf/be.conf
sed -i "s,webserver_port = 8040,webserver_port = 804$1,g" /home/$3/be$1/conf/be.conf
sed -i "s,heartbeat_service_port = 9050,heartbeat_service_port = 905$1,g" /home/$3/be$1/conf/be.conf
sed -i "s,brpc_port = 8060,brpc_port = 806$1,g" /home/$3/be$1/conf/be.conf
sed -i "s,/home/disk1/palo;/home/disk2/palo,$2,g" /home/$3/be$1/conf/be.conf
# Modify BE bin file
echo "Modify BE bin file..."
cp -rf /home/$3/be$1/bin/start_be.sh /home/$3/be$1/bin/start_be_hup.sh
chown $3:$3 /home/$3/be$1/bin/start_be_hup.sh
sed -i "s,/dev/null &,/dev/null,g" /home/$3/be$1/bin/start_be_hup.sh
# Add BE settings to supervisor file
echo "Update BE settings to supervisor conf..."
cat << EOF >> /etc/supervisord.d/palo.conf
[program:palo_be$1]
command=/home/$3/be$1/bin/start_be_hup.sh
user=$3
directory=/home/$3
stopsignal=INT
stopasgroup=true
killasgroup=true
log_stderr=true
stdout_logfile=/home/$3/be$1/log/palo_be$1.log
stderr_logfile=/home/$3/be$1/log/palo_be$1.log
EOF
# Add BE supervisor log
echo "Add BE supervisor log..."
touch /home/$3/be$1/log/palo_be$1.log
chown $3:$3 /home/$3/be$1/log/palo_be$1.log
# Reload supervisor
echo "reload supervisor..."
supervisorctl reload
# Show supervisor status
sleep 3
echo "show supervirsor status..."
supervisorctl status