remove_client_kh.sh 1.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#!/bin/bash
#
# Script to stop the client and uninstall database, but retain the config and log files.
set -e
# set -x

RED='\033[0;31m'
GREEN='\033[1;32m'
NC='\033[0m'

#install main path
install_main_dir="/usr/local/kinghistorian"

log_link_dir="/usr/local/kinghistorian/log"
cfg_link_dir="/usr/local/kinghistorian/cfg"
bin_link_dir="/usr/bin"
lib_link_dir="/usr/lib"
lib64_link_dir="/usr/lib64"
inc_link_dir="/usr/include"

csudo=""
if command -v sudo > /dev/null; then
23
    csudo="sudo "
24 25 26 27
fi

function kill_client() {
  if [ -n "$(pidof khclient)" ]; then
28
    ${csudo}kill -9 $pid   || :
29 30 31 32 33
  fi
}

function clean_bin() {
    # Remove link
34 35 36 37 38
    ${csudo}rm -f ${bin_link_dir}/khclient  || :
    ${csudo}rm -f ${bin_link_dir}/khdemo    || :
    ${csudo}rm -f ${bin_link_dir}/khdump    || :
    ${csudo}rm -f ${bin_link_dir}/rmkh      || :
    ${csudo}rm -f ${bin_link_dir}/set_core  || :
39 40 41 42
}

function clean_lib() {
    # Remove link
43 44
    ${csudo}rm -f ${lib_link_dir}/libtaos.*      || :
    ${csudo}rm -f ${lib64_link_dir}/libtaos.*    || :
45 46 47 48
}

function clean_header() {
    # Remove link
49 50
    ${csudo}rm -f ${inc_link_dir}/taos.h       || :
    ${csudo}rm -f ${inc_link_dir}/taoserror.h       || :
51 52 53 54
}

function clean_config() {
    # Remove link
55
    ${csudo}rm -f ${cfg_link_dir}/*            || :
56 57 58 59
}

function clean_log() {
    # Remove link
60
    ${csudo}rm -rf ${log_link_dir}    || :
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
}

# Stop client.
kill_client
# Remove binary file and links
clean_bin
# Remove header file.
clean_header
# Remove lib file
clean_lib
# Remove link log directory
clean_log
# Remove link configuration file
clean_config

76
${csudo}rm -rf ${install_main_dir}
77 78 79

echo -e "${GREEN}KingHistorian client is removed successfully!${NC}"
echo