remove_jh.sh 5.9 KB
Newer Older
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
#!/bin/bash
#
# Script to stop the service and uninstall jh_taos, but retain the config, data and log files.

set -e
#set -x

verMode=edge

RED='\033[0;31m'
GREEN='\033[1;32m'
NC='\033[0m'

#install main path
install_main_dir="/usr/local/jh_taos"
data_link_dir="/usr/local/jh_taos/data"
log_link_dir="/usr/local/jh_taos/log"
cfg_link_dir="/usr/local/jh_taos/cfg"
bin_link_dir="/usr/bin"
lib_link_dir="/usr/lib"
lib64_link_dir="/usr/lib64"
inc_link_dir="/usr/include"
install_nginxd_dir="/usr/local/nginxd"

service_config_dir="/etc/systemd/system"
service_name="jh_taosd"
tarbitrator_service_name="tarbitratord"
nginx_service_name="nginxd"
csudo=""
if command -v sudo > /dev/null; then
31
    csudo="sudo "
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
fi

initd_mod=0
service_mod=2
if pidof systemd &> /dev/null; then
    service_mod=0
elif $(which service &> /dev/null); then    
    service_mod=1
    service_config_dir="/etc/init.d" 
    if $(which chkconfig &> /dev/null); then
         initd_mod=1 
    elif $(which insserv &> /dev/null); then
        initd_mod=2
    elif $(which update-rc.d &> /dev/null); then
        initd_mod=3
    else
        service_mod=2
    fi
else 
    service_mod=2
fi

function kill_process() {
  pid=$(ps -ef | grep "jh_taosd" | grep -v "grep" | awk '{print $2}')
  if [ -n "$pid" ]; then
57
    ${csudo}kill -9 $pid   || :
58 59 60 61 62 63
  fi
}

function kill_tarbitrator() {
  pid=$(ps -ef | grep "tarbitrator" | grep -v "grep" | awk '{print $2}')
  if [ -n "$pid" ]; then
64
    ${csudo}kill -9 $pid   || :
65 66 67 68 69
  fi
}

function clean_bin() {
    # Remove link
70 71 72 73 74 75 76 77
    ${csudo}rm -f ${bin_link_dir}/jh_taos      || :
    ${csudo}rm -f ${bin_link_dir}/jh_taosd      || :
    ${csudo}rm -f ${bin_link_dir}/jhdemo        || :
    ${csudo}rm -f ${bin_link_dir}/jh_taosdump   || :
    ${csudo}rm -f ${bin_link_dir}/rmjh          || :
    ${csudo}rm -f ${bin_link_dir}/tarbitrator   || :
    ${csudo}rm -f ${bin_link_dir}/set_core      || :
    ${csudo}rm -f ${bin_link_dir}/run_taosd.sh  || :
78 79 80 81
}

function clean_lib() {
    # Remove link
82 83
    ${csudo}rm -f ${lib_link_dir}/libtaos.*      || :
    ${csudo}rm -f ${lib64_link_dir}/libtaos.*    || :
84 85 86 87
}

function clean_header() {
    # Remove link
88 89
    ${csudo}rm -f ${inc_link_dir}/taos.h       || :
    ${csudo}rm -f ${inc_link_dir}/taoserror.h  || :
90 91 92 93
}

