post.sh 17.6 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
csudo=""
if command -v sudo > /dev/null; then
44
    csudo="sudo "
P
plum-lihui 已提交
45 46
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
function kill_taosadapter() {
68
#  ${csudo}pkill -f taosadapter || :
69
  pid=$(ps -ef | grep "taosadapter" | grep -v "grep" | awk '{print $2}')
70
  if [ -n "$pid" ]; then
71
    ${csudo}kill -9 $pid   || :
72 73 74
  fi
}

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

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

function install_lib() {
91 92
    ${csudo}rm -f ${lib_link_dir}/libtaos* || :
    ${csudo}rm -f ${lib64_link_dir}/libtaos* || :
93

94 95
    ${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
96

97
    if [[ -d ${lib64_link_dir} && ! -e ${lib64_link_dir}/libtaos.so ]]; then
98 99
      ${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   || :
100
    fi
101

102
    ${csudo}ldconfig
H
hzcheng 已提交
103 104 105 106
}

function install_bin() {
    # Remove links
107 108 109
    ${csudo}rm -f ${bin_link_dir}/taos     || :
    ${csudo}rm -f ${bin_link_dir}/taosd    || :
    ${csudo}rm -f ${bin_link_dir}/taosadapter     || :
110
    ${csudo}rm -f ${bin_link_dir}/taosBenchmark || :
111 112 113 114
    ${csudo}rm -f ${bin_link_dir}/taosdemo || :
    ${csudo}rm -f ${bin_link_dir}/taosdump || :
    ${csudo}rm -f ${bin_link_dir}/rmtaos   || :
    ${csudo}rm -f ${bin_link_dir}/set_core || :
H
hzcheng 已提交
115

116
    ${csudo}chmod 0555 ${bin_dir}/*
H
hzcheng 已提交
117 118

    #Make link
119 120 121
    [ -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          || :
    [ -x ${bin_dir}/taosadapter ] && ${csudo}ln -s ${bin_dir}/taosadapter ${bin_link_dir}/taosadapter             || :
122
    [ -x ${bin_dir}/taosBenchmark ] && ${csudo}ln -sf ${bin_dir}/taosBenchmark ${bin_link_dir}/taosdemo || :
123
    [ -x ${bin_dir}/taosBenchmark ] && ${csudo}ln -sf ${bin_dir}/taosBenchmark ${bin_link_dir}/taosBenchmark || :
124
    [ -x ${bin_dir}/TDinsight.sh ] && ${csudo}ln -sf ${bin_dir}/TDinsight.sh ${bin_link_dir}/TDinsight.sh || :
125 126
    [ -x ${bin_dir}/taosdump ] && ${csudo}ln -s ${bin_dir}/taosdump ${bin_link_dir}/taosdump || :
    [ -x ${bin_dir}/set_core.sh ] && ${csudo}ln -s ${bin_dir}/set_core.sh ${bin_link_dir}/set_core || :
H
hzcheng 已提交
127 128
}

H
Hui Li 已提交
129 130 131 132 133 134 135
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"
136
  for s in "${arr[@]}"
H
Hui Li 已提交
137 138 139 140
  do
    if [[ "$s" == "$localIp" ]]; then
      return
    fi
141
  done
142
  ${csudo}echo "127.0.0.1  $1" >> /etc/hosts   ||:
H
Hui Li 已提交
143 144 145 146
}

function set_hostname() {
  echo -e -n "${GREEN}Please enter one hostname(must not be 'localhost')${NC}:"
147
  read newHostname
H
Hui Li 已提交
148 149 150 151 152 153 154 155
  while true; do
    if [[ ! -z "$newHostname" && "$newHostname" != "localhost" ]]; then
      break
    else
      read -p "Please enter one hostname(must not be 'localhost'):" newHostname
    fi
  done

156
  ${csudo}hostname $newHostname ||:
H
Hui Li 已提交
157 158 159 160
  retval=`echo $?`
  if [[ $retval != 0 ]]; then
   echo
   echo "set hostname fail!"
161
   return
H
Hui Li 已提交
162 163 164 165
  fi
  #echo -e -n "$(hostnamectl status --static)"
  #echo -e -n "$(hostnamectl status --transient)"
  #echo -e -n "$(hostnamectl status --pretty)"
166

H
Hui Li 已提交
167 168
  #ubuntu/centos /etc/hostname
  if [[ -e /etc/hostname ]]; then
169
    ${csudo}echo $newHostname > /etc/hostname   ||:
H
Hui Li 已提交
170
  fi
171

H
Hui Li 已提交
172 173
  #debian: #HOSTNAME=yourname
  if [[ -e /etc/sysconfig/network ]]; then
174
    ${csudo}sed -i -r "s/#*\s*(HOSTNAME=\s*).*/\1$newHostname/" /etc/sysconfig/network   ||:
H
Hui Li 已提交
175 176
  fi

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

H
Hui Li 已提交
180 181 182 183 184 185 186 187 188 189 190
  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"
191
  for s in "${arr[@]}"
H
Hui Li 已提交
192 193 194 195 196
  do
   if [[ "$s" == "$newIp" ]]; then
     return 0
   fi
  done
197

H
Hui Li 已提交
198 199 200 201 202 203 204 205 206 207 208 209 210
  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"
211
    # Write the local FQDN to configuration file
212
    ${csudo}sed -i -r "s/#*\s*(fqdn\s*).*/\1$localFqdn/" ${cfg_install_dir}/taos.cfg
H
Hui Li 已提交
213 214 215
    serverFqdn=$localFqdn
    echo
    return
216 217
  fi

H
Hui Li 已提交
218 219 220 221 222 223 224 225
  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
226
      if [ ! -z "$localFqdn" ]; then
H
Hui Li 已提交
227 228 229 230 231 232
        # 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
233
          # Write the local FQDN to configuration file
234
          ${csudo}sed -i -r "s/#*\s*(fqdn\s*).*/\1$localFqdn/" ${cfg_install_dir}/taos.cfg
H
Hui Li 已提交
235 236 237 238 239 240 241 242 243 244
          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 已提交
245
  #serverFqdn=$(hostname)
H
Hui Li 已提交
246 247 248
  echo
  echo -e -n "System hostname is: ${GREEN}$serverFqdn${NC}"
  echo
249
  if [[ "$serverFqdn" == "" ]] || [[ "$serverFqdn" == "localhost"  ]]; then
H
Hui Li 已提交
250 251
    echo -e -n "${GREEN}It is strongly recommended to configure a hostname for this machine ${NC}"
    echo
252

H
Hui Li 已提交
253 254
    while true
    do
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
        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 已提交
276 277 278 279
    done
  fi
}

280 281
function install_taosadapter_config() {
    if [ ! -f "${cfg_install_dir}/taosadapter.toml" ]; then
282
        [ ! -d %{cfg_install_dir} ] &&
283 284
            ${csudo}${csudo}mkdir -p ${cfg_install_dir}
        [ -f ${cfg_dir}/taosadapter.toml ] && ${csudo}cp ${cfg_dir}/taosadapter.toml ${cfg_install_dir}
285
        [ -f ${cfg_install_dir}/taosadapter.toml ] &&
286
            ${csudo}chmod 644 ${cfg_install_dir}/taosadapter.toml
287 288
    fi

289
    [ -f ${cfg_dir}/taosadapter.toml ] &&
290
        ${csudo}mv ${cfg_dir}/taosadapter.toml ${cfg_dir}/taosadapter.toml.new
291

292
    [ -f ${cfg_install_dir}/taosadapter.toml ] &&
293
        ${csudo}ln -s ${cfg_install_dir}/taosadapter.toml ${cfg_dir}
294 295
}

H
hzcheng 已提交
296
function install_config() {
297
    if [ ! -f "${cfg_install_dir}/taos.cfg" ]; then
298 299 300
        ${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 已提交
301
    fi
302

303
    # Save standard input to 6 and open / dev / TTY on standard input
304
    exec 6<&0 0</dev/tty
H
hzcheng 已提交
305

H
Hui Li 已提交
306
    local_fqdn_check
307

308 309
    # restore the backup standard input, and turn off 6
    exec 0<&6 6<&-
H
Hui Li 已提交
310

311 312
    ${csudo}mv ${cfg_dir}/taos.cfg ${cfg_dir}/taos.cfg.new
    ${csudo}ln -s ${cfg_install_dir}/taos.cfg ${cfg_dir}
H
Hui Li 已提交
313 314 315 316 317 318 319
    #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 已提交
320 321 322
    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}:"
323 324
    #read firstEp
    if exec < /dev/tty; then
325 326 327
        read firstEp;
    fi
    while true; do
H
Hui Li 已提交
328 329 330
    if [ ! -z "$firstEp" ]; then
        # check the format of the firstEp
        #if [[ $firstEp == $FQDN_PATTERN ]]; then
331
            # Write the first FQDN to configuration file
332
            ${csudo}sed -i -r "s/#*\s*(firstEp\s*).*/\1$firstEp/" ${cfg_install_dir}/taos.cfg
H
Hui Li 已提交
333
            break
H
Hui Li 已提交
334 335 336 337 338 339
        #else
        #    read -p "Please enter the correct FQDN:port: " firstEp
        #fi
    else
        break
    fi
340
  done
H
Hui Li 已提交
341

342
    # user email
H
Hui Li 已提交
343 344 345 346 347 348 349 350 351 352
    #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
353 354
                # Write the email address to temp file
                email_file="${install_main_dir}/email"
355
                ${csudo}bash -c "echo $emailAddr > ${email_file}"
356
                break
H
Hui Li 已提交
357
            #else
358
            #    read -p "Please enter the correct email address: " emailAddr
H
Hui Li 已提交
359 360 361 362
            #fi
        else
            break
        fi
363
    done
H
hzcheng 已提交
364 365 366
}

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

H
[NONE]  
huili 已提交
370
    if pidof taosd &> /dev/null; then
371
        ${csudo}service taosd stop || :
H
[NONE]  
huili 已提交
372
    fi
373

H
[NONE]  
huili 已提交
374
    if ((${initd_mod}==1)); then
375
        ${csudo}chkconfig --del taosd || :
H
[NONE]  
huili 已提交
376
    elif ((${initd_mod}==2)); then
377
        ${csudo}insserv -r taosd || :
L
lihui 已提交
378
    elif ((${initd_mod}==3)); then
379
        ${csudo}update-rc.d -f taosd remove || :
L
lihui 已提交
380
    fi
381

382
    ${csudo}rm -f ${service_config_dir}/taosd || :
383

L
lihui 已提交
384
    if $(which init &> /dev/null); then
385
        ${csudo}init q || :
H
[NONE]  
huili 已提交
386
    fi
H
hzcheng 已提交
387 388 389 390 391 392 393
}

function install_service_on_sysvinit() {
    clean_service_on_sysvinit

    sleep 1

394
    # Install taosd service
395
    ${csudo}cp %{init_d_dir}/taosd ${service_config_dir} && ${csudo}chmod a+x ${service_config_dir}/taosd
H
hzcheng 已提交
396

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

L
lihui 已提交
400
    if ((${initd_mod}==1)); then
401 402
        ${csudo}chkconfig --add taosd || :
        ${csudo}chkconfig --level 2345 taosd on || :
L
lihui 已提交
403
    elif ((${initd_mod}==2)); then
404 405
        ${csudo}insserv taosd || :
        ${csudo}insserv -d taosd || :
L
lihui 已提交
406
    elif ((${initd_mod}==3)); then
407
        ${csudo}update-rc.d taosd defaults || :
L
lihui 已提交
408
    fi
H
hzcheng 已提交
409 410 411 412 413
}

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

L
lihui 已提交
414
    # taosd service already is stoped before install in preinst script
H
hzcheng 已提交
415 416
    #if systemctl is-active --quiet taosd; then
    #    echo "TDengine is running, stopping it..."
417
    #    ${csudo}systemctl stop taosd &> /dev/null || echo &> /dev/null
H
hzcheng 已提交
418
    #fi
419
    ${csudo}systemctl disable taosd &> /dev/null || echo &> /dev/null
H
hzcheng 已提交
420

421
    ${csudo}rm -f ${taosd_service_config}
H
hzcheng 已提交
422 423 424 425 426 427 428 429 430
}

