post.sh 17.9 KB
Newer Older
H
hzcheng 已提交
1 2
#!/bin/bash
#
3
# This file is used to install tdengine rpm package on centos systems. The operating system
H
hzcheng 已提交
4
# is required to use systemd to manage services at boot
5
# set -x
H
Hui Li 已提交
6 7 8 9

iplist=""
serverFqdn=""

H
hzcheng 已提交
10
# -----------------------Variables definition---------------------
F
Frozen 已提交
11
script_dir=$(dirname $(readlink -f "$0"))
H
hzcheng 已提交
12 13 14 15 16
# Dynamic directory
data_dir="/var/lib/taos"
log_dir="/var/log/taos"
data_link_dir="/usr/local/taos/data"
log_link_dir="/usr/local/taos/log"
H
Hui Li 已提交
17
install_main_dir="/usr/local/taos"
H
hzcheng 已提交
18 19 20 21 22 23 24 25 26 27 28

# static directory
cfg_dir="/usr/local/taos/cfg"
bin_dir="/usr/local/taos/bin"
lib_dir="/usr/local/taos/driver"
init_d_dir="/usr/local/taos/init.d"
inc_dir="/usr/local/taos/include"

cfg_install_dir="/etc/taos"
bin_link_dir="/usr/bin"
lib_link_dir="/usr/lib"
H
Hui Li 已提交
29
lib64_link_dir="/usr/lib64"
H
hzcheng 已提交
30 31 32 33 34 35 36 37 38 39 40 41
inc_link_dir="/usr/include"

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 已提交
42 43 44 45 46
csudo=""
if command -v sudo > /dev/null; then
    csudo="sudo"
fi

H
[NONE]  
huili 已提交
47
initd_mod=0
P
plum-lihui 已提交
48 49 50
service_mod=2
if pidof systemd &> /dev/null; then
    service_mod=0
51
elif $(which service &> /dev/null); then
H
[NONE]  
huili 已提交
52
    service_mod=1
53
    service_config_dir="/etc/init.d"
L
lihui 已提交
54
    if $(which chkconfig &> /dev/null); then
55
         initd_mod=1
L
lihui 已提交
56 57 58 59 60 61 62
    elif $(which insserv &> /dev/null); then
        initd_mod=2
    elif $(which update-rc.d &> /dev/null); then
        initd_mod=3
    else
        service_mod=2
    fi
63
else
P
plum-lihui 已提交
64 65 66
    service_mod=2
fi

67 68 69 70 71 72 73 74
function kill_blm3() {
#  ${csudo} pkill -f blm3 || :
  pid=$(ps -ef | grep "blm3" | grep -v "grep" | awk '{print $2}')
  if [ -n "$pid" ]; then
    ${csudo} kill -9 $pid   || :
  fi
}

P
plum-lihui 已提交
75
function kill_taosd() {
H
[NONE]  
huili 已提交
76 77
#  ${csudo} pkill -f taosd || :
  pid=$(ps -ef | grep "taosd" | grep -v "grep" | awk '{print $2}')
L
lihui 已提交
78 79 80
  if [ -n "$pid" ]; then
    ${csudo} kill -9 $pid   || :
  fi
H
hzcheng 已提交
81 82 83
}

