remove.sh 7.3 KB
Newer Older
H
hzcheng 已提交
1 2
#!/bin/bash
#
3
# Script to stop and uninstall the service, 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
RED='\033[0;31m'
GREEN='\033[1;32m'
NC='\033[0m'

14 15 16 17 18 19
installDir="/usr/local/taos"
serverName="taosd"
clientName="taos"
uninstallScript="rmtaos"
productName="TDengine"

H
hzcheng 已提交
20
#install main path
21 22 23 24
install_main_dir=${installDir}
data_link_dir=${installDir}/data
log_link_dir=${installDir}/log
cfg_link_dir=${installDir}/cfg
H
hzcheng 已提交
25
bin_link_dir="/usr/bin"
26
local_bin_link_dir="/usr/local/bin"
H
hzcheng 已提交
27
lib_link_dir="/usr/lib"
H
Hui Li 已提交
28
lib64_link_dir="/usr/lib64"
H
hzcheng 已提交
29
inc_link_dir="/usr/include"
S
slguan 已提交
30 31
install_nginxd_dir="/usr/local/nginxd"

H
hzcheng 已提交
32
service_config_dir="/etc/systemd/system"
33
taos_service_name=${serverName}
34
taosadapter_service_name="taosadapter"
H
Hui Li 已提交
35
tarbitrator_service_name="tarbitratord"
S
slguan 已提交
36
nginx_service_name="nginxd"
P
plum-lihui 已提交
37
csudo=""
38 39
if command -v sudo >/dev/null; then
  csudo="sudo "
P
plum-lihui 已提交
40 41
fi

H
[NONE]  
huili 已提交
42 43
initd_mod=0
service_mod=2
44 45 46 47 48 49 50 51 52 53 54 55
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 已提交
56
    service_mod=2
57 58 59
  fi
else
  service_mod=2
H
hzcheng 已提交
60 61
fi

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

H
[NONE]  
huili 已提交
69
function kill_taosd() {
70
  pid=$(ps -ef | grep ${serverName} | grep -v "grep" | awk '{print $2}')
L
lihui 已提交
71
  if [ -n "$pid" ]; then
72
    ${csudo}kill -9 $pid || :
L
lihui 已提交
73
  fi
H
[NONE]  
huili 已提交
74 75
}

H
Hui Li 已提交
76 77 78
function kill_tarbitrator() {
  pid=$(ps -ef | grep "tarbitrator" | grep -v "grep" | awk '{print $2}')
  if [ -n "$pid" ]; then
79
    ${csudo}kill -9 $pid || :
H
Hui Li 已提交
80 81
  fi
}
82

H
hzcheng 已提交
83
function clean_bin() {
84 85 86 87
  # Remove link
  ${csudo}rm -f ${bin_link_dir}/${clientName} || :
  ${csudo}rm -f ${bin_link_dir}/${serverName} || :
  ${csudo}rm -f ${bin_link_dir}/taosadapter || :
88
  ${csudo}rm -f ${bin_link_dir}/taosBenchmark || :
89 90 91 92 93 94
  ${csudo}rm -f ${bin_link_dir}/taosdemo || :
  ${csudo}rm -f ${bin_link_dir}/taosdump || :
  ${csudo}rm -f ${bin_link_dir}/${uninstallScript} || :
  ${csudo}rm -f ${bin_link_dir}/tarbitrator || :
  ${csudo}rm -f ${bin_link_dir}/set_core || :
  ${csudo}rm -f ${bin_link_dir}/run_taosd_and_taosadapter.sh || :
95
  ${csudo}rm -f ${bin_link_dir}/TDinsight.sh || :
H
hzcheng 已提交
96
}
H
huili 已提交
97

98 99 100 101 102
function clean_local_bin() {
  ${csudo}rm -f ${local_bin_link_dir}/taosBenchmark || :
  ${csudo}rm -f ${local_bin_link_dir}/taosdemo || :
}

H
hzcheng 已提交
103
function clean_lib() {
104 105 106 107
  # 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 已提交
108 109 110
}

function clean_header() {
111 112 113 114
  # 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 已提交
115 116 117
}