# 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"

431 432
    ${csudo}bash -c "echo '[Unit]'                             >> ${taosd_service_config}"
    ${csudo}bash -c "echo 'Description=TDengine server service' >> ${taosd_service_config}"
433 434
    ${csudo}bash -c "echo 'After=network-online.target'        >> ${taosd_service_config}"
    ${csudo}bash -c "echo 'Wants=network-online.target'        >> ${taosd_service_config}"
435 436 437 438 439 440 441 442 443 444 445 446 447 448 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}"
    ${csudo}bash -c "echo 'ExecStartPre=/usr/local/taos/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 taosd
H
hzcheng 已提交
453 454
}

455
function install_taosadapter_service() {
456
    if ((${service_mod}==0)); then
457
        [ -f ${script_dir}/../cfg/taosadapter.service ] &&\
458
            ${csudo}cp ${script_dir}/../cfg/taosadapter.service \
459
            ${service_config_dir}/ || :
460
        ${csudo}systemctl daemon-reload
461
    fi
462 463
}

H
hzcheng 已提交
464
function install_service() {
P
plum-lihui 已提交
465
    if ((${service_mod}==0)); then
H
hzcheng 已提交
466
        install_service_on_systemd
P
plum-lihui 已提交
467
    elif ((${service_mod}==1)); then
H
hzcheng 已提交
468
        install_service_on_sysvinit
P
plum-lihui 已提交
469 470
    else
        # manual start taosd
471
        kill_taosadapter
P
plum-lihui 已提交
472
        kill_taosd
H
hzcheng 已提交
473 474 475 476
    fi
}

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

    #install log and data dir , then ln to /usr/local/taos
