remove_client_pro.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/ProDB"

log_link_dir="/usr/local/ProDB/log"
cfg_link_dir="/usr/local/ProDB/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 prodbc)" ]; 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}/prodbc     || :
    ${csudo}rm -f ${bin_link_dir}/prodemo    || :
    ${csudo}rm -f ${bin_link_dir}/prodump    || :
    ${csudo}rm -f ${bin_link_dir}/rmprodb    || :
    ${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 51
    ${csudo}rm -f ${inc_link_dir}/taos.h           || :
    ${csudo}rm -f ${inc_link_dir}/taosdef.h        || :
    ${csudo}rm -f ${inc_link_dir}/taoserror.h      || :
52 53 54 55
}

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

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

# 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

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

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