make_install.sh 26.8 KB
Newer Older
H
hzcheng 已提交
1 2
#!/bin/bash
#
3
# This file is used to install TAOS time-series database on linux systems. The operating system
H
hzcheng 已提交
4 5 6
# is required to use systemd to manage services at boot

set -e
7
#set -x
H
hzcheng 已提交
8

9
# -----------------------Variables definition
H
hzcheng 已提交
10 11
source_dir=$1
binary_dir=$2
S
slguan 已提交
12
osType=$3
H
Hui Li 已提交
13
verNumber=$4
S
slguan 已提交
14 15

if [ "$osType" != "Darwin" ]; then
Z
change  
zyyang 已提交
16
  script_dir=$(dirname $(readlink -f "$0"))
S
slguan 已提交
17
else
Z
change  
zyyang 已提交
18
  script_dir=${source_dir}/packaging/tools
S
slguan 已提交
19 20
fi

Z
change  
zyyang 已提交
21 22 23 24 25 26 27 28 29 30
clientName="taos"
serverName="taosd"
logDir="/var/log/taos"
dataDir="/var/lib/taos"
configDir="/etc/taos"
configFile="taos.cfg"
installDir="/usr/local/taos"
productName="TDengine"
emailName="taosdata.com"
uninstallScript="rmtaos"
31

Z
change  
zyyang 已提交
32
# Dynamic directory
S
slguan 已提交
33
if [ "$osType" != "Darwin" ]; then
Z
change  
zyyang 已提交
34 35
  data_dir="${dataDir}"
  log_dir="${logDir}"
H
hzcheng 已提交
36

Z
change  
zyyang 已提交
37
  cfg_install_dir="${configDir}"
H
hzcheng 已提交
38

Z
change  
zyyang 已提交
39 40 41 42
  bin_link_dir="/usr/bin"
  lib_link_dir="/usr/lib"
  lib64_link_dir="/usr/lib64"
  inc_link_dir="/usr/include"
43

Z
change  
zyyang 已提交
44
  install_main_dir="${installDir}"
45

Z
change  
zyyang 已提交
46
  bin_dir="${installDir}/bin"
47
else
Z
change  
zyyang 已提交
48 49
  data_dir="/usr/local${dataDir}"
  log_dir="/usr/local${logDir}"
50

Z
change  
zyyang 已提交
51
  cfg_install_dir="/usr/local${configDir}"
52

Z
change  
zyyang 已提交
53 54 55
  bin_link_dir="/usr/local/bin"
  lib_link_dir="/usr/local/lib"
  inc_link_dir="/usr/local/include"
H
hzcheng 已提交
56

Z
change  
zyyang 已提交
57 58
  install_main_dir="/usr/local/Cellar/tdengine/${verNumber}"
  install_main_2_dir="/usr/local/Cellar/tdengine@${verNumber}/${verNumber}"
59

Z
change  
zyyang 已提交
60 61
  bin_dir="/usr/local/Cellar/tdengine/${verNumber}/bin"
  bin_2_dir="/usr/local/Cellar/tdengine@${verNumber}/${verNumber}/bin"
62
fi
H
hzcheng 已提交
63 64 65 66 67 68 69 70 71 72

service_config_dir="/etc/systemd/system"

# Color setting
RED='\033[0;31m'
GREEN='\033[1;32m'
GREEN_DARK='\033[0;32m'
GREEN_UNDERLINE='\033[4;32m'
NC='\033[0m'

P
plum-lihui 已提交
73 74
csudo=""

75 76 77
service_mod=2
os_type=0

S
slguan 已提交
78
if [ "$osType" != "Darwin" ]; then
Z
change  
zyyang 已提交
79
  if command -v sudo >/dev/null; then
80
    csudo="sudo "
Z
change  
zyyang 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93
  fi
  initd_mod=0
  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
S
slguan 已提交
94
    else
Z
change  
zyyang 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
      service_mod=2
    fi
  else
    service_mod=2
  fi

  # get the operating system type for using the corresponding init file
  # ubuntu/debian(deb), centos/fedora(rpm), others: opensuse, redhat, ..., no verification
  #osinfo=$(awk -F= '/^NAME/{print $2}' /etc/os-release)
  osinfo=$(cat /etc/os-release | grep "NAME" | cut -d '"' -f2)
  #echo "osinfo: ${osinfo}"
  if echo $osinfo | grep -qwi "ubuntu"; then
    echo "this is ubuntu system"
    os_type=1
  elif echo $osinfo | grep -qwi "debian"; then
    echo "this is debian system"
    os_type=1
  elif echo $osinfo | grep -qwi "Kylin"; then
    echo "this is Kylin system"
    os_type=1
  elif echo $osinfo | grep -qwi "centos"; then
    echo "this is centos system"
    os_type=2
  elif echo $osinfo | grep -qwi "fedora"; then
    echo "this is fedora system"
    os_type=2
  else
    echo "${osinfo}: This is an officially unverified linux system, If there are any problems with the installation and operation, "
    echo "please feel free to contact ${emailName} for support."
    os_type=1
  fi