function install_include() {
L
lihui 已提交
84
    ${csudo} rm -f ${inc_link_dir}/taos.h ${inc_link_dir}/taoserror.h|| :
85 86
    ${csudo} ln -s ${inc_dir}/taos.h ${inc_link_dir}/taos.h
    ${csudo} ln -s ${inc_dir}/taoserror.h ${inc_link_dir}/taoserror.h
H
hzcheng 已提交
87 88
}

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
function install_avro_lib() {
    ${csudo} rm -f ${lib_link_dir}/libavro* || :
    ${csudo} rm -f ${lib64_link_dir}/libavro* || :

    if [[ -f ${lib_dir}/libavro.so.23.0.0 ]]; then
        ${csudo} ln -s ${lib_dir}/libavro.so.23.0.0 ${lib_link_dir}/libavro.so.23.0.0
        ${csudo} ln -s ${lib_link_dir}/libavro.so.23.0.0 ${lib_link_dir}/libavro.so.23
        ${csudo} ln -s ${lib_link_dir}/libavro.so.23 ${lib_link_dir}/libavro.so

        if [[ -d ${lib64_link_dir} && ! -e ${lib64_link_dir}/libavro.so ]]; then
            ${csudo} ln -s ${lib_dir}/libavro.so.23.0.0 ${lib64_link_dir}/libavro.so.23.0.0           || :
            ${csudo} ln -s ${lib64_link_dir}/libavro.so.23.0.0 ${lib64_link_dir}/libavro.so.23   || :
            ${csudo} ln -s ${lib64_link_dir}/libavro.so.23 ${lib64_link_dir}/libavro.so   || :
        fi
    fi

    ${csudo} ldconfig
}
H
hzcheng 已提交
107
function install_lib() {
H
huili 已提交
108
    ${csudo} rm -f ${lib_link_dir}/libtaos* || :
H
Hui Li 已提交
109
    ${csudo} rm -f ${lib64_link_dir}/libtaos* || :
110

P
plum-lihui 已提交
111 112
    ${csudo} ln -s ${lib_dir}/libtaos.* ${lib_link_dir}/libtaos.so.1
    ${csudo} ln -s ${lib_link_dir}/libtaos.so.1 ${lib_link_dir}/libtaos.so
113

114 115 116 117
    if [[ -d ${lib64_link_dir} && ! -e ${lib64_link_dir}/libtaos.so ]]; then
      ${csudo} ln -s ${lib_dir}/libtaos.* ${lib64_link_dir}/libtaos.so.1           || :
      ${csudo} ln -s ${lib64_link_dir}/libtaos.so.1 ${lib64_link_dir}/libtaos.so   || :
    fi
118 119

    ${csudo} ldconfig
H
hzcheng 已提交
120 121 122 123
}

