remove.sh 6.8 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
set -e
#set -x

L
lihui 已提交
8
verMode=edge
S
slguan 已提交
9

H
hzcheng 已提交
10 11 12 13 14 15 16 17 18 19 20
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"
H
Hui Li 已提交
21
lib64_link_dir="/usr/lib64"
H
hzcheng 已提交
22
inc_link_dir="/usr/include"
S
slguan 已提交
23 24 25
install_nginxd_dir="/usr/local/nginxd"

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

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

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

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

H
[NONE]  
huili 已提交
64 65
function kill_taosd() {
  pid=$(ps -ef | grep "taosd" | grep -v "grep" | awk '{print $2}')
L
lihui 已提交
66 67 68
  if [ -n "$pid" ]; then
    ${csudo} kill -9 $pid   || :
  fi
H
[NONE]  
huili 已提交
69 70
}

H
Hui Li 已提交
71 72 73 74 75 76
function kill_tarbitrator() {
  pid=$(ps -ef | grep "tarbitrator" | grep -v "grep" | awk '{print $2}')
  if [ -n "$pid" ]; then
    ${csudo} kill -9 $pid   || :
  fi
}
H
hzcheng 已提交
77 78
function clean_bin() {
    # Remove link
H
Hui Li 已提交
79 80
    ${csudo} rm -f ${bin_link_dir}/taos        || :
    ${csudo} rm -f ${bin_link_dir}/taosd       || :
81
    ${csudo} rm -f ${bin_link_dir}/blm3        || :
H
Hui Li 已提交
82
    ${csudo} rm -f ${bin_link_dir}/taosdemo    || :
83
    ${csudo} rm -f ${bin_link_dir}/taosdump    || :
H
Hui Li 已提交
84 85 86
    ${csudo} rm -f ${bin_link_dir}/rmtaos      || :
    ${csudo} rm -f ${bin_link_dir}/tarbitrator || :
    ${csudo} rm -f ${bin_link_dir}/set_core    || :
H
hzcheng 已提交
87
}
H
huili 已提交
88

H
hzcheng 已提交
89 90
function clean_lib() {
    # Remove link
P
plum-lihui 已提交
91
    ${csudo} rm -f ${lib_link_dir}/libtaos.*      || :
H
Hui Li 已提交
92 93
    ${csudo} rm -f ${lib64_link_dir}/libtaos.*    || :
    #${csudo} rm -rf ${v15_java_app_dir}           || :
H
hzcheng 已提交
94 95 96 97
}

function clean_header() {
    # Remove link
P
plum-lihui 已提交
98
    ${csudo} rm -f ${inc_link_dir}/taos.h       || :
H
Hui Li 已提交
99
    ${csudo} rm -f ${inc_link_dir}/taoserror.h  || :
H
hzcheng 已提交
100 101 102 103
}

