forked from Unidata/awips2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
installEDEX.sh
executable file
·84 lines (76 loc) · 1.99 KB
/
installEDEX.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
#!/bin/bash -f
#
# installEDEX.sh - a short script to manage the yum repo setup and install
# of AWIPS II EDEX
#
# 10/15 [email protected] Creation
#
#
# Download yum repo file from Unidata
#
if [ ! -f /etc/yum.repos.d/awips2.repo ]; then
echo ''
echo 'Downloading awips2repo yum file to /etc/yum.repos.d/awips2.repo'
echo ''
wget -O /etc/yum.repos.d/awips2.repo http://www.unidata.ucar.edu/software/awips2/doc/awips2.repo
fi
#
# Check for and add to limits.conf
#
if [[ $(grep awips /etc/security/limits.conf) ]]; then
echo "/etc/security/limits.conf OK"
else
echo "adding awips user entries to /etc/security/limits.conf ..."
printf "awips soft nproc 65536\nawips soft nofile 65536\n" >> /etc/security/limits.conf
echo "done with /etc/security/limits.conf"
fi
#
# Clean yum cache
#
echo ''
echo "Running 'yum clean all'"
echo ''
yum clean all
if [[ $(rpm -qa | grep awips2-edex) ]]; then
echo "found EDEX RPMs installed"
else
echo " EDEX RPMs not installled"
echo ""
echo " cleaning up /awips2/edex/, /awips2/data/"
rm -rf /awips2/edex/ /awips2/data/
fi
service edex_camel stop
service qpidd stop
service httpd-pypies stop
service edex_postgres stop
service edex_ldm stop
service qpidd stop
# check that /awips2/data_store exists, if not, create it
if [ ! -d /awips2/data_store ]; then
mkdir -p /awips2/data_store
fi
chown -R awips:fxalpha /awips2/data_store
if [[ $1 -eq "reinstall" ]]; then
echo ''
echo 'Removing and reinstalling EDEX...'
echo ''
echo "Running 'yum groupremove awips2-server'"
echo ''
yum groupremove awips2-server -y 2>&1 /dev/null
rm -rf /awips2/data/ awips2/database/
fi
echo ''
echo "Running 'yum groupinstall awips2-server'"
echo ''
yum groupinstall awips2-server -y 2>&1 | tee -a /tmp/edex-install.log
if getent passwd awips &>/dev/null; then
echo -n ''
else
echo ''
echo "--- user awips does not exist"
echo "--- you should set owner/group permissions for directories in /awips2/"
fi
echo ""
echo "Done..."
echo ""
exit