function install_bin() {
    # Remove links
P
plum-lihui 已提交
124 125
    ${csudo} rm -f ${bin_link_dir}/taos     || :
    ${csudo} rm -f ${bin_link_dir}/taosd    || :
126
    ${csudo} rm -f ${bin_link_dir}/blm3     || :
S
slguan 已提交
127
    ${csudo} rm -f ${bin_link_dir}/taosdemo || :
H
Hui Li 已提交
128
    ${csudo} rm -f ${bin_link_dir}/taosdump || :
P
plum-lihui 已提交
129
    ${csudo} rm -f ${bin_link_dir}/rmtaos   || :
H
Hui Li 已提交
130
    ${csudo} rm -f ${bin_link_dir}/set_core || :
H
hzcheng 已提交
131

P
plum-lihui 已提交
132
    ${csudo} chmod 0555 ${bin_dir}/*
H
hzcheng 已提交
133 134

    #Make link
P
plum-lihui 已提交
135 136
    [ -x ${bin_dir}/taos ] && ${csudo} ln -s ${bin_dir}/taos ${bin_link_dir}/taos             || :
    [ -x ${bin_dir}/taosd ] && ${csudo} ln -s ${bin_dir}/taosd ${bin_link_dir}/taosd          || :
137
    [ -x ${bin_dir}/blm3 ] && ${csudo} ln -s ${bin_dir}/blm3 ${bin_link_dir}/blm3             || :
S
slguan 已提交
138
    [ -x ${bin_dir}/taosdemo ] && ${csudo} ln -s ${bin_dir}/taosdemo ${bin_link_dir}/taosdemo || :
H
Hui Li 已提交
139
    [ -x ${bin_dir}/taosdump ] && ${csudo} ln -s ${bin_dir}/taosdump ${bin_link_dir}/taosdump || :
H
Hui Li 已提交
140
    [ -x ${bin_dir}/set_core.sh ] && ${csudo} ln -s ${bin_dir}/set_core.sh ${bin_link_dir}/set_core || :
H
hzcheng 已提交
141 142
}

H
Hui Li 已提交
143 144 145 146 147 148 149
function add_newHostname_to_hosts() {
  localIp="127.0.0.1"
  OLD_IFS="$IFS"
  IFS=" "
  iphost=$(cat /etc/hosts | grep $1 | awk '{print $1}')
  arr=($iphost)
  IFS="$OLD_IFS"
150
  for s in "${arr[@]}"
H
Hui Li 已提交
151 152 153 154
  do
    if [[ "$s" == "$localIp" ]]; then
      return
    fi
155
  done
H
Hui Li 已提交
156 157 158 159 160
  ${csudo} echo "127.0.0.1  $1" >> /etc/hosts   ||:
}

function set_hostname() {
  echo -e -n "${GREEN}Please enter one hostname(must not be 'localhost')${NC}:"
161
  read newHostname
H
Hui Li 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174
  while true; do
    if [[ ! -z "$newHostname" && "$newHostname" != "localhost" ]]; then
      break
    else
      read -p "Please enter one hostname(must not be 'localhost'):" newHostname
    fi
  done

  ${csudo} hostname $newHostname ||:
  retval=`echo $?`
  if [[ $retval != 0 ]]; then
   echo
   echo "set hostname fail!"
175
   return
H
Hui Li 已提交
176 177 178 179
  fi
  #echo -e -n "$(hostnamectl status --static)"
  #echo -e -n "$(hostnamectl status --transient)"
  #echo -e -n "$(hostnamectl status --pretty)"
180

H
Hui Li 已提交
181 182 183 184
  #ubuntu/centos /etc/hostname
  if [[ -e /etc/hostname ]]; then
    ${csudo} echo $newHostname > /etc/hostname   ||:
  fi
185

H
Hui Li 已提交
186 187 188 189 190 191
  #debian: #HOSTNAME=yourname
  if [[ -e /etc/sysconfig/network ]]; then
    ${csudo} sed -i -r "s/#*\s*(HOSTNAME=\s*).*/\1$newHostname/" /etc/sysconfig/network   ||:
  fi

  ${csudo} sed -i -r "s/#*\s*(fqdn\s*).*/\1$newHostname/" ${cfg_install_dir}/taos.cfg
192 193
  serverFqdn=$newHostname

H
Hui Li 已提交
194 195 196 197 198 199 200 201 202 203 204
  if [[ -e /etc/hosts ]]; then
    add_newHostname_to_hosts $newHostname
  fi
}

function is_correct_ipaddr() {
  newIp=$1
  OLD_IFS="$IFS"
  IFS=" "
  arr=($iplist)
  IFS="$OLD_IFS"
205
  for s in "${arr[@]}"
H
Hui Li 已提交
206 207 208 209 210
  do
   if [[ "$s" == "$newIp" ]]; then
     return 0
   fi
  done
211

H
Hui Li 已提交
212 213 214 215 216 217 218 219 220 221 222 223 224
  return 1
}

