remove.sh 4.7 KB
Newer Older
H
hzcheng 已提交
1 2
#!/bin/bash
#
L
lihui 已提交
3
# Script to stop the service and uninstall TDengine, but retain the config, data and log files.
H
hzcheng 已提交
4

S
slguan 已提交
5 6 7 8 9
set -e
#set -x

verMode=lite

H
hzcheng 已提交
10 11 12 13 14 15 16 17 18 19 20 21
RED='\033[0;31m'
GREEN='\033[1;32m'
NC='\033[0m'

#install main path
install_main_dir="/usr/local/taos"
data_link_dir="/usr/local/taos/data"
log_link_dir="/usr/local/taos/log"
cfg_link_dir="/usr/local/taos/cfg"
bin_link_dir="/usr/bin"
lib_link_dir="/usr/lib"
inc_link_dir="/usr/include"
S
slguan 已提交
22 23 24 25
install_nginxd_dir="/usr/local/nginxd"

# v1.5 jar dir
v15_java_app_dir="/usr/local/lib/taos"
H
hzcheng 已提交
26 27 28

service_config_dir="/etc/systemd/system"
taos_service_name="taosd"
S
slguan 已提交
29
nginx_service_name="nginxd"
P
plum-lihui 已提交
30 31 32 33 34
csudo=""
if command -v sudo > /dev/null; then
    csudo="sudo"
fi

H
[NONE]  
huili 已提交
35 36 37 38
initd_mod=0
service_mod=2
if pidof systemd &> /dev/null; then
    service_mod=0
L
lihui 已提交
39
elif $(which service &> /dev/null); then    
H
[NONE]  
huili 已提交
40
    service_mod=1
L
lihui 已提交
41 42 43 44 45 46 47 48 49 50
    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
H
[NONE]  
huili 已提交
51 52
else 
    service_mod=2
H
hzcheng 已提交
53 54
fi

H
[NONE]  
huili 已提交
55 56
function kill_taosd() {
  pid=$(ps -ef | grep "taosd" | grep -v "grep" | awk '{print $2}')
L
lihui 已提交
57 58 59
  if [ -n "$pid" ]; then
    ${csudo} kill -9 $pid   || :
  fi
H
[NONE]  
huili 已提交
60 61
}

H
hzcheng 已提交
62 63
function clean_bin() {
    # Remove link
P
plum-lihui 已提交
64 65
    ${csudo} rm -f ${bin_link_dir}/taos      || :
    ${csudo} rm -f ${bin_link_dir}/taosd     || :
S
slguan 已提交
66
    ${csudo} rm -f ${bin_link_dir}/taosdemo  || :
P
plum-lihui 已提交
67 68
    ${csudo} rm -f ${bin_link_dir}/taosdump  || :
    ${csudo} rm -f ${bin_link_dir}/rmtaos    || :
H
hzcheng 已提交
69
}
H
huili 已提交
70

H
hzcheng 已提交
71 72
function clean_lib() {
    # Remove link
P
plum-lihui 已提交
73
    ${csudo} rm -f ${lib_link_dir}/libtaos.*      || :
S
slguan 已提交
74
    ${csudo} rm -rf ${v15_java_app_dir}                      || :
H
hzcheng 已提交
75 76 77 78
}

function clean_header() {
    # Remove link
P
plum-lihui 已提交
79
    ${csudo} rm -f ${inc_link_dir}/taos.h       || :
L
lihui 已提交
80
    ${csudo} rm -f ${inc_link_dir}/taoserror.h       || :
H
hzcheng 已提交
81 82 83 84
}