function clean_config() {
    # Remove link
104
    ${csudo} rm -f ${cfg_link_dir}/*            || :
H
hzcheng 已提交
105 106 107 108
}

function clean_log() {
    # Remove link
H
huili 已提交
109
    ${csudo} rm -rf ${log_link_dir}    || :
H
hzcheng 已提交
110 111 112 113 114 115
}

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 已提交
116
        ${csudo} systemctl stop ${taos_service_name} &> /dev/null || echo &> /dev/null
H
hzcheng 已提交
117
    fi
P
plum-lihui 已提交
118 119
    ${csudo} systemctl disable ${taos_service_name} &> /dev/null || echo &> /dev/null
    ${csudo} rm -f ${taosd_service_config}
120

H
Hui Li 已提交
121 122 123 124 125 126 127
    tarbitratord_service_config="${service_config_dir}/${tarbitrator_service_name}.service"
    if systemctl is-active --quiet ${tarbitrator_service_name}; then
        echo "TDengine tarbitrator is running, stopping it..."
        ${csudo} systemctl stop ${tarbitrator_service_name} &> /dev/null || echo &> /dev/null
    fi
    ${csudo} systemctl disable ${tarbitrator_service_name} &> /dev/null || echo &> /dev/null
    ${csudo} rm -f ${tarbitratord_service_config}
128

S
slguan 已提交
129
    if [ "$verMode" == "cluster" ]; then
130 131 132 133 134 135 136 137 138 139
        nginx_service_config="${service_config_dir}/${nginx_service_name}.service"
        if [ -d ${install_nginxd_dir} ]; 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 已提交
140 141 142
}

function clean_service_on_sysvinit() {
L
lihui 已提交
143
    #restart_config_str="taos:2345:respawn:${service_config_dir}/taosd start"
144 145
    #${csudo} sed -i "\|${restart_config_str}|d" /etc/inittab || :

H
hzcheng 已提交
146
    if pidof taosd &> /dev/null; then
L
lihui 已提交
147
        echo "TDengine taosd is running, stopping it..."
P
plum-lihui 已提交
148
        ${csudo} service taosd stop || :
H
hzcheng 已提交
149
    fi
150

H
Hui Li 已提交
151 152 153 154
    if pidof tarbitrator &> /dev/null; then
        echo "TDengine tarbitrator is running, stopping it..."
        ${csudo} service tarbitratord stop || :
    fi
155 156 157

    if ((${initd_mod}==1)); then
      if [ -e ${service_config_dir}/taosd ]; then
L
lihui 已提交
158
        ${csudo} chkconfig --del taosd || :
H
Hui Li 已提交
159
      fi
160
      if [ -e ${service_config_dir}/tarbitratord ]; then
H
Hui Li 已提交
161
        ${csudo} chkconfig --del tarbitratord || :
H
Hui Li 已提交
162
      fi
163 164
    elif ((${initd_mod}==2)); then
      if [ -e ${service_config_dir}/taosd ]; then
L
lihui 已提交
165
        ${csudo} insserv -r taosd || :
H
Hui Li 已提交
166
      fi
167
      if [ -e ${service_config_dir}/tarbitratord ]; then
H
Hui Li 已提交
168
        ${csudo} insserv -r tarbitratord || :
H
Hui Li 已提交
169
      fi
170 171
    elif ((${initd_mod}==3)); then
      if [ -e ${service_config_dir}/taosd ]; then
L
lihui 已提交
172
        ${csudo} update-rc.d -f taosd remove || :
H
Hui Li 已提交
173
      fi
174
      if [ -e ${service_config_dir}/tarbitratord ]; then
H
Hui Li 已提交
175
        ${csudo} update-rc.d -f tarbitratord remove || :
H
Hui Li 已提交
176
      fi
L
lihui 已提交
177
    fi
178

L
lihui 已提交
179
    ${csudo} rm -f ${service_config_dir}/taosd || :
H
Hui Li 已提交
180
    ${csudo} rm -f ${service_config_dir}/tarbitratord || :
181

L
lihui 已提交
182 183
    if $(which init &> /dev/null); then
        ${csudo} init q || :
H
[NONE]  
huili 已提交
184
    fi
H
hzcheng 已提交
185 186 187
}

function clean_service() {
H
[NONE]  
huili 已提交
188
    if ((${service_mod}==0)); then
H
hzcheng 已提交
189
        clean_service_on_systemd
H
[NONE]  
huili 已提交
190
    elif ((${service_mod}==1)); then
H
hzcheng 已提交
191
        clean_service_on_sysvinit
H
[NONE]  
huili 已提交
192
    else
L
lihui 已提交
193
        # must manual stop taosd
194
        kill_blm3
H
[NONE]  
huili 已提交
195
        kill_taosd
H
Hui Li 已提交
196
        kill_tarbitrator
H
hzcheng 已提交
197 198 199 200 201 202 203 204 205 206 207
    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 已提交
208
# Remove link log directory
H
hzcheng 已提交
209
clean_log
H
huili 已提交
210
# Remove link configuration file
H
hzcheng 已提交
211
clean_config
H
huili 已提交
212
# Remove data link directory
213
${csudo} rm -rf ${data_link_dir}    || :
H
hzcheng 已提交
214

P
plum-lihui 已提交
215
${csudo} rm -rf ${install_main_dir}
S
slguan 已提交
216
${csudo} rm -rf ${install_nginxd_dir}
H
Hui Li 已提交
217
if [[ -e /etc/os-release ]]; then
H
Hui Li 已提交
218 219 220 221
  osinfo=$(awk -F= '/^NAME/{print $2}' /etc/os-release)
else
  osinfo=""
fi
H
hzcheng 已提交
222 223 224

if echo $osinfo | grep -qwi "ubuntu" ; then
#  echo "this is ubuntu system"
225
   ${csudo} dpkg --force-all  -P tdengine > /dev/null 2>&1 || :
H
Hui Li 已提交
226 227
elif echo $osinfo | grep -qwi "debian" ; then
#  echo "this is debian system"
228
   ${csudo} dpkg --force-all  -P tdengine > /dev/null 2>&1 || :
H
hzcheng 已提交
229
elif  echo $osinfo | grep -qwi "centos" ; then
H
Hui Li 已提交
230
#  echo "this is centos system"
231
  ${csudo} rpm -e --noscripts tdengine > /dev/null 2>&1 || :
H
hzcheng 已提交
232 233
fi

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