function set_ipAsFqdn() {
  iplist=$(ip address |grep inet |grep -v inet6 |grep -v 127.0.0.1 |awk '{print $2}' |awk -F "/" '{print $1}') ||:
  if [ -z "$iplist" ]; then
    iplist=$(ifconfig |grep inet |grep -v inet6 |grep -v 127.0.0.1 |awk '{print $2}' |awk -F ":" '{print $2}') ||:
  fi

  if [ -z "$iplist" ]; then
    echo
    echo -e -n "${GREEN}Unable to get local ip, use 127.0.0.1${NC}"
    localFqdn="127.0.0.1"
225 226
    # Write the local FQDN to configuration file
    ${csudo} sed -i -r "s/#*\s*(fqdn\s*).*/\1$localFqdn/" ${cfg_install_dir}/taos.cfg
H
Hui Li 已提交
227 228 229
    serverFqdn=$localFqdn
    echo
    return
230 231
  fi

H
Hui Li 已提交
232 233 234 235 236 237 238 239
  echo -e -n "${GREEN}Please choose an IP from local IP list${NC}:"
  echo
  echo -e -n "${GREEN}$iplist${NC}"
  echo
  echo
  echo -e -n "${GREEN}Notes: if IP is used as the node name, data can NOT be migrated to other machine directly${NC}:"
  read localFqdn
    while true; do
240
      if [ ! -z "$localFqdn" ]; then
H
Hui Li 已提交
241 242 243 244 245 246
        # Check if correct ip address
        is_correct_ipaddr $localFqdn
        retval=`echo $?`
        if [[ $retval != 0 ]]; then
          read -p "Please choose an IP from local IP list:" localFqdn
        else
247 248
          # Write the local FQDN to configuration file
          ${csudo} sed -i -r "s/#*\s*(fqdn\s*).*/\1$localFqdn/" ${cfg_install_dir}/taos.cfg
H
Hui Li 已提交
249 250 251 252 253 254 255 256 257 258
          serverFqdn=$localFqdn
          break
        fi
      else
        read -p "Please choose an IP from local IP list:" localFqdn
      fi
    done
}

function local_fqdn_check() {
H
[NONE]  
Hui Li 已提交
259
  #serverFqdn=$(hostname)
H
Hui Li 已提交
260 261 262
  echo
  echo -e -n "System hostname is: ${GREEN}$serverFqdn${NC}"
  echo
263
  if [[ "$serverFqdn" == "" ]] || [[ "$serverFqdn" == "localhost"  ]]; then
H
Hui Li 已提交
264 265
    echo -e -n "${GREEN}It is strongly recommended to configure a hostname for this machine ${NC}"
    echo
266

H
Hui Li 已提交
267 268
    while true
    do
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
        read -r -p "Set hostname now? [Y/n] " input
        if [ ! -n "$input" ]; then
            set_hostname
            break
        else
            case $input in
            [yY][eE][sS]|[yY])
                set_hostname
                break
                ;;

            [nN][oO]|[nN])
                set_ipAsFqdn
                break
                ;;

            *)
                echo "Invalid input..."
                ;;
            esac
        fi
H
Hui Li 已提交
290 291 292 293
    done
  fi
}

294 295 296 297 298 299 300 301 302 303
function install_blm3_config() {
    if [ ! -f "${cfg_install_dir}/blm.toml" ]; then
        [ ! -d %{cfg_install_dir} ] &&
            ${csudo} ${csudo} mkdir -p ${cfg_install_dir}
        [ -f ${cfg_dir}/blm.toml ] && ${csudo} cp ${cfg_dir}/blm.toml ${cfg_install_dir}
        [ -f ${cfg_install_dir}/blm.toml ] &&
            ${csudo} chmod 644 ${cfg_install_dir}/blm.toml
    fi

    [ -f ${cfg_dir}/blm.toml ] &&
304
        ${csudo} mv ${cfg_dir}/blm.toml ${cfg_dir}/blm.toml.new
305 306 307 308 309

    [ -f ${cfg_install_dir}/blm.toml ] &&
        ${csudo} ln -s ${cfg_install_dir}/blm.toml ${cfg_dir}
}