function clean_config() {
    # Remove link
P
plum-lihui 已提交
85
    ${csudo} rm -f ${cfg_link_dir}/*            || :    
H
hzcheng 已提交
86 87 88 89
}

function clean_log() {
    # Remove link
H
huili 已提交
90
    ${csudo} rm -rf ${log_link_dir}    || :
H
hzcheng 已提交
91 92 93 94 95 96 97
}

function clean_service_on_systemd() {
    taosd_service_config="${service_config_dir}/${taos_service_name}.service"

    if systemctl is-active --quiet ${taos_service_name}; then
        echo "TDengine taosd is running, stopping it..."
P
plum-lihui 已提交
98
        ${csudo} systemctl stop ${taos_service_name} &> /dev/null || echo &> /dev/null
H
hzcheng 已提交
99
    fi
P
plum-lihui 已提交
100
    ${csudo} systemctl disable ${taos_service_name} &> /dev/null || echo &> /dev/null
H
hzcheng 已提交
101

P
plum-lihui 已提交
102
    ${csudo} rm -f ${taosd_service_config}
S
slguan 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116

    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 TDengine is running, stopping it..."
   	            ${csudo} systemctl stop ${nginx_service_name} &> /dev/null || echo &> /dev/null
   	        fi
   	        ${csudo} systemctl disable ${nginx_service_name} &> /dev/null || echo &> /dev/null
        
   	        ${csudo} rm -f ${nginx_service_config}
   	    fi
    fi 
H
hzcheng 已提交
117 118 119
}

function clean_service_on_sysvinit() {
L
lihui 已提交
120 121 122
    #restart_config_str="taos:2345:respawn:${service_config_dir}/taosd start"
    #${csudo} sed -i "\|${restart_config_str}|d" /etc/inittab || :    
    
H
hzcheng 已提交
123
    if pidof taosd &> /dev/null; then
L
lihui 已提交
124
        echo "TDengine taosd is running, stopping it..."
P
plum-lihui 已提交
125
        ${csudo} service taosd stop || :
H
hzcheng 已提交
126
    fi
H
[NONE]  
huili 已提交
127 128

    if ((${initd_mod}==1)); then
L
lihui 已提交
129
        ${csudo} chkconfig --del taosd || :
H
[NONE]  
huili 已提交
130
    elif ((${initd_mod}==2)); then
L
lihui 已提交
131 132 133 134 135 136 137 138 139
        ${csudo} insserv -r taosd || :
    elif ((${initd_mod}==3)); then
        ${csudo} update-rc.d -f taosd remove || :
    fi
    
    ${csudo} rm -f ${service_config_dir}/taosd || :
   
    if $(which init &> /dev/null); then
        ${csudo} init q || :
H
[NONE]  
huili 已提交
140
    fi
H
hzcheng 已提交
141 142 143
}

function clean_service() {
H
[NONE]  
huili 已提交
144
    if ((${service_mod}==0)); then
H
hzcheng 已提交
145
        clean_service_on_systemd
H
[NONE]  
huili 已提交
146
    elif ((${service_mod}==1)); then
H
hzcheng 已提交
147
        clean_service_on_sysvinit
H
[NONE]  
huili 已提交
148
    else
L
lihui 已提交
149
        # must manual stop taosd
H
[NONE]  
huili 已提交
150
        kill_taosd
H
hzcheng 已提交
151 152 153 154 155 156 157 158 159 160 161
    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
H
huili 已提交
162
# Remove link log directory
H
hzcheng 已提交
163
clean_log
H
huili 已提交
164
# Remove link configuration file
H
hzcheng 已提交
165
clean_config
H
huili 已提交
166
# Remove data link directory
P
plum-lihui 已提交
167
${csudo} rm -rf ${data_link_dir}    || : 
H
hzcheng 已提交
168

P
plum-lihui 已提交
169
${csudo} rm -rf ${install_main_dir}
S
slguan 已提交
170
${csudo} rm -rf ${install_nginxd_dir}
H
hzcheng 已提交
171 172 173 174

osinfo=$(awk -F= '/^NAME/{print $2}' /etc/os-release)
if echo $osinfo | grep -qwi "ubuntu" ; then
#  echo "this is ubuntu system"
P
plum-lihui 已提交
175
   ${csudo} rm -f /var/lib/dpkg/info/tdengine* || :
H
hzcheng 已提交
176 177
elif  echo $osinfo | grep -qwi "centos" ; then
  echo "this is centos system"
P
plum-lihui 已提交
178
  ${csudo} rpm -e --noscripts tdengine || :
H
hzcheng 已提交
179 180
fi

L
lihui 已提交
181
echo -e "${GREEN}TDengine is removed successfully!${NC}"