-
Notifications
You must be signed in to change notification settings - Fork 264
/
Copy pathinstall.sh
executable file
·117 lines (103 loc) · 3.98 KB
/
install.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
#!/bin/bash
# check root
if [ $UID -ne 0 ]; then
printf "Failed! Please switch to root and install again. \n";
exit 1
fi
# check systemd
if ! command -v systemctl > /dev/null; then
printf "Failed! systemd not found, please use CentOS/RHEL 7/8+ or Debian 9/10+ . \n";
exit 1
fi
install_dir="/usr/local/janusec"
#pg_version=`psql -V | awk -F " " '{print $3}'`
printf "Installing Janusec Application Gateway... \n"
printf "Requirements:\n"
printf "* Debian 9/10/11+, x86_64, with systemd and nftables \n"
printf "* PostgreSQL 10/11/12+ (Primary Node Only) \n"
printf "* Port TCP/UDP 53 not occupied (Primary Node Only) \n\n"
printf "Installation Path: ${install_dir}/ \n"
printf "Please select one of the following node types: \n"
printf "1. Primary Node (default, there must be one primary node) \n"
printf "2. Replica Node (optional) \n"
printf "3. Exit (No Installation) \n"
printf "Your option(1/2/3):"
read option
case $option in
1) printf "Installing as Primary Node \n"
if [ ! -d ${install_dir}/log ]; then
mkdir -p ${install_dir}/log
fi
if [ ! -f ${install_dir}/config.json ]; then
\cp ./config.json.primary_bak ${install_dir}/config.json
else
# update config.json, change master/slave to primary/replica
\cp -f ${install_dir}/config.json ${install_dir}/config.json.bak
sed -i "s/master/primary/g" ${install_dir}/config.json
sed -i "s/slave/replica/g" ${install_dir}/config.json
fi
;;
2) printf "Installing as Replica Node \n"
if [ ! -d ${install_dir}/log ]; then
mkdir -p ${install_dir}/log
fi
if [ ! -f ${install_dir}/config.json ]; then
\cp ./config.json.replica_bak ${install_dir}/config.json
else
# update config.json, change master/slave to primary/replica
\cp -f ${install_dir}/config.json ${install_dir}/config.json.bak
sed -i "s/master/primary/g" ${install_dir}/config.json
sed -i "s/slave/replica/g" ${install_dir}/config.json
fi
;;
3) printf "Bye! \n"
exit 0
;;
esac
\cp -f ./janusec ${install_dir}/
rm -rf ${install_dir}/static/janusec-admin
mkdir -p ${install_dir}/static/janusec-admin
\cp -R ./static/janusec-admin ${install_dir}/static/janusec-admin -T
if [ ! -d ${install_dir}/static/welcome ]; then
mkdir -p ${install_dir}/static/welcome
\cp -R ./static/welcome ${install_dir}/static/welcome -T
fi
# copy keepalived files
if [ ! -f ${install_dir}/check_pid.sh ]; then
\cp ./check_pid.sh ${install_dir}/check_pid.sh
\cp ./keepalived.conf ${install_dir}/keepalived.conf
fi
# Check OS from /etc/os-release, ID="centos" or ID=debian or ID="rhel"
os=`cat /etc/os-release | grep "^ID\=" | awk -F "=" '{print $2}' | sed 's/\"//g'`
full_service_path=/lib/systemd/system/janusec.service
if [ $os == "centos" ] || [ $os == "rhel" ]; then
full_service_path=/usr/lib/systemd/system/janusec.service
elif [ $os == "debian" ]; then
full_service_path=/lib/systemd/system/janusec.service
fi
printf "Installation path: ${install_dir}/ \n"
printf "The config file is ${install_dir}/config.json \n"
printf "The following steps should be handled manually. \n"
if [ $option == 1 ]; then
old_pg=`cat ./janusec.service |grep postgres | awk -F "=" '{print $2}'`
new_pg=`systemctl list-unit-files | grep postgres | head -1 | awk -F " " '{print $1}'`
if [ -z "$new_pg" ]; then
# No PostgreSQL, delete After=postgresql.service
sed -i '/postgres/d' ./janusec.service
else
# Exist PostgreSQL
sed -i "s/$old_pg/$new_pg/" ./janusec.service
fi
\cp -f ./janusec.service ${full_service_path}
printf "* PostgreSQL and prepare dbname,username,password \n"
printf "* Fill in the config.json with dbname,username,password \n"
else
\cp -f ./janusec.service ./janusec-replica.service
sed -i '/postgres/d' ./janusec-replica.service
\cp -f ./janusec-replica.service ${full_service_path}
printf "* Fill in the config.json with: \n"
printf "* node_key (generated by admin and primary node) \n"
printf "* sync_addr (for sync with the primary node) \n"
fi
systemctl enable janusec.service
printf "Done. \n"