H
hzcheng 已提交
310
function install_config() {
311
    if [ ! -f "${cfg_install_dir}/taos.cfg" ]; then
P
plum-lihui 已提交
312 313 314
        ${csudo} ${csudo} mkdir -p ${cfg_install_dir}
        [ -f ${cfg_dir}/taos.cfg ] && ${csudo} cp ${cfg_dir}/taos.cfg ${cfg_install_dir}
        ${csudo} chmod 644 ${cfg_install_dir}/*
H
hzcheng 已提交
315
    fi
316

317
    # Save standard input to 6 and open / dev / TTY on standard input
318
    exec 6<&0 0</dev/tty
H
hzcheng 已提交
319

H
Hui Li 已提交
320
    local_fqdn_check
321

322 323
    # restore the backup standard input, and turn off 6
    exec 0<&6 6<&-
H
Hui Li 已提交
324

325
    ${csudo} mv ${cfg_dir}/taos.cfg ${cfg_dir}/taos.cfg.new
P
plum-lihui 已提交
326
    ${csudo} ln -s ${cfg_install_dir}/taos.cfg ${cfg_dir}
H
Hui Li 已提交
327 328 329 330 331 332 333
    #FQDN_FORMAT="(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)"
    #FQDN_FORMAT="(:[1-6][0-9][0-9][0-9][0-9]$)"
    #PORT_FORMAT="(/[1-6][0-9][0-9][0-9][0-9]?/)"
    #FQDN_PATTERN=":[0-9]{1,5}$"

    # first full-qualified domain name (FQDN) for TDengine cluster system
    echo
H
Hui Li 已提交
334 335 336
    echo -e -n "${GREEN}Enter FQDN:port (like h1.taosdata.com:6030) of an existing TDengine cluster node to join${NC}"
    echo
    echo -e -n "${GREEN}OR leave it blank to build one${NC}:"
337 338
    #read firstEp
    if exec < /dev/tty; then
339 340 341
        read firstEp;
    fi
    while true; do
H
Hui Li 已提交
342 343 344
    if [ ! -z "$firstEp" ]; then
        # check the format of the firstEp
        #if [[ $firstEp == $FQDN_PATTERN ]]; then
345 346
            # Write the first FQDN to configuration file
            ${csudo} sed -i -r "s/#*\s*(firstEp\s*).*/\1$firstEp/" ${cfg_install_dir}/taos.cfg
H
Hui Li 已提交
347
            break
H
Hui Li 已提交
348 349 350 351 352 353
        #else
        #    read -p "Please enter the correct FQDN:port: " firstEp
        #fi
    else
        break
    fi
354
  done
H
Hui Li 已提交
355

356
    # user email
H
Hui Li 已提交
357 358 359 360 361 362 363 364 365 366
    #EMAIL_PATTERN='^[A-Za-z0-9\u4e00-\u9fa5]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$'
    #EMAIL_PATTERN='^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$'
    #EMAIL_PATTERN="^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$"
    echo
    echo -e -n "${GREEN}Enter your email address for priority support or enter empty to skip${NC}: "
    read emailAddr
    while true; do
        if [ ! -z "$emailAddr" ]; then
            # check the format of the emailAddr
            #if [[ "$emailAddr" =~ $EMAIL_PATTERN ]]; then
367 368
                # Write the email address to temp file
                email_file="${install_main_dir}/email"
H
Hui Li 已提交
369
                ${csudo} bash -c "echo $emailAddr > ${email_file}"
370
                break
H
Hui Li 已提交
371
            #else
372
            #    read -p "Please enter the correct email address: " emailAddr
H
Hui Li 已提交
373 374 375 376
            #fi
        else
            break
        fi
377
    done
H
hzcheng 已提交
378 379 380
}

function clean_service_on_sysvinit() {
L
lihui 已提交
381
    #restart_config_str="taos:2345:respawn:${service_config_dir}/taosd start"
382 383
    #${csudo} sed -i "\|${restart_config_str}|d" /etc/inittab || :

H
[NONE]  
huili 已提交
384 385 386
    if pidof taosd &> /dev/null; then
        ${csudo} service taosd stop || :
    fi
387

H
[NONE]  
huili 已提交
388
    if ((${initd_mod}==1)); then
L
lihui 已提交
389
        ${csudo} chkconfig --del taosd || :
H
[NONE]  
huili 已提交
390
    elif ((${initd_mod}==2)); then
L
lihui 已提交
391 392 393 394
        ${csudo} insserv -r taosd || :
    elif ((${initd_mod}==3)); then
        ${csudo} update-rc.d -f taosd remove || :
    fi
395

L
lihui 已提交
396
    ${csudo} rm -f ${service_config_dir}/taosd || :
397

L
lihui 已提交
398 399
    if $(which init &> /dev/null); then
        ${csudo} init q || :
H
[NONE]  
huili 已提交
400
    fi
H
hzcheng 已提交
401 402 403 404 405 406 407
}

