remove.sh 7.1 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 26
bin_link_dir="/usr/bin"
lib_link_dir="/usr/lib"
H
Hui Li 已提交
27
lib64_link_dir="/usr/lib64"
H
hzcheng 已提交
28
inc_link_dir="/usr/include"
S
slguan 已提交
29 30
install_nginxd_dir="/usr/local/nginxd"

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

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

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

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

H
Hui Li 已提交
75 76 77
function kill_tarbitrator() {
  pid=$(ps -ef | grep "tarbitrator" | grep -v "grep" | awk '{print $2}')
  if [ -n "$pid" ]; then
78
    ${csudo}kill -9 $pid || :
H
Hui Li 已提交
79 80
  fi
}
H
hzcheng 已提交
81
function clean_bin() {
82 83 84 85
  # Remove link
  ${csudo}rm -f ${bin_link_dir}/${clientName} || :
  ${csudo}rm -f ${bin_link_dir}/${serverName} || :
  ${csudo}rm -f ${bin_link_dir}/taosadapter || :
86
  ${csudo}rm -f ${bin_link_dir}/taosBenchmark || :
87 88 89 90 91 92
  ${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 || :
93
  ${csudo}rm -f ${bin_link_dir}/TDinsight.sh || :
H
hzcheng 已提交
94
}
H
huili 已提交
95

H
hzcheng 已提交
96
function clean_lib() {
97 98 99 100
  # 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 已提交
101 102 103
}

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

function clean_config() {
111 112
  # Remove link
  ${csudo}rm -f ${cfg_link_dir}/* || :
H
hzcheng 已提交
113 114 115
}

function clean_log() {
116 117
  # Remove link
  ${csudo}rm -rf ${log_link_dir} || :
H
hzcheng 已提交
118 119 120
}

function clean_service_on_systemd() {
121 122 123 124 125 126 127
  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}
128

129 130 131 132 133 134 135
  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}
136

137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
  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}
154
    fi
155
  fi
H
hzcheng 已提交
156 157 158
}

function clean_service_on_sysvinit() {
159 160 161 162
  if pidof ${serverName} &>/dev/null; then
    echo "${productName} ${serverName} is running, stopping it..."
    ${csudo}service ${serverName} stop || :
  fi
163

164 165 166 167
  if pidof tarbitrator &>/dev/null; then
    echo "${productName} tarbitrator is running, stopping it..."
    ${csudo}service tarbitratord stop || :
  fi
168

169 170 171
  if ((${initd_mod} == 1)); then
    if [ -e ${service_config_dir}/${serverName} ]; then
      ${csudo}chkconfig --del ${serverName} || :
H
Hui Li 已提交
172
    fi
173 174 175 176 177 178
    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 已提交
179
    fi
180 181 182 183 184 185 186 187 188 189 190
    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
191

192 193
  ${csudo}rm -f ${service_config_dir}/${serverName} || :
  ${csudo}rm -f ${service_config_dir}/tarbitratord || :
194

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

function clean_service() {
201 202 203 204 205 206 207 208 209
  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 已提交
210 211 212 213 214 215 216 217 218 219
}

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

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

235 236 237 238 239 240 241 242 243
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 已提交
244 245
fi

246
echo -e "${GREEN}${productName} is removed successfully!${NC}"
247
echo