L
lihui 已提交
126 127
fi

128
function kill_taosadapter() {
Z
change  
zyyang 已提交
129 130 131 132
  pid=$(ps -ef | grep "taosadapter" | grep -v "grep" | awk '{print $2}')
  if [ -n "$pid" ]; then
    ${csudo}kill -9 $pid || :
  fi
133 134
}

H
huili 已提交
135
function kill_taosd() {
Z
change  
zyyang 已提交
136 137 138 139 140
  ps -ef | grep "${serverName}"
  pid=$(ps -ef | grep -w "${serverName}" | grep -v "grep" | awk '{print $2}')
  if [ -n "$pid" ]; then
    ${csudo}kill -9 $pid || :
  fi
H
huili 已提交
141 142
}

H
hzcheng 已提交
143
function install_main_path() {
Z
change  
zyyang 已提交
144 145 146 147 148 149
  #create install main dir and all sub dir
  if [ "$osType" != "Darwin" ]; then
    ${csudo}rm -rf ${install_main_dir} || :
    ${csudo}mkdir -p ${install_main_dir}
    ${csudo}mkdir -p ${install_main_dir}/cfg
    ${csudo}mkdir -p ${install_main_dir}/bin
150
#    ${csudo}mkdir -p ${install_main_dir}/connector
Z
change  
zyyang 已提交
151 152 153
    ${csudo}mkdir -p ${install_main_dir}/driver
    ${csudo}mkdir -p ${install_main_dir}/examples
    ${csudo}mkdir -p ${install_main_dir}/include
154
#    ${csudo}mkdir -p ${install_main_dir}/init.d
Z
change  
zyyang 已提交
155 156 157 158 159
  else
    ${csudo}rm -rf ${install_main_dir} || ${csudo}rm -rf ${install_main_2_dir} || :
    ${csudo}mkdir -p ${install_main_dir} || ${csudo}mkdir -p ${install_main_2_dir}
    ${csudo}mkdir -p ${install_main_dir}/cfg || ${csudo}mkdir -p ${install_main_2_dir}/cfg
    ${csudo}mkdir -p ${install_main_dir}/bin || ${csudo}mkdir -p ${install_main_2_dir}/bin
160
#    ${csudo}mkdir -p ${install_main_dir}/connector || ${csudo}mkdir -p ${install_main_2_dir}/connector
Z
change  
zyyang 已提交
161 162 163 164
    ${csudo}mkdir -p ${install_main_dir}/driver || ${csudo}mkdir -p ${install_main_2_dir}/driver
    ${csudo}mkdir -p ${install_main_dir}/examples || ${csudo}mkdir -p ${install_main_2_dir}/examples
    ${csudo}mkdir -p ${install_main_dir}/include || ${csudo}mkdir -p ${install_main_2_dir}/include
  fi
H
hzcheng 已提交
165 166 167
}