function clean_config() {
118 119
  # Remove link
  ${csudo}rm -f ${cfg_link_dir}/* || :
H
hzcheng 已提交
120 121 122
}

function clean_log() {
123 124
  # Remove link
  ${csudo}rm -rf ${log_link_dir} || :
H
hzcheng 已提交
125 126 127
}

function clean_service_on_systemd() {
128 129 130 131 132 133 134
  taosd_service_config="${service_config_dir}/${taos_service_name}.service"
  if systemctl is-active --quiet ${taos_service_name}; then
    echo "${productName} ${serverName} 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}
135

136 137 138 139 140 141 142
  taosadapter_service_config="${service_config_dir}/taosadapter.service"
  if systemctl is-active --quiet ${taosadapter_service_name}; then
    echo "${productName} 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}
143

144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
  tarbitratord_service_config="${service_config_dir}/${tarbitrator_service_name}.service"
  if systemctl is-active --quiet ${tarbitrator_service_name}; then
    echo "${productName} 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 ${productName} 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}
161
    fi
162
  fi
H
hzcheng 已提交
163 164 165
}

function clean_service_on_sysvinit() {
166 167 168 169
  if pidof ${serverName} &>/dev/null; then
    echo "${productName} ${serverName} is running, stopping it..."
    ${csudo}service ${serverName} stop || :
  fi
170

171 172 173 174
  if pidof tarbitrator &>/dev/null; then
    echo "${productName} tarbitrator is running, stopping it..."
    ${csudo}service tarbitratord stop || :
  fi
175

176 177 178
  if ((${initd_mod} == 1)); then
    if [ -e ${service_config_dir}/${serverName} ]; then
      ${csudo}chkconfig --del ${serverName} || :
H
Hui Li 已提交
179
    fi
180 181 182 183 184 185
    if [ -e ${service_config_dir}/tarbitratord ]; then
      ${csudo}chkconfig --del tarbitratord || :
    fi
  elif ((${initd_mod} == 2)); then
    if [ -e ${service_config_dir}/${serverName} ]; then
      ${csudo}insserv -r ${serverName} || :
L
lihui 已提交
186
    fi
187 188 189 190 191 192 193 194 195 196 197
    if [ -e ${service_config_dir}/tarbitratord ]; then
      ${csudo}insserv -r tarbitratord || :
    fi
  elif ((${initd_mod} == 3)); then
    if [ -e ${service_config_dir}/${serverName} ]; then
      ${csudo}update-rc.d -f ${serverName} remove || :
    fi
    if [ -e ${service_config_dir}/tarbitratord ]; then
      ${csudo}update-rc.d -f tarbitratord remove || :
    fi
  fi
198

199 200
  ${csudo}rm -f ${service_config_dir}/${serverName} || :
  ${csudo}rm -f ${service_config_dir}/tarbitratord || :
201

202 203 204
  if $(which init &>/dev/null); then
    ${csudo}init q || :
  fi
H
hzcheng 已提交
205 206 207
}

function clean_service() {
208 209 210 211 212 213 214 215 216
  if ((${service_mod} == 0)); then
    clean_service_on_systemd
  elif ((${service_mod} == 1)); then
    clean_service_on_sysvinit
  else
    kill_taosadapter
    kill_taosd
    kill_tarbitrator
  fi
H
hzcheng 已提交
217 218 219 220 221 222
}

# Stop service and disable booting start.
clean_service
# Remove binary file and links
clean_bin
223 224
# Remove links of local bin
clean_local_bin
H
hzcheng 已提交
225 226 227 228
# Remove header file.
clean_header
# Remove lib file
clean_lib
H
huili 已提交
229
# Remove link log directory
H
hzcheng 已提交
230
clean_log
H
huili 已提交
231
# Remove link configuration file
H
hzcheng 已提交
232
clean_config
H
huili 已提交
233
# Remove data link directory
234
${csudo}rm -rf ${data_link_dir} || :
H
hzcheng 已提交
235

236 237
${csudo}rm -rf ${install_main_dir}
${csudo}rm -rf ${install_nginxd_dir}
H
Hui Li 已提交
238
if [[ -e /etc/os-release ]]; then
H
Hui Li 已提交
239 240 241 242
  osinfo=$(awk -F= '/^NAME/{print $2}' /etc/os-release)
else
  osinfo=""
fi
H
hzcheng 已提交
243

244 245 246 247 248 249 250 251 252
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 已提交
253 254
fi

255
echo -e "${GREEN}${productName} is removed successfully!${NC}"
256
echo