remove.sh 7.0 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"
30
taosadapter_service_name="taosadapter"
H
Hui Li 已提交
31
tarbitrator_service_name="tarbitratord"
S
slguan 已提交
32
nginx_service_name="nginxd"
P
plum-lihui 已提交
33
csudo=""
Z
change  
zyyang 已提交
34 35
if command -v sudo >/dev/null; then
  csudo="sudo "
P
plum-lihui 已提交
36 37
fi

H
[NONE]  
huili 已提交
38 39
initd_mod=0
service_mod=2
Z
change  
zyyang 已提交
40 41 42 43 44 45 46 47 48 49 50 51
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
H
[NONE]  
huili 已提交
52
    service_mod=2
Z
change  
zyyang 已提交
53 54 55
  fi
else
  service_mod=2
H
hzcheng 已提交
56 57
fi

58 59
function kill_taosadapter() {
  pid=$(ps -ef | grep "taosadapter" | grep -v "grep" | awk '{print $2}')
60
  if [ -n "$pid" ]; then
Z
change  
zyyang 已提交
61
    ${csudo}kill -9 $pid || :
62 63 64
  fi
}

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

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

H
hzcheng 已提交
91
function clean_lib() {
Z
change  
zyyang 已提交
92 93 94 95
  # Remove link
  ${csudo}rm -f ${lib_link_dir}/libtaos.* || :
  ${csudo}rm -f ${lib64_link_dir}/libtaos.* || :
  #${csudo}rm -rf ${v15_java_app_dir}           || :
H
hzcheng 已提交
96 97 98
}

function clean_header() {
Z
change  
zyyang 已提交
99 100 101 102
  # Remove link
  ${csudo}rm -f ${inc_link_dir}/taos.h || :
  ${csudo}rm -f ${inc_link_dir}/taosdef.h || :
  ${csudo}rm -f ${inc_link_dir}/taoserror.h || :
H
hzcheng 已提交
103 104 105
}

function clean_config() {
Z
change  
zyyang 已提交
106 107
  # Remove link
  ${csudo}rm -f ${cfg_link_dir}/* || :
H
hzcheng 已提交
108 109 110
}

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

function clean_service_on_systemd() {
Z
change  
zyyang 已提交
116 117 118 119 120 121 122
  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..."
    ${csudo}systemctl stop ${taos_service_name} &>/dev/null || echo &>/dev/null
  fi
  ${csudo}systemctl disable ${taos_service_name} &>/dev/null || echo &>/dev/null
  ${csudo}rm -f ${taosd_service_config}
123

Z
change  
zyyang 已提交
124 125 126 127 128 129 130
  taosadapter_service_config="${service_config_dir}/taosadapter.service"
  if systemctl is-active --quiet ${taosadapter_service_name}; then
    echo "TDengine taosAdapter is running, stopping it..."
    ${csudo}systemctl stop ${taosadapter_service_name} &>/dev/null || echo &>/dev/null
  fi
  ${csudo}systemctl disable ${taosadapter_service_name} &>/dev/null || echo &>/dev/null
  [ -f ${taosadapter_service_config} ] && ${csudo}rm -f ${taosadapter_service_config}
131

Z
change  
zyyang 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
  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}

  if [ "$verMode" == "cluster" ]; then
    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}
149
    fi
Z
change  
zyyang 已提交
150
  fi
H
hzcheng 已提交
151 152 153
}

function clean_service_on_sysvinit() {
Z
change  
zyyang 已提交
154 155
  #restart_config_str="taos:2345:respawn:${service_config_dir}/taosd start"
  #${csudo}sed -i "\|${restart_config_str}|d" /etc/inittab || :
156

Z
change  
zyyang 已提交
157 158 159 160
  if pidof taosd &>/dev/null; then
    echo "TDengine taosd is running, stopping it..."
    ${csudo}service taosd stop || :
  fi
161

Z
change  
zyyang 已提交
162 163 164 165
  if pidof tarbitrator &>/dev/null; then
    echo "TDengine tarbitrator is running, stopping it..."
    ${csudo}service tarbitratord stop || :
  fi
166

Z
change  
zyyang 已提交
167 168 169 170 171 172 173 174 175 176
  if ((${initd_mod} == 1)); then
    if [ -e ${service_config_dir}/taosd ]; then
      ${csudo}chkconfig --del taosd || :
    fi
    if [ -e ${service_config_dir}/tarbitratord ]; then
      ${csudo}chkconfig --del tarbitratord || :
    fi
  elif ((${initd_mod} == 2)); then
    if [ -e ${service_config_dir}/taosd ]; then
      ${csudo}insserv -r taosd || :
L
lihui 已提交
177
    fi
Z
change  
zyyang 已提交
178 179 180 181 182 183 184 185 186 187 188
    if [ -e ${service_config_dir}/tarbitratord ]; then
      ${csudo}insserv -r tarbitratord || :
    fi
  elif ((${initd_mod} == 3)); then
    if [ -e ${service_config_dir}/taosd ]; then
      ${csudo}update-rc.d -f taosd remove || :
    fi
    if [ -e ${service_config_dir}/tarbitratord ]; then
      ${csudo}update-rc.d -f tarbitratord remove || :
    fi
  fi
189

Z
change  
zyyang 已提交
190 191
  ${csudo}rm -f ${service_config_dir}/taosd || :
  ${csudo}rm -f ${service_config_dir}/tarbitratord || :
192

Z
change  
zyyang 已提交
193 194 195
  if $(which init &>/dev/null); then
    ${csudo}init q || :
  fi
H
hzcheng 已提交
196 197 198
}

function clean_service() {
Z
change  
zyyang 已提交
199 200 201 202 203 204 205 206 207 208
  if ((${service_mod} == 0)); then
    clean_service_on_systemd
  elif ((${service_mod} == 1)); then
    clean_service_on_sysvinit
  else
    # must manual stop taosd
    kill_taosadapter
    kill_taosd
    kill_tarbitrator
  fi
H
hzcheng 已提交
209 210 211 212 213 214 215 216 217 218
}

# 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 已提交
219
# Remove link log directory
H
hzcheng 已提交
220
clean_log
H
huili 已提交
221
# Remove link configuration file
H
hzcheng 已提交
222
clean_config
H
huili 已提交
223
# Remove data link directory
Z
change  
zyyang 已提交
224
${csudo}rm -rf ${data_link_dir} || :
H
hzcheng 已提交
225

226 227
${csudo}rm -rf ${install_main_dir}
${csudo}rm -rf ${install_nginxd_dir}
H
Hui Li 已提交
228
if [[ -e /etc/os-release ]]; then
H
Hui Li 已提交
229 230 231 232
  osinfo=$(awk -F= '/^NAME/{print $2}' /etc/os-release)
else
  osinfo=""
fi
H
hzcheng 已提交
233

Z
change  
zyyang 已提交
234 235 236 237 238 239 240 241 242
if echo $osinfo | grep -qwi "ubuntu"; then
  #  echo "this is ubuntu system"
  ${csudo}dpkg --force-all -P tdengine >/dev/null 2>&1 || :
elif echo $osinfo | grep -qwi "debian"; then
  #  echo "this is debian system"
  ${csudo}dpkg --force-all -P tdengine >/dev/null 2>&1 || :
elif echo $osinfo | grep -qwi "centos"; then
  #  echo "this is centos system"
  ${csudo}rpm -e --noscripts tdengine >/dev/null 2>&1 || :
H
hzcheng 已提交
243 244
fi

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