function install_bin() {
Z
change  
zyyang 已提交
168 169 170 171 172 173 174 175 176 177
  # Remove links
  ${csudo}rm -f ${bin_link_dir}/${clientName} || :
  ${csudo}rm -f ${bin_link_dir}/${serverName} || :
  ${csudo}rm -f ${bin_link_dir}/taosadapter || :
  ${csudo}rm -f ${bin_link_dir}/taosdemo || :
  ${csudo}rm -f ${bin_link_dir}/taosdump || :

  if [ "$osType" != "Darwin" ]; then
    ${csudo}rm -f ${bin_link_dir}/perfMonitor || :
    ${csudo}rm -f ${bin_link_dir}/set_core || :
178 179
    ${csudo}rm -f ${bin_link_dir}/rmtaos   || :
    ${csudo}rm -f ${bin_link_dir}/run_taosd_and_taosadapter.sh || :
Z
change  
zyyang 已提交
180 181
    ${csudo}rm -f ${bin_link_dir}/${uninstallScript} || :

182 183 184 185 186 187 188
    ${csudo}cp -r ${binary_dir}/build/bin/taos ${install_main_dir}/bin || :
    [ -f ${binary_dir}/build/bin/taosBenchmark ] && ${csudo}cp -r ${binary_dir}/build/bin/taosBenchmark ${install_main_dir}/bin || :
    [ -f ${install_main_dir}/bin/taosBenchmark ] && ${csudo}ln -sf ${install_main_dir}/bin/taosBenchmark ${install_main_dir}/bin/taosdemo || :
    [ -f ${binary_dir}/build/bin/taosdump ] && ${csudo}cp -r ${binary_dir}/build/bin/taosdump ${install_main_dir}/bin || :
    [ -f ${binary_dir}/build/bin/taosadapter ] && ${csudo}cp -r ${binary_dir}/build/bin/taosadapter ${install_main_dir}/bin || :
    ${csudo}cp -r ${binary_dir}/build/bin/taosd ${install_main_dir}/bin || :
    ${csudo}cp -r ${binary_dir}/build/bin/tarbitrator ${install_main_dir}/bin || :
Z
change  
zyyang 已提交
189

190
    ${csudo}cp -r ${script_dir}/taosd-dump-cfg.gdb ${install_main_dir}/bin
Z
change  
zyyang 已提交
191 192
    ${csudo}cp -r ${script_dir}/remove.sh ${install_main_dir}/bin
    ${csudo}cp -r ${script_dir}/set_core.sh ${install_main_dir}/bin
193
    ${csudo}cp -r ${script_dir}/run_taosd_and_taosadapter.sh ${install_main_dir}/bin
Z
change  
zyyang 已提交
194 195 196 197 198 199 200 201 202 203 204
    ${csudo}cp -r ${script_dir}/startPre.sh ${install_main_dir}/bin

    ${csudo}chmod 0555 ${install_main_dir}/bin/*
    #Make link
    [ -x ${install_main_dir}/bin/${clientName} ] && ${csudo}ln -s ${install_main_dir}/bin/${clientName} ${bin_link_dir}/${clientName} || :
    [ -x ${install_main_dir}/bin/${serverName} ] && ${csudo}ln -s ${install_main_dir}/bin/${serverName} ${bin_link_dir}/${serverName} || :
    [ -x ${install_main_dir}/bin/taosadapter ] && ${csudo}ln -s ${install_main_dir}/bin/taosadapter ${bin_link_dir}/taosadapter || :
    [ -x ${install_main_dir}/bin/taosdump ] && ${csudo}ln -s ${install_main_dir}/bin/taosdump ${bin_link_dir}/taosdump || :
    [ -x ${install_main_dir}/bin/taosdemo ] && ${csudo}ln -s ${install_main_dir}/bin/taosdemo ${bin_link_dir}/taosdemo || :
    [ -x ${install_main_dir}/bin/perfMonitor ] && ${csudo}ln -s ${install_main_dir}/bin/perfMonitor ${bin_link_dir}/perfMonitor || :
    [ -x ${install_main_dir}/set_core.sh ] && ${csudo}ln -s ${install_main_dir}/bin/set_core.sh ${bin_link_dir}/set_core || :
205
    [ -x ${install_main_dir}/run_taosd_and_taosadapter.sh ]  && ${csudo}ln -s ${install_main_dir}/bin/run_taosd_and_taosadapter.sh ${bin_link_dir}/run_taosd_and_taosadapter.sh || :
Z
change  
zyyang 已提交
206 207 208 209 210 211 212 213 214 215 216 217 218 219
    [ -x ${install_main_dir}/bin/remove.sh ] && ${csudo}ln -s ${install_main_dir}/bin/remove.sh ${bin_link_dir}/${uninstallScript} || :
  else

    ${csudo}cp -r ${binary_dir}/build/bin/* ${install_main_dir}/bin || ${csudo}cp -r ${binary_dir}/build/bin/* ${install_main_2_dir}/bin || :
    ${csudo}cp -r ${script_dir}/taosd-dump-cfg.gdb ${install_main_dir}/bin || ${csudo}cp -r ${script_dir}/taosd-dump-cfg.gdb ${install_main_2_dir} || :
    ${csudo}cp -r ${script_dir}/remove_client.sh ${install_main_dir}/bin || ${csudo}cp -r ${script_dir}/remove_client.sh ${install_main_2_dir}/bin
    ${csudo}chmod 0555 ${install_main_dir}/bin/* || ${csudo}chmod 0555 ${install_main_2_dir}/bin/*
    #Make link
    [ -x ${install_main_dir}/bin/${clientName} ] || [ -x ${install_main_2_dir}/bin/${clientName} ] && ${csudo}ln -s ${install_main_dir}/bin/${clientName} ${bin_link_dir}/${clientName} || ${csudo}ln -s ${install_main_2_dir}/bin/${clientName} || :
    [ -x ${install_main_dir}/bin/${serverName} ] || [ -x ${install_main_2_dir}/bin/${serverName} ] && ${csudo}ln -s ${install_main_dir}/bin/${serverName} ${bin_link_dir}/${serverName} || ${csudo}ln -s ${install_main_2_dir}/bin/${serverName} || :
    [ -x ${install_main_dir}/bin/taosadapter ] || [ -x ${install_main_2_dir}/bin/taosadapter ] && ${csudo}ln -s ${install_main_dir}/bin/taosadapter ${bin_link_dir}/taosadapter || ${csudo}ln -s ${install_main_2_dir}/bin/taosadapter || :
    [ -x ${install_main_dir}/bin/taosdump ] || [ -x ${install_main_2_dir}/bin/taosdump ] && ${csudo}ln -s ${install_main_dir}/bin/taosdump ${bin_link_dir}/taosdump || ln -s ${install_main_2_dir}/bin/taosdump ${bin_link_dir}/taosdump || :
    [ -x ${install_main_dir}/bin/taosdemo ] || [ -x ${install_main_2_dir}/bin/taosdemo ] && ${csudo}ln -s ${install_main_dir}/bin/taosdemo ${bin_link_dir}/taosdemo || ln -s ${install_main_2_dir}/bin/taosdemo ${bin_link_dir}/taosdemo || :
  fi
H
hzcheng 已提交
220
}
221

222
function install_jemalloc() {
Z
change  
zyyang 已提交
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
  if [ "$osType" != "Darwin" ]; then
    /usr/bin/install -c -d /usr/local/bin

    if [ -f "${binary_dir}/build/bin/jemalloc-config" ]; then
      ${csudo}/usr/bin/install -c -m 755 ${binary_dir}/build/bin/jemalloc-config /usr/local/bin
    fi
    if [ -f "${binary_dir}/build/bin/jemalloc.sh" ]; then
      ${csudo}/usr/bin/install -c -m 755 ${binary_dir}/build/bin/jemalloc.sh /usr/local/bin
    fi
    if [ -f "${binary_dir}/build/bin/jeprof" ]; then
      ${csudo}/usr/bin/install -c -m 755 ${binary_dir}/build/bin/jeprof /usr/local/bin
    fi
    if [ -f "${binary_dir}/build/include/jemalloc/jemalloc.h" ]; then
      ${csudo}/usr/bin/install -c -d /usr/local/include/jemalloc
      ${csudo}/usr/bin/install -c -m 644 ${binary_dir}/build/include/jemalloc/jemalloc.h \
        /usr/local/include/jemalloc
    fi
    if [ -f "${binary_dir}/build/lib/libjemalloc.so.2" ]; then
      ${csudo}/usr/bin/install -c -d /usr/local/lib
      ${csudo}/usr/bin/install -c -m 755 ${binary_dir}/build/lib/libjemalloc.so.2 /usr/local/lib
      ${csudo}ln -sf libjemalloc.so.2 /usr/local/lib/libjemalloc.so
      ${csudo}/usr/bin/install -c -d /usr/local/lib
      [ -f ${binary_dir}/build/lib/libjemalloc.a ] &&
        ${csudo}/usr/bin/install -c -m 755 ${binary_dir}/build/lib/libjemalloc.a /usr/local/lib
      [ -f ${binary_dir}/build/lib/libjemalloc_pic.a ] &&
        ${csudo}/usr/bin/install -c -m 755 ${binary_dir}/build/lib/libjemalloc_pic.a /usr/local/lib
      if [ -f "${binary_dir}/build/lib/pkgconfig/jemalloc.pc" ]; then
        ${csudo}/usr/bin/install -c -d /usr/local/lib/pkgconfig
        ${csudo}/usr/bin/install -c -m 644 ${binary_dir}/build/lib/pkgconfig/jemalloc.pc \
          /usr/local/lib/pkgconfig
      fi
      if [ -d /etc/ld.so.conf.d ]; then
        echo "/usr/local/lib" | ${csudo}tee /etc/ld.so.conf.d/jemalloc.conf >/dev/null || echo -e "failed to write /etc/ld.so.conf.d/jemalloc.conf"
        ${csudo}ldconfig
      else
        echo "/etc/ld.so.conf.d not found!"
      fi
260
    fi
Z
change  
zyyang 已提交
261 262 263 264 265 266 267 268 269 270 271
    if [ -f "${binary_dir}/build/share/doc/jemalloc/jemalloc.html" ]; then
      ${csudo}/usr/bin/install -c -d /usr/local/share/doc/jemalloc
      ${csudo}/usr/bin/install -c -m 644 ${binary_dir}/build/share/doc/jemalloc/jemalloc.html \
        /usr/local/share/doc/jemalloc
    fi
    if [ -f "${binary_dir}/build/share/man/man3/jemalloc.3" ]; then
      ${csudo}/usr/bin/install -c -d /usr/local/share/man/man3
      ${csudo}/usr/bin/install -c -m 644 ${binary_dir}/build/share/man/man3/jemalloc.3 \
        /usr/local/share/man/man3
    fi
  fi
272 273 274
}

function install_avro() {
Z
change  
zyyang 已提交
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
  if [ "$osType" != "Darwin" ]; then
    if [ -f "${binary_dir}/build/$1/libavro.so.23.0.0" ] && [ -d /usr/local/$1 ]; then
      ${csudo}/usr/bin/install -c -d /usr/local/$1
      ${csudo}/usr/bin/install -c -m 755 ${binary_dir}/build/$1/libavro.so.23.0.0 /usr/local/$1
      ${csudo}ln -sf libavro.so.23.0.0 /usr/local/$1/libavro.so.23
      ${csudo}ln -sf libavro.so.23 /usr/local/$1/libavro.so
      ${csudo}/usr/bin/install -c -d /usr/local/$1
      [ -f ${binary_dir}/build/$1/libavro.a ] &&
        ${csudo}/usr/bin/install -c -m 755 ${binary_dir}/build/$1/libavro.a /usr/local/$1

      if [ -d /etc/ld.so.conf.d ]; then
        echo "/usr/local/$1" | ${csudo}tee /etc/ld.so.conf.d/libavro.conf >/dev/null || echo -e "failed to write /etc/ld.so.conf.d/libavro.conf"
        ${csudo}ldconfig
      else
        echo "/etc/ld.so.conf.d not found!"
      fi
291
    fi
Z
change  
zyyang 已提交
292
  fi
293
}
H
hzcheng 已提交
294 295

function install_lib() {
Z
change  
zyyang 已提交
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
  # Remove links
  ${csudo}rm -f ${lib_link_dir}/libtaos.* || :
  if [ "$osType" != "Darwin" ]; then
    ${csudo}rm -f ${lib64_link_dir}/libtaos.* || :
  fi

  if [ "$osType" != "Darwin" ]; then
    ${csudo}cp ${binary_dir}/build/lib/libtaos.so.${verNumber} \
      ${install_main_dir}/driver &&
      ${csudo}chmod 777 ${install_main_dir}/driver/*

    ${csudo}ln -sf ${install_main_dir}/driver/libtaos.* ${lib_link_dir}/libtaos.so.1
    ${csudo}ln -sf ${lib_link_dir}/libtaos.so.1 ${lib_link_dir}/libtaos.so

    if [ -d "${lib64_link_dir}" ]; then
      ${csudo}ln -sf ${install_main_dir}/driver/libtaos.* ${lib64_link_dir}/libtaos.so.1
      ${csudo}ln -sf ${lib64_link_dir}/libtaos.so.1 ${lib64_link_dir}/libtaos.so
    fi
  else
    ${csudo}cp -Rf ${binary_dir}/build/lib/libtaos.${verNumber}.dylib \
      ${install_main_dir}/driver ||
      ${csudo}cp -Rf ${binary_dir}/build/lib/libtaos.${verNumber}.dylib \
        ${install_main_2_dir}/driver &&
      ${csudo}chmod 777 ${install_main_dir}/driver/* ||
      ${csudo}chmod 777 ${install_main_2_dir}/driver/*

    ${csudo}ln -sf ${install_main_dir}/driver/libtaos.* \
      ${install_main_dir}/driver/libtaos.1.dylib ||
      ${csudo}ln -sf ${install_main_2_dir}/driver/libtaos.* \
        ${install_main_2_dir}/driver/libtaos.1.dylib || :

    ${csudo}ln -sf ${install_main_dir}/driver/libtaos.1.dylib \
      ${install_main_dir}/driver/libtaos.dylib ||
      ${csudo}ln -sf ${install_main_2_dir}/driver/libtaos.1.dylib \
        ${install_main_2_dir}/driver/libtaos.dylib || :

    ${csudo}ln -sf ${install_main_dir}/driver/libtaos.${verNumber}.dylib \
      ${lib_link_dir}/libtaos.1.dylib ||
      ${csudo}ln -sf ${install_main_2_dir}/driver/libtaos.${verNumber}.dylib \
        ${lib_link_dir}/libtaos.1.dylib || :

    ${csudo}ln -sf ${lib_link_dir}/libtaos.1.dylib ${lib_link_dir}/libtaos.dylib || :
  fi

  install_jemalloc
  install_avro lib
  install_avro lib64

  if [ "$osType" != "Darwin" ]; then
    ${csudo}ldconfig
  fi
H
hzcheng 已提交
347 348 349 350
}

function install_header() {

Z
change  
zyyang 已提交
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
  if [ "$osType" != "Darwin" ]; then
    ${csudo}rm -f ${inc_link_dir}/taos.h ${inc_link_dir}/taosdef.h ${inc_link_dir}/taoserror.h || :
    ${csudo}cp -f ${source_dir}/src/inc/taos.h ${source_dir}/src/inc/taosdef.h ${source_dir}/src/inc/taoserror.h \
      ${install_main_dir}/include && ${csudo}chmod 644 ${install_main_dir}/include/*
    ${csudo}ln -s ${install_main_dir}/include/taos.h ${inc_link_dir}/taos.h
    ${csudo}ln -s ${install_main_dir}/include/taosdef.h ${inc_link_dir}/taosdef.h
    ${csudo}ln -s ${install_main_dir}/include/taoserror.h ${inc_link_dir}/taoserror.h
  else
    ${csudo}cp -f ${source_dir}/src/inc/taos.h ${source_dir}/src/inc/taosdef.h ${source_dir}/src/inc/taoserror.h \
      ${install_main_dir}/include ||
      ${csudo}cp -f ${source_dir}/src/inc/taos.h ${source_dir}/src/inc/taosdef.h ${source_dir}/src/inc/taoserror.h \
        ${install_main_2_dir}/include &&
      ${csudo}chmod 644 ${install_main_dir}/include/* ||
      ${csudo}chmod 644 ${install_main_2_dir}/include/*
  fi
H
hzcheng 已提交
366 367 368
}

function install_config() {
Z
change  
zyyang 已提交
369 370 371 372 373 374 375 376 377 378 379 380 381
  if [ ! -f ${cfg_install_dir}/${configFile} ]; then
    ${csudo}mkdir -p ${cfg_install_dir}
    [ -f ${script_dir}/../cfg/${configFile} ] &&
      ${csudo}cp ${script_dir}/../cfg/${configFile} ${cfg_install_dir}
    ${csudo}chmod 644 ${cfg_install_dir}/${configFile}
    ${csudo}cp -f ${script_dir}/../cfg/${configFile} \
      ${cfg_install_dir}/${configFile}.${verNumber}
    ${csudo}ln -s ${cfg_install_dir}/${configFile} \
      ${install_main_dir}/cfg/${configFile}
  else
    ${csudo}cp -f ${script_dir}/../cfg/${configFile} \
      ${cfg_install_dir}/${configFile}.${verNumber}
  fi
H
hzcheng 已提交
382 383
}

384
function install_taosadapter_config() {
Z
change  
zyyang 已提交
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
  if [ ! -f "${cfg_install_dir}/taosadapter.toml" ]; then
    ${csudo}mkdir -p ${cfg_install_dir}
    [ -f ${binary_dir}/test/cfg/taosadapter.toml ] &&
      ${csudo}cp ${binary_dir}/test/cfg/taosadapter.toml ${cfg_install_dir}
    [ -f ${cfg_install_dir}/taosadapter.toml ] &&
      ${csudo}chmod 644 ${cfg_install_dir}/taosadapter.toml
    [ -f ${binary_dir}/test/cfg/taosadapter.toml ] &&
      ${csudo}cp -f ${binary_dir}/test/cfg/taosadapter.toml \
        ${cfg_install_dir}/taosadapter.toml.${verNumber}
    [ -f ${cfg_install_dir}/taosadapter.toml ] &&
      ${csudo}ln -s ${cfg_install_dir}/taosadapter.toml \
        ${install_main_dir}/cfg/taosadapter.toml
  else
    if [ -f "${binary_dir}/test/cfg/taosadapter.toml" ]; then
      ${csudo}cp -f ${binary_dir}/test/cfg/taosadapter.toml \
        ${cfg_install_dir}/taosadapter.toml.${verNumber}
    fi
  fi
403 404
}

405
function install_log() {
Z
change  
zyyang 已提交
406 407 408 409 410 411 412
  ${csudo}rm -rf ${log_dir} || :
  ${csudo}mkdir -p ${log_dir} && ${csudo}chmod 777 ${log_dir}
  if [ "$osType" != "Darwin" ]; then
    ${csudo}ln -s ${log_dir} ${install_main_dir}/log
  else
    ${csudo}ln -s ${log_dir} ${install_main_dir}/log || ${csudo}ln -s ${log_dir} ${install_main_2_dir}/log
  fi
H
hzcheng 已提交
413 414 415
}

function install_data() {
Z
change  
zyyang 已提交
416 417 418 419 420 421
  ${csudo}mkdir -p ${data_dir}
  if [ "$osType" != "Darwin" ]; then
    ${csudo}ln -s ${data_dir} ${install_main_dir}/data
  else
    ${csudo}ln -s ${data_dir} ${install_main_dir}/data || ${csudo}ln -s ${data_dir} ${install_main_2_dir}/data
  fi
H
hzcheng 已提交
422 423 424
}

function install_connector() {
Z
change  
zyyang 已提交
425 426 427 428 429 430 431 432 433 434 435 436 437
  if find ${source_dir}/src/connector/go -mindepth 1 -maxdepth 1 | read; then
    ${csudo}cp -r ${source_dir}/src/connector/go ${install_main_dir}/connector
  else
    echo "WARNING: go connector not found, please check if want to use it!"
  fi
  if [ "$osType" != "Darwin" ]; then
    ${csudo}cp -rf ${source_dir}/src/connector/python ${install_main_dir}/connector
    ${csudo}cp ${binary_dir}/build/lib/*.jar ${install_main_dir}/connector &>/dev/null && ${csudo}chmod 777 ${install_main_dir}/connector/*.jar || echo &>/dev/null
  else
    ${csudo}cp -rf ${source_dir}/src/connector/python ${install_main_dir}/connector || ${csudo}cp -rf ${source_dir}/src/connector/python ${install_main_2_dir}/connector
    ${csudo}cp ${binary_dir}/build/lib/*.jar ${install_main_dir}/connector &>/dev/null && ${csudo}chmod 777 ${install_main_dir}/connector/*.jar || echo &>/dev/null
    ${csudo}cp ${binary_dir}/build/lib/*.jar ${install_main_2_dir}/connector &>/dev/null && ${csudo}chmod 777 ${install_main_2_dir}/connector/*.jar || echo &>/dev/null
  fi
H
hzcheng 已提交
438 439 440
}

function install_examples() {
Z
change  
zyyang 已提交
441 442 443 444 445
  if [ "$osType" != "Darwin" ]; then
    ${csudo}cp -rf ${source_dir}/tests/examples/* ${install_main_dir}/examples
  else
    ${csudo}cp -rf ${source_dir}/tests/examples/* ${install_main_dir}/examples || ${csudo}cp -rf ${source_dir}/tests/examples/* ${install_main_2_dir}/examples
  fi
H
hzcheng 已提交
446 447 448
}

function clean_service_on_sysvinit() {
Z
change  
zyyang 已提交
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
  if pidof ${serverName} &>/dev/null; then
    ${csudo}service ${serverName} stop || :
  fi

  if ((${initd_mod} == 1)); then
    ${csudo}chkconfig --del ${serverName} || :
  elif ((${initd_mod} == 2)); then
    ${csudo}insserv -r ${serverName} || :
  elif ((${initd_mod} == 3)); then
    ${csudo}update-rc.d -f ${serverName} remove || :
  fi

  ${csudo}rm -f ${service_config_dir}/${serverName} || :

  if $(which init &>/dev/null); then
    ${csudo}init q || :
  fi
H
hzcheng 已提交
466 467 468
}

function install_service_on_sysvinit() {
Z
change  
zyyang 已提交
469 470 471 472 473 474
  clean_service_on_sysvinit

  sleep 1

  # Install taosd service
  if ((${os_type} == 1)); then
475
#    ${csudo}cp -f ${script_dir}/../deb/${serverName} ${install_main_dir}/init.d
Z
change  
zyyang 已提交
476 477
    ${csudo}cp ${script_dir}/../deb/${serverName} ${service_config_dir} && ${csudo}chmod a+x ${service_config_dir}/${serverName}
  elif ((${os_type} == 2)); then
478
#    ${csudo}cp -f ${script_dir}/../rpm/${serverName} ${install_main_dir}/init.d
Z
change  
zyyang 已提交
479 480 481 482 483 484 485 486 487 488 489 490
    ${csudo}cp ${script_dir}/../rpm/${serverName} ${service_config_dir} && ${csudo}chmod a+x ${service_config_dir}/${serverName}
  fi

  if ((${initd_mod} == 1)); then
    ${csudo}chkconfig --add ${serverName} || :
    ${csudo}chkconfig --level 2345 ${serverName} on || :
  elif ((${initd_mod} == 2)); then
    ${csudo}insserv ${serverName} || :
    ${csudo}insserv -d ${serverName} || :
  elif ((${initd_mod} == 3)); then
    ${csudo}update-rc.d ${serverName} defaults || :
  fi
H
hzcheng 已提交
491 492 493
}

function clean_service_on_systemd() {
Z
change  
zyyang 已提交
494
  taosd_service_config="${service_config_dir}/${serverName}.service"
H
hzcheng 已提交
495

Z
change  
zyyang 已提交
496 497 498 499 500
  if systemctl is-active --quiet ${serverName}; then
    echo "${productName} is running, stopping it..."
    ${csudo}systemctl stop ${serverName} &>/dev/null || echo &>/dev/null
  fi
  ${csudo}systemctl disable ${serverName} &>/dev/null || echo &>/dev/null
H
hzcheng 已提交
501

Z
change  
zyyang 已提交
502
  ${csudo}rm -f ${taosd_service_config}
503
}
H
hzcheng 已提交
504 505

function install_service_on_systemd() {
Z
change  
zyyang 已提交
506 507 508 509 510 511
  clean_service_on_systemd

  taosd_service_config="${service_config_dir}/${serverName}.service"

  ${csudo}bash -c "echo '[Unit]'                             >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'Description=${productName} server service' >> ${taosd_service_config}"
512 513
  ${csudo}bash -c "echo 'After=network-online.target'        >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'Wants=network-online.target'        >> ${taosd_service_config}"
Z
change  
zyyang 已提交
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
  ${csudo}bash -c "echo                                      >> ${taosd_service_config}"
  ${csudo}bash -c "echo '[Service]'                          >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'Type=simple'                        >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'ExecStart=/usr/bin/${serverName}'           >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'ExecStartPre=${installDir}/bin/startPre.sh'           >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'TimeoutStopSec=1000000s'            >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'LimitNOFILE=infinity'               >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'LimitNPROC=infinity'                >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'LimitCORE=infinity'                 >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'TimeoutStartSec=0'                  >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'StandardOutput=null'                >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'Restart=always'                     >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'StartLimitBurst=3'                  >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'StartLimitInterval=60s'             >> ${taosd_service_config}"
  ${csudo}bash -c "echo                                      >> ${taosd_service_config}"
  ${csudo}bash -c "echo '[Install]'                          >> ${taosd_service_config}"
  ${csudo}bash -c "echo 'WantedBy=multi-user.target'         >> ${taosd_service_config}"
  ${csudo}systemctl enable ${serverName}
H
hzcheng 已提交
532 533
}

534
function install_taosadapter_service() {
Z
change  
zyyang 已提交
535 536 537 538 539 540
  if ((${service_mod} == 0)); then
    [ -f ${binary_dir}/test/cfg/taosadapter.service ] &&
      ${csudo}cp ${binary_dir}/test/cfg/taosadapter.service \
        ${service_config_dir}/ || :
    ${csudo}systemctl daemon-reload
  fi
541 542
}

H
hzcheng 已提交
543
function install_service() {
Z
change  
zyyang 已提交
544 545 546 547 548 549 550 551
  if ((${service_mod} == 0)); then
    install_service_on_systemd
  elif ((${service_mod} == 1)); then
    install_service_on_sysvinit
  else
    # must manual stop taosd
    kill_taosd
  fi
H
hzcheng 已提交
552 553 554
}

function update_TDengine() {
Z
change  
zyyang 已提交
555 556 557 558 559 560 561 562
  echo -e "${GREEN}Start to update ${productName}...${NC}"
  # Stop the service if running

  if pidof ${serverName} &>/dev/null; then
    if ((${service_mod} == 0)); then
      ${csudo}systemctl stop ${serverName} || :
    elif ((${service_mod} == 1)); then
      ${csudo}service ${serverName} stop || :
S
slguan 已提交
563
    else
Z
change  
zyyang 已提交
564 565
      kill_taosadapter
      kill_taosd
S
slguan 已提交
566
    fi
Z
change  
zyyang 已提交
567 568 569 570 571 572 573 574
    sleep 1
  fi

  install_main_path

  install_log
  install_header
  install_lib
575
#  install_connector
Z
change  
zyyang 已提交
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
  install_examples
  install_bin

  install_service
  install_taosadapter_service

  install_config
  install_taosadapter_config

  echo
  echo -e "\033[44;32;1m${productName} is updated successfully!${NC}"
  echo

  echo -e "${GREEN_DARK}To configure ${productName} ${NC}: edit ${configDir}/${configFile}"
  echo -e "${GREEN_DARK}To configure Taos Adapter (if has) ${NC}: edit ${configDir}/taosadapter.toml"
  if ((${service_mod} == 0)); then
    echo -e "${GREEN_DARK}To start ${productName}     ${NC}: ${csudo}systemctl start ${serverName}${NC}"
  elif ((${service_mod} == 1)); then
    echo -e "${GREEN_DARK}To start ${productName}     ${NC}: ${csudo}service ${serverName} start${NC}"
  else
    echo -e "${GREEN_DARK}To start Taos Adapter (if has)${NC}: taosadapter &${NC}"
    echo -e "${GREEN_DARK}To start ${productName}     ${NC}: ${serverName}${NC}"
  fi

  echo -e "${GREEN_DARK}To access ${productName}    ${NC}: use ${GREEN_UNDERLINE}${clientName}${NC} in shell${NC}"
  echo
  echo -e "\033[44;32;1m${productName} is updated successfully!${NC}"
H
hzcheng 已提交
603 604 605
}

function install_TDengine() {
Z
change  
zyyang 已提交
606 607 608 609 610 611 612 613 614
  # Start to install
  echo -e "${GREEN}Start to install ${productName}...${NC}"

  install_main_path

  install_data
  install_log
  install_header
  install_lib
615
#  install_connector
Z
change  
zyyang 已提交
616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
  install_examples
  install_bin

  install_service
  install_taosadapter_service

  install_config
  install_taosadapter_config

  # Ask if to start the service
  echo
  echo -e "\033[44;32;1m${productName} is installed successfully!${NC}"
  echo
  echo -e "${GREEN_DARK}To configure ${productName} ${NC}: edit ${configDir}/${configFile}"
  echo -e "${GREEN_DARK}To configure taosadapter (if has) ${NC}: edit ${configDir}/taosadapter.toml"
  if ((${service_mod} == 0)); then
    echo -e "${GREEN_DARK}To start ${productName}     ${NC}: ${csudo}systemctl start ${serverName}${NC}"
  elif ((${service_mod} == 1)); then
    echo -e "${GREEN_DARK}To start ${productName}    ${NC}: ${csudo}service ${serverName} start${NC}"
  else
    echo -e "${GREEN_DARK}To start Taos Adapter (if has)${NC}: taosadapter &${NC}"
    echo -e "${GREEN_DARK}To start ${productName}     ${NC}: ./${serverName}${NC}"
  fi

  echo -e "${GREEN_DARK}To access ${productName}    ${NC}: use ${GREEN_UNDERLINE}${clientName}${NC} in shell${NC}"
  echo
  echo -e "\033[44;32;1m${productName} is installed successfully!${NC}"
H
hzcheng 已提交
643 644 645 646 647
}

## ==============================Main program starts from here============================
echo source directory: $1
echo binary directory: $2
648
if [ "$osType" != "Darwin" ]; then
Z
change  
zyyang 已提交
649 650 651 652 653
  if [ -x ${bin_dir}/${clientName} ]; then
    update_TDengine
  else
    install_TDengine
  fi
H
hzcheng 已提交
654
else
Z
change  
zyyang 已提交
655 656 657 658 659
  if [ -x ${bin_dir}/${clientName} ] || [ -x ${bin_2_dir}/${clientName} ]; then
    update_TDengine
  else
    install_TDengine
  fi
H
hzcheng 已提交
660
fi