function clean_config() {
    # Remove link
94
    ${csudo}rm -f ${cfg_link_dir}/*            || :    
95 96 97 98
}

function clean_log() {
    # Remove link
99
    ${csudo}rm -rf ${log_link_dir}    || :
100 101 102 103 104 105
}

function clean_service_on_systemd() {
    service_config="${service_config_dir}/${service_name}.service"
    if systemctl is-active --quiet ${service_name}; then
        echo "jh_iot's jh_taosd is running, stopping it..."
106
        ${csudo}systemctl stop ${service_name} &> /dev/null || echo &> /dev/null
107
    fi
108 109
    ${csudo}systemctl disable ${service_name} &> /dev/null || echo &> /dev/null
    ${csudo}rm -f ${service_config}
110 111 112 113
    
    tarbitratord_service_config="${service_config_dir}/${tarbitrator_service_name}.service"
    if systemctl is-active --quiet ${tarbitrator_service_name}; then
        echo "jh_iot's tarbitrator is running, stopping it..."
114
        ${csudo}systemctl stop ${tarbitrator_service_name} &> /dev/null || echo &> /dev/null
115
    fi
116 117
    ${csudo}systemctl disable ${tarbitrator_service_name} &> /dev/null || echo &> /dev/null
    ${csudo}rm -f ${tarbitratord_service_config}
118 119 120 121 122 123
    
    if [ "$verMode" == "cluster" ]; then
		  nginx_service_config="${service_config_dir}/${nginx_service_name}.service"	
   	 	if [ -d ${bin_dir}/web ]; then
   	    if systemctl is-active --quiet ${nginx_service_name}; then
   	        echo "Nginx for jh_iot is running, stopping it..."
124
   	        ${csudo}systemctl stop ${nginx_service_name} &> /dev/null || echo &> /dev/null
125
   	    fi
126
   	    ${csudo}systemctl disable ${nginx_service_name} &> /dev/null || echo &> /dev/null
127
      
128
   	    ${csudo}rm -f ${nginx_service_config}
129 130 131 132 133 134 135
   	  fi
    fi 
}

function clean_service_on_sysvinit() {
    if pidof jh_taosd &> /dev/null; then
        echo "jh_iot's jh_taosd is running, stopping it..."
136
        ${csudo}service jh_taosd stop || :
137 138 139 140
    fi
    
    if pidof tarbitrator &> /dev/null; then
        echo "jh_iot's tarbitrator is running, stopping it..."
141
        ${csudo}service tarbitratord stop || :
142 143 144 145
    fi
    
    if ((${initd_mod}==1)); then    
      if [ -e ${service_config_dir}/jh_taosd ]; then
146
        ${csudo}chkconfig --del jh_taosd || :
147 148
      fi
      if [ -e ${service_config_dir}/tarbitratord ]; then 
149
        ${csudo}chkconfig --del tarbitratord || :
150 151 152
      fi
    elif ((${initd_mod}==2)); then   
      if [ -e ${service_config_dir}/jh_taosd ]; then
153
        ${csudo}insserv -r jh_taosd || :
154 155
      fi
      if [ -e ${service_config_dir}/tarbitratord ]; then 
156
        ${csudo}insserv -r tarbitratord || :
157 158 159
      fi
    elif ((${initd_mod}==3)); then  
      if [ -e ${service_config_dir}/jh_taosd ]; then
160
        ${csudo}update-rc.d -f jh_taosd remove || :
161 162
      fi
      if [ -e ${service_config_dir}/tarbitratord ]; then 
163
        ${csudo}update-rc.d -f tarbitratord remove || :
164 165 166
      fi
    fi
    
167 168
    ${csudo}rm -f ${service_config_dir}/jh_taosd || :
    ${csudo}rm -f ${service_config_dir}/tarbitratord || :
169 170
   
    if $(which init &> /dev/null); then
171
        ${csudo}init q || :
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
    fi
}

function clean_service() {
    if ((${service_mod}==0)); then
        clean_service_on_systemd
    elif ((${service_mod}==1)); then
        clean_service_on_sysvinit
    else
        kill_process
        kill_tarbitrator
    fi
}

# Stop service and disable booting start.
clean_service
# Remove binary file and links
clean_bin
# Remove header file.
clean_header
# Remove lib file
clean_lib
# Remove link log directory
clean_log
# Remove link configuration file
clean_config
# Remove data link directory
199
${csudo}rm -rf ${data_link_dir}    || : 
200

201 202
${csudo}rm -rf ${install_main_dir}
${csudo}rm -rf ${install_nginxd_dir}
203 204 205 206 207 208 209 210
if [[ -e /etc/os-release ]]; then
  osinfo=$(awk -F= '/^NAME/{print $2}' /etc/os-release)
else
  osinfo=""
fi

echo -e "${GREEN}jh_iot is removed successfully!${NC}"
echo