function install_service_on_sysvinit() {
    clean_service_on_sysvinit

    sleep 1

408
    # Install taosd service
P
plum-lihui 已提交
409
    ${csudo} cp %{init_d_dir}/taosd ${service_config_dir} && ${csudo} chmod a+x ${service_config_dir}/taosd
H
hzcheng 已提交
410

L
lihui 已提交
411 412
    #restart_config_str="taos:2345:respawn:${service_config_dir}/taosd start"
    #${csudo} grep -q -F "$restart_config_str" /etc/inittab || ${csudo} bash -c "echo '${restart_config_str}' >> /etc/inittab"
413

L
lihui 已提交
414 415 416 417 418 419 420 421 422
    if ((${initd_mod}==1)); then
        ${csudo} chkconfig --add taosd || :
        ${csudo} chkconfig --level 2345 taosd on || :
    elif ((${initd_mod}==2)); then
        ${csudo} insserv taosd || :
        ${csudo} insserv -d taosd || :
    elif ((${initd_mod}==3)); then
        ${csudo} update-rc.d taosd defaults || :
    fi
H
hzcheng 已提交
423 424 425 426 427
}

function clean_service_on_systemd() {
    taosd_service_config="${service_config_dir}/taosd.service"

L
lihui 已提交
428
    # taosd service already is stoped before install in preinst script
H
hzcheng 已提交
429 430
    #if systemctl is-active --quiet taosd; then
    #    echo "TDengine is running, stopping it..."
P
plum-lihui 已提交
431
    #    ${csudo} systemctl stop taosd &> /dev/null || echo &> /dev/null
H
hzcheng 已提交
432
    #fi
P
plum-lihui 已提交
433
    ${csudo} systemctl disable taosd &> /dev/null || echo &> /dev/null
H
hzcheng 已提交
434

P
plum-lihui 已提交
435
    ${csudo} rm -f ${taosd_service_config}
H
hzcheng 已提交
436 437 438 439 440 441 442 443 444
}

# taos:2345:respawn:/etc/init.d/taosd start