480 481
    ${csudo}mkdir -p ${log_dir} && ${csudo}chmod 777 ${log_dir}
    ${csudo}mkdir -p ${data_dir}
482

483 484
    ${csudo}rm -rf ${log_link_dir}   || :
    ${csudo}rm -rf ${data_link_dir}  || :
485

486 487
    ${csudo}ln -s ${log_dir} ${log_link_dir}     || :
    ${csudo}ln -s ${data_dir} ${data_link_dir}   || :
488

H
hzcheng 已提交
489 490 491 492
    # Install include, lib, binary and service
    install_include
    install_lib
    install_bin
493
    install_config
494 495
    install_taosadapter_config
    install_taosadapter_service
496
    install_service
H
hzcheng 已提交
497 498

    # Ask if to start the service
H
Hui Li 已提交
499 500
    #echo
    #echo -e "\033[44;32;1mTDengine is installed successfully!${NC}"
H
hzcheng 已提交
501 502
    echo
    echo -e "${GREEN_DARK}To configure TDengine ${NC}: edit /etc/taos/taos.cfg"
P
plum-lihui 已提交
503
    if ((${service_mod}==0)); then
504
        echo -e "${GREEN_DARK}To start TDengine     ${NC}: ${csudo}systemctl start taosd${NC}"
P
plum-lihui 已提交
505
    elif ((${service_mod}==1)); then
506 507
        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}"
508
    else
P
plum-lihui 已提交
509
        echo -e "${GREEN_DARK}To start TDengine     ${NC}: ./taosd${NC}"
H
hzcheng 已提交
510 511
    fi

H
Hui Li 已提交
512

513

H
Hui Li 已提交
514
    if [ ! -z "$firstEp" ]; then
H
Hui Li 已提交
515 516 517 518 519 520 521 522
      tmpFqdn=${firstEp%%:*}
      substr=":"
      if [[ $firstEp =~ $substr ]];then
        tmpPort=${firstEp#*:}
      else
        tmpPort=""
      fi
      if [[ "$tmpPort" != "" ]];then
523 524 525 526 527
           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 已提交
528 529
      echo
    elif [ ! -z "$serverFqdn" ]; then
530
      echo -e "${GREEN_DARK}To access TDengine    ${NC}: taos -h $serverFqdn${GREEN_DARK} to login into TDengine server${NC}"
H
Hui Li 已提交
531
      echo
532
    fi
H
hzcheng 已提交
533 534 535 536 537 538
    echo
    echo -e "\033[44;32;1mTDengine is installed successfully!${NC}"
}


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