-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathupgrade-fs_brokers.sh
executable file
·72 lines (65 loc) · 2.69 KB
/
upgrade-fs_brokers.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
#!/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 upgrade Apache Doris(incubating) apache_hdfs_broker
#
# Usage:
# sh upgrade-fs_brokers.sh palo /usr/local/src/output /data/palo_fe_log /home/soft/java
#
# You need acknowledge following items before run it:
# - Execute this script by root account;
# - Java have been installed previously;
# - Supervisor have been installed previously;
#################################################################################
# Usage
Usage() {
echo "upgrade-fs_brokers.sh [fb_owner] [fb_output_path] [fb_log_path] [java_home]"
echo "Eg: sh upgrade-fs_brokers.sh palo /usr/local/src/output /data/palo_hdfs_broker_log /home/soft/java"
return 0
}
# Check input parameters
if [ $# -eq 1 ]; then
if [ "$1" = "-h" ]; then
Usage
exit 0
else
Usage
exit -1
fi
elif [ $# -ne 4 ]; then
Usage
exit -1
fi
# Backup apache_hdfs_broker directory
echo "Backup apache_hdfs_broker directory..."
mv /home/$1/apache_hdfs_broker /home/$1/apache_hdfs_broker.bak-$(date +%F)
# Initial apache_hdfs_broker directory
echo "Initial apache_hdfs_broker directory..."
mkdir /home/$1/apache_hdfs_broker -pv
cp -rf $2/apache_hdfs_broker/* /home/$1/apache_hdfs_broker/
chown -R $1:$1 /home/$1/
# Build apache_hdfs_broker log softlink
echo "Build apache_hdfs_broker log softlink..."
ln -s $3 /home/$1/apache_hdfs_broker/log
chown $1:$1 /home/$1/apache_hdfs_broker/log
# Modify apache_hdfs_broker bin file
echo "Modify apache_hdfs_broker bin file..."
cp -rf /home/$1/apache_hdfs_broker/bin/start_broker.sh /home/$1/apache_hdfs_broker/bin/start_broker_hup.sh
chown $1:$1 /home/$1/apache_hdfs_broker/bin/start_broker_hup.sh
sed -i "s,/dev/null &,/dev/null,g" /home/$1/apache_hdfs_broker/bin/start_broker_hup.sh
sed -i "/export JAVA_OPTS/i export JAVA_HOME=$4" /home/$1/apache_hdfs_broker/bin/start_broker_hup.sh