function install_service_on_systemd() {
    clean_service_on_systemd

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

P
plum-lihui 已提交
445 446
    ${csudo} bash -c "echo '[Unit]'                             >> ${taosd_service_config}"
    ${csudo} bash -c "echo 'Description=TDengine server service' >> ${taosd_service_config}"
447 448
    ${csudo} bash -c "echo 'After=network-online.target blm3.service'        >> ${taosd_service_config}"
    ${csudo} bash -c "echo 'Wants=network-online.target blm3.service'        >> ${taosd_service_config}"
P
plum-lihui 已提交
449 450 451 452
    ${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/taosd'           >> ${taosd_service_config}"
453
    ${csudo} bash -c "echo 'ExecStartPre=/usr/local/taos/bin/startPre.sh'           >> ${taosd_service_config}"
454
    ${csudo} bash -c "echo 'TimeoutStopSec=1000000s'            >> ${taosd_service_config}"
P
plum-lihui 已提交
455 456 457 458 459 460 461 462 463 464 465 466
    ${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 taosd
H
hzcheng 已提交
467 468
}

469
function install_blm3_service() {
470
    [ -f ${cfg_dir}/blm3.service ] && ${csudo} cp ${cfg_dir}/blm3.service ${service_config_dir}
471 472
}

H
hzcheng 已提交
473
function install_service() {
P
plum-lihui 已提交
474
    if ((${service_mod}==0)); then
H
hzcheng 已提交
475
        install_service_on_systemd
P
plum-lihui 已提交
476
    elif ((${service_mod}==1)); then
H
hzcheng 已提交
477
        install_service_on_sysvinit
P
plum-lihui 已提交
478 479
    else
        # manual start taosd
480
        kill_blm3
P
plum-lihui 已提交
481
        kill_taosd
H
hzcheng 已提交
482 483 484 485
    fi
}

function install_TDengine() {
H
Hui Li 已提交
486
    echo -e "${GREEN}Start to install TDengine...${NC}"
H
hzcheng 已提交
487 488

    #install log and data dir , then ln to /usr/local/taos
P
plum-lihui 已提交
489
    ${csudo} mkdir -p ${log_dir} && ${csudo} chmod 777 ${log_dir}
490 491
    ${csudo} mkdir -p ${data_dir}

P
plum-lihui 已提交
492 493
    ${csudo} rm -rf ${log_link_dir}   || :
    ${csudo} rm -rf ${data_link_dir}  || :
494

P
plum-lihui 已提交
495 496
    ${csudo} ln -s ${log_dir} ${log_link_dir}     || :
    ${csudo} ln -s ${data_dir} ${data_link_dir}   || :
497

H
hzcheng 已提交
498 499 500
    # Install include, lib, binary and service
    install_include
    install_lib
501
    install_avro_lib
H
hzcheng 已提交
502
    install_bin
503 504
    install_config
    install_blm3_config
505 506
    install_blm3_service
    install_service
H
hzcheng 已提交
507 508

    # Ask if to start the service
H
Hui Li 已提交
509 510
    #echo
    #echo -e "\033[44;32;1mTDengine is installed successfully!${NC}"
H
hzcheng 已提交
511 512
    echo
    echo -e "${GREEN_DARK}To configure TDengine ${NC}: edit /etc/taos/taos.cfg"
P
plum-lihui 已提交
513 514 515 516 517
    if ((${service_mod}==0)); then
        echo -e "${GREEN_DARK}To start TDengine     ${NC}: ${csudo} systemctl start taosd${NC}"
    elif ((${service_mod}==1)); then
        echo -e "${GREEN_DARK}To start TDengine     ${NC}: ${csudo} update-rc.d taosd default  ${RED} for the first time${NC}"
        echo -e "                      : ${csudo} service taosd start ${RED} after${NC}"
518
    else
P
plum-lihui 已提交
519
        echo -e "${GREEN_DARK}To start TDengine     ${NC}: ./taosd${NC}"
H
hzcheng 已提交
520 521
    fi

H
Hui Li 已提交
522

523

H
Hui Li 已提交
524
    if [ ! -z "$firstEp" ]; then
H
Hui Li 已提交
525 526 527 528 529 530 531 532
      tmpFqdn=${firstEp%%:*}
      substr=":"
      if [[ $firstEp =~ $substr ]];then
        tmpPort=${firstEp#*:}
      else
        tmpPort=""
      fi
      if [[ "$tmpPort" != "" ]];then
533 534 535 536 537
           echo -e "${GREEN_DARK}To access TDengine    ${NC}: taos -h $tmpFqdn -P $tmpPort${GREEN_DARK} to login into cluster, then${NC}"
      else
          echo -e "${GREEN_DARK}To access TDengine    ${NC}: taos -h $tmpFqdn${GREEN_DARK} to login into cluster, then${NC}"
      fi
      echo -e "${GREEN_DARK}execute ${NC}: create dnode 'newDnodeFQDN:port'; ${GREEN_DARK}to add this new node${NC}"
H
Hui Li 已提交
538 539
      echo
    elif [ ! -z "$serverFqdn" ]; then
540
      echo -e "${GREEN_DARK}To access TDengine    ${NC}: taos -h $serverFqdn${GREEN_DARK} to login into TDengine server${NC}"
H
Hui Li 已提交
541
      echo
542
    fi
H
hzcheng 已提交
543 544 545 546 547 548
    echo
    echo -e "\033[44;32;1mTDengine is installed successfully!${NC}"
}


## ==============================Main program starts from here============================
H
[NONE]  
Hui Li 已提交
549
serverFqdn=$(hostname)
H
hzcheng 已提交
550
install_TDengine