make_install.sh 24.0 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 7 8
# is required to use systemd to manage services at boot

set -e
# set -x

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 16 17 18 19 20

if [ "$osType" != "Darwin" ]; then
    script_dir=$(dirname $(readlink -f "$0"))
else
    script_dir=${source_dir}/packaging/tools
fi

H
hzcheng 已提交
21
# Dynamic directory
22

S
slguan 已提交
23
if [ "$osType" != "Darwin" ]; then
24
    data_dir="/var/lib/taos"
S
slguan 已提交
25
    log_dir="/var/log/taos"
H
hzcheng 已提交
26

27
    cfg_install_dir="/etc/taos"
H
hzcheng 已提交
28

S
slguan 已提交
29 30
    bin_link_dir="/usr/bin"
    lib_link_dir="/usr/lib"
H
Hui Li 已提交
31
    lib64_link_dir="/usr/lib64"
S
slguan 已提交
32
    inc_link_dir="/usr/include"
33 34 35 36

    install_main_dir="/usr/local/taos"

    bin_dir="/usr/local/taos/bin"
37
else
38 39 40 41 42
    data_dir="/usr/local/var/lib/taos"
    log_dir="/usr/local/var/log/taos"

    cfg_install_dir="/usr/local/etc/taos"

43 44 45
    bin_link_dir="/usr/local/bin"
    lib_link_dir="/usr/local/lib"
    inc_link_dir="/usr/local/include"
H
hzcheng 已提交
46

47
    install_main_dir="/usr/local/Cellar/tdengine/${verNumber}"
48 49
    install_main_2_dir="/usr/local/Cellar/tdengine@${verNumber}/${verNumber}"
        
50
    bin_dir="/usr/local/Cellar/tdengine/${verNumber}/bin"
51
    bin_2_dir="/usr/local/Cellar/tdengine@${verNumber}/${verNumber}/bin"
52
fi
H
hzcheng 已提交
53 54 55 56 57 58 59 60 61 62

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 已提交
63 64
csudo=""

S
slguan 已提交
65
if [ "$osType" != "Darwin" ]; then
66 67 68
    if command -v sudo > /dev/null; then
    csudo="sudo"
    fi
S
slguan 已提交
69 70 71 72 73 74
    initd_mod=0
    service_mod=2
    if pidof systemd &> /dev/null; then
        service_mod=0
    elif $(which service &> /dev/null); then
        service_mod=1
75
        service_config_dir="/etc/init.d"
S
slguan 已提交
76
        if $(which chkconfig &> /dev/null); then
77
            initd_mod=1
S
slguan 已提交
78 79 80 81 82 83 84
        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
L
lihui 已提交
85 86 87
    else
        service_mod=2
    fi
H
hzcheng 已提交
88

S
slguan 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
    # 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}"
    os_type=0
    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
L
lihui 已提交
111 112 113
        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 taosdata.com for support."
        os_type=1
S
slguan 已提交
114
    fi
L
lihui 已提交
115 116
fi

H
huili 已提交
117
function kill_taosd() {
S
slguan 已提交
118 119 120 121
    pid=$(ps -ef | grep "taosd" | grep -v "grep" | awk '{print $2}')
    if [ -n "$pid" ]; then
        ${csudo} kill -9 $pid   || :
    fi
H
huili 已提交
122 123
}

H
hzcheng 已提交
124 125
function install_main_path() {
    #create install main dir and all sub dir
S
slguan 已提交
126
    if [ "$osType" != "Darwin" ]; then
127 128 129 130 131 132 133 134
        ${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
        ${csudo} mkdir -p ${install_main_dir}/connector
        ${csudo} mkdir -p ${install_main_dir}/driver
        ${csudo} mkdir -p ${install_main_dir}/examples
        ${csudo} mkdir -p ${install_main_dir}/include
S
slguan 已提交
135
        ${csudo} mkdir -p ${install_main_dir}/init.d
136 137 138 139 140 141 142 143 144
    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
        ${csudo} mkdir -p ${install_main_dir}/connector || ${csudo} mkdir -p ${install_main_2_dir}/connector
        ${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
S
slguan 已提交
145
    fi
H
hzcheng 已提交
146 147 148 149
}

function install_bin() {
    # Remove links
150 151 152 153 154
    ${csudo} rm -f ${bin_link_dir}/taos     || :
    ${csudo} rm -f ${bin_link_dir}/taosd    || :
    ${csudo} rm -f ${bin_link_dir}/taosdemo || :
    ${csudo} rm -f ${bin_link_dir}/taosdump || :

S
slguan 已提交
155
    if [ "$osType" != "Darwin" ]; then
156
        ${csudo} rm -f ${bin_link_dir}/perfMonitor || :
H
Hui Li 已提交
157
        ${csudo} rm -f ${bin_link_dir}/set_core || :
158
        ${csudo} rm -f ${bin_link_dir}/rmtaos   || :
159 160 161 162
        
        ${csudo} cp -r ${binary_dir}/build/bin/* ${install_main_dir}/bin
        ${csudo} cp -r ${script_dir}/taosd-dump-cfg.gdb   ${install_main_dir}/bin
        
163
        ${csudo} cp -r ${script_dir}/remove.sh     ${install_main_dir}/bin
H
Hui Li 已提交
164
        ${csudo} cp -r ${script_dir}/set_core.sh   ${install_main_dir}/bin
165
        ${csudo} cp -r ${script_dir}/startPre.sh   ${install_main_dir}/bin
166 167 168 169 170 171 172
        
        ${csudo} chmod 0555 ${install_main_dir}/bin/*
        #Make link
        [ -x ${install_main_dir}/bin/taos ]      && ${csudo} ln -s ${install_main_dir}/bin/taos ${bin_link_dir}/taos    || :
        [ -x ${install_main_dir}/bin/taosd ]     && ${csudo} ln -s ${install_main_dir}/bin/taosd ${bin_link_dir}/taosd   || :
        [ -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 || :
173
        [ -x ${install_main_dir}/bin/perfMonitor ]  && ${csudo} ln -s ${install_main_dir}/bin/perfMonitor ${bin_link_dir}/perfMonitor || :
H
Hui Li 已提交
174
        [ -x ${install_main_dir}/set_core.sh ]  && ${csudo} ln -s ${install_main_dir}/bin/set_core.sh ${bin_link_dir}/set_core || :
175 176
        [ -x ${install_main_dir}/bin/remove.sh ] && ${csudo} ln -s ${install_main_dir}/bin/remove.sh ${bin_link_dir}/rmtaos  || :
   else
177
    
178 179 180 181 182 183 184 185 186
        ${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/taos ] || [ -x ${install_main_2_dir}/bin/taos ] && ${csudo} ln -s ${install_main_dir}/bin/taos ${bin_link_dir}/taos || ${csudo} ln -s ${install_main_2_dir}/bin/taos  || :
        [ -x ${install_main_dir}/bin/taosd ] || [ -x ${install_main_2_dir}/bin/taosd ] &&  ${csudo} ln -s ${install_main_dir}/bin/taosd ${bin_link_dir}/taosd || ${csudo} ln -s ${install_main_2_dir}/bin/taosd || :
        [ -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   || :
S
slguan 已提交
187
    fi
H
hzcheng 已提交
188
}
189

190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
function install_jemalloc() {
    if [ "$osType" != "Darwin" ]; then
        /usr/bin/install -c -d /usr/local/bin

        if [ -f ${binary_dir}/build/bin/jemalloc-config ]; then
            /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
            /usr/bin/install -c -m 755 ${binary_dir}/build/bin/jemalloc.sh /usr/local/bin
        fi
        if [ -f ${binary_dir}/build/bin/jeprof ]; then
            /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
            /usr/bin/install -c -d /usr/local/include/jemalloc
            /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
            /usr/bin/install -c -d /usr/local/lib
            /usr/bin/install -c -m 755 ${binary_dir}/build/lib/libjemalloc.so.2 /usr/local/lib
            ln -sf libjemalloc.so.2 /usr/local/lib/libjemalloc.so
            /usr/bin/install -c -d /usr/local/lib
            if [ -f ${binary_dir}/build/lib/libjemalloc.a ]; then
                /usr/bin/install -c -m 755 ${binary_dir}/build/lib/libjemalloc.a /usr/local/lib
            fi
            if [ -f ${binary_dir}/build/lib/libjemalloc_pic.a ]; then
                /usr/bin/install -c -m 755 ${binary_dir}/build/lib/libjemalloc_pic.a /usr/local/lib
            fi
218
            if [ -f ${binary_dir}/build/lib/pkgconfig/jemalloc.pc ]; then
219 220 221 222 223 224 225 226 227 228 229 230
                /usr/bin/install -c -d /usr/local/lib/pkgconfig
                /usr/bin/install -c -m 644 ${binary_dir}/build/lib/pkgconfig/jemalloc.pc /usr/local/lib/pkgconfig
            fi
        fi
        if [ -f ${binary_dir}/build/share/doc/jemalloc/jemalloc.html ]; then
            /usr/bin/install -c -d /usr/local/share/doc/jemalloc
            /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
            /usr/bin/install -c -d /usr/local/share/man/man3
            /usr/bin/install -c -m 644 ${binary_dir}/build/share/man/man3/jemalloc.3 /usr/local/share/man/man3
        fi
231 232

        if [ -d /etc/ld.so.conf.d ]; then
233
            echo "/usr/local/lib" | ${csudo} tee /etc/ld.so.conf.d/jemalloc.conf
234 235 236 237
            ${csudo} ldconfig
        else
            echo "/etc/ld.so.conf.d not found!"
        fi
238 239
    fi
}
H
hzcheng 已提交
240 241 242

function install_lib() {
    # Remove links
S
slguan 已提交
243
    ${csudo} rm -f ${lib_link_dir}/libtaos.*     || :
244 245 246
    if [ "$osType" != "Darwin" ]; then
      ${csudo} rm -f ${lib64_link_dir}/libtaos.*   || :
    fi
247

S
slguan 已提交
248
    if [ "$osType" != "Darwin" ]; then
H
Hui Li 已提交
249
        ${csudo} cp ${binary_dir}/build/lib/libtaos.so.${verNumber} ${install_main_dir}/driver && ${csudo} chmod 777 ${install_main_dir}/driver/*
250
        ${csudo} ln -sf ${install_main_dir}/driver/libtaos.* ${lib_link_dir}/libtaos.so.1
S
slguan 已提交
251
        ${csudo} ln -sf ${lib_link_dir}/libtaos.so.1 ${lib_link_dir}/libtaos.so
252

H
Hui Li 已提交
253
        if [ -d "${lib64_link_dir}" ]; then
254
          ${csudo} ln -sf ${install_main_dir}/driver/libtaos.* ${lib64_link_dir}/libtaos.so.1
H
Hui Li 已提交
255 256
          ${csudo} ln -sf ${lib64_link_dir}/libtaos.so.1 ${lib64_link_dir}/libtaos.so
        fi
S
slguan 已提交
257
    else
258 259 260 261 262
        ${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.dylib || ${csudo} ln -sf ${install_main_2_dir}/driver/libtaos.* ${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 ${lib_link_dir}/libtaos.1.dylib ${lib_link_dir}/libtaos.dylib   || :
S
slguan 已提交
263
    fi
264
    
265 266
    install_jemalloc

267 268 269
    if [ "$osType" != "Darwin" ]; then
        ${csudo} ldconfig
    fi
H
hzcheng 已提交
270 271 272 273
}

function install_header() {

274
    if [ "$osType" != "Darwin" ]; then
275 276
        ${csudo} rm -f ${inc_link_dir}/taos.h ${inc_link_dir}/taoserror.h     || :
        ${csudo} cp -f ${source_dir}/src/inc/taos.h ${source_dir}/src/inc/taoserror.h ${install_main_dir}/include && ${csudo} chmod 644 ${install_main_dir}/include/*
277 278
        ${csudo} ln -s ${install_main_dir}/include/taos.h ${inc_link_dir}/taos.h
        ${csudo} ln -s ${install_main_dir}/include/taoserror.h ${inc_link_dir}/taoserror.h
279 280
    else
        ${csudo} cp -f ${source_dir}/src/inc/taos.h ${source_dir}/src/inc/taoserror.h ${install_main_dir}/include || ${csudo} cp -f ${source_dir}/src/inc/taos.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/*
281
    fi
H
hzcheng 已提交
282 283 284
}

function install_config() {
P
plum-lihui 已提交
285
    #${csudo} rm -f ${install_main_dir}/cfg/taos.cfg     || :
286 287

    if [ ! -f ${cfg_install_dir}/taos.cfg ]; then
P
plum-lihui 已提交
288
        ${csudo} mkdir -p ${cfg_install_dir}
289 290
        [ -f ${script_dir}/../cfg/taos.cfg ] &&
        ${csudo} cp ${script_dir}/../cfg/taos.cfg ${cfg_install_dir}
P
plum-lihui 已提交
291
        ${csudo} chmod 644 ${cfg_install_dir}/*
292 293 294 295
        ${csudo} cp -f ${script_dir}/../cfg/taos.cfg ${install_main_dir}/cfg/taos.cfg.org
        ${csudo} ln -s ${cfg_install_dir}/taos.cfg ${install_main_dir}/cfg
    else
        ${csudo} cp -f ${script_dir}/../cfg/taos.cfg ${install_main_dir}/cfg/taos.cfg.org || ${csudo} cp -f ${script_dir}/../cfg/taos.cfg ${install_main_2_dir}/cfg/taos.cfg.org
296
    fi
H
hzcheng 已提交
297 298
}

299
function install_log() {
300 301
    ${csudo} rm -rf ${log_dir}  || :
    ${csudo} mkdir -p ${log_dir} && ${csudo} chmod 777 ${log_dir}
302 303 304 305 306
    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 已提交
307 308 309
}

function install_data() {
310
    ${csudo} mkdir -p ${data_dir}
311 312 313 314 315
    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 已提交
316 317 318
}

function install_connector() {
319 320 321 322 323 324 325 326 327 328
    if [ -d "${source_dir}/src/connector/grafanaplugin/dist" ]; then
        ${csudo} cp -rf ${source_dir}/src/connector/grafanaplugin/dist ${install_main_dir}/connector/grafanaplugin
    else
        echo "WARNING: grafanaplugin bundled dir not found, please check if want to use it!"
    fi
    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
329 330 331 332 333 334 335
    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 || cp ${binary_dir}/build/lib/*.jar ${install_main_2_dir}/connector &> /dev/null && ${csudo} chmod 777 ${install_main_dir}/connector/*.jar || ${csudo} chmod 777 ${install_main_2_dir}/connector/*.jar || echo &> /dev/null
    fi
H
hzcheng 已提交
336 337 338
}

function install_examples() {
339 340 341 342 343
    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 已提交
344 345 346
}

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

H
hzcheng 已提交
350
    if pidof taosd &> /dev/null; then
P
plum-lihui 已提交
351
        ${csudo} service taosd stop || :
H
hzcheng 已提交
352
    fi
H
huili 已提交
353 354

    if ((${initd_mod}==1)); then
L
lihui 已提交
355
        ${csudo} chkconfig --del taosd || :
H
huili 已提交
356
    elif ((${initd_mod}==2)); then
L
lihui 已提交
357 358 359 360
        ${csudo} insserv -r taosd || :
    elif ((${initd_mod}==3)); then
        ${csudo} update-rc.d -f taosd remove || :
    fi
361

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

L
lihui 已提交
364 365
    if $(which init &> /dev/null); then
        ${csudo} init q || :
H
huili 已提交
366
    fi
H
hzcheng 已提交
367 368 369 370 371 372 373 374
}

function install_service_on_sysvinit() {
    clean_service_on_sysvinit

    sleep 1

    # Install taosd service
L
lihui 已提交
375
    if ((${os_type}==1)); then
P
plum-lihui 已提交
376 377
    ${csudo} cp -f ${script_dir}/../deb/taosd ${install_main_dir}/init.d
    ${csudo} cp    ${script_dir}/../deb/taosd ${service_config_dir} && ${csudo} chmod a+x ${service_config_dir}/taosd
L
lihui 已提交
378
    elif ((${os_type}==2)); then
P
plum-lihui 已提交
379 380
    ${csudo} cp -f ${script_dir}/../rpm/taosd ${install_main_dir}/init.d
    ${csudo} cp    ${script_dir}/../rpm/taosd ${service_config_dir} && ${csudo} chmod a+x ${service_config_dir}/taosd
L
lihui 已提交
381
    fi
382

L
lihui 已提交
383 384
    #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"
385

H
huili 已提交
386
    if ((${initd_mod}==1)); then
L
lihui 已提交
387 388
        ${csudo} chkconfig --add taosd || :
        ${csudo} chkconfig --level 2345 taosd on || :
H
huili 已提交
389
    elif ((${initd_mod}==2)); then
L
lihui 已提交
390 391 392
        ${csudo} insserv taosd || :
        ${csudo} insserv -d taosd || :
    elif ((${initd_mod}==3)); then
H
huili 已提交
393 394
        ${csudo} update-rc.d taosd defaults || :
    fi
H
hzcheng 已提交
395 396 397 398 399 400 401
}

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

    if systemctl is-active --quiet taosd; then
        echo "TDengine is running, stopping it..."
P
plum-lihui 已提交
402
        ${csudo} systemctl stop taosd &> /dev/null || echo &> /dev/null
H
hzcheng 已提交
403
    fi
P
plum-lihui 已提交
404
    ${csudo} systemctl disable taosd &> /dev/null || echo &> /dev/null
H
hzcheng 已提交
405

P
plum-lihui 已提交
406
    ${csudo} rm -f ${taosd_service_config}
407
}
H
hzcheng 已提交
408 409 410 411 412 413 414 415

# 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 已提交
416 417 418 419 420 421 422 423
    ${csudo} bash -c "echo '[Unit]'                             >> ${taosd_service_config}"
    ${csudo} bash -c "echo 'Description=TDengine server service' >> ${taosd_service_config}"
    ${csudo} bash -c "echo 'After=network-online.target'        >> ${taosd_service_config}"
    ${csudo} bash -c "echo 'Wants=network-online.target'        >> ${taosd_service_config}"
    ${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}"
424
    ${csudo} bash -c "echo 'ExecStartPre=/usr/local/taos/bin/startPre.sh'           >> ${taosd_service_config}"
425
    ${csudo} bash -c "echo 'TimeoutStopSec=1000000s'            >> ${taosd_service_config}"
P
plum-lihui 已提交
426 427 428 429 430 431 432 433 434 435 436 437
    ${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 已提交
438 439 440
}

function install_service() {
H
huili 已提交
441
    if ((${service_mod}==0)); then
H
hzcheng 已提交
442
        install_service_on_systemd
H
huili 已提交
443
    elif ((${service_mod}==1)); then
H
hzcheng 已提交
444
        install_service_on_sysvinit
H
huili 已提交
445
    else
L
lihui 已提交
446
        # must manual stop taosd
H
huili 已提交
447
        kill_taosd
H
hzcheng 已提交
448 449 450 451
    fi
}

function update_TDengine() {
452
    echo -e "${GREEN}Start to update TDengine...${NC}"
H
hzcheng 已提交
453
    # Stop the service if running
S
slguan 已提交
454 455 456

    if [ "$osType" != "Darwin" ]; then
      if pidof taosd &> /dev/null; then
H
huili 已提交
457
        if ((${service_mod}==0)); then
P
plum-lihui 已提交
458
            ${csudo} systemctl stop taosd || :
H
huili 已提交
459
        elif ((${service_mod}==1)); then
P
plum-lihui 已提交
460
            ${csudo} service taosd stop || :
H
huili 已提交
461 462
        else
            kill_taosd
H
hzcheng 已提交
463 464
        fi
        sleep 1
S
slguan 已提交
465
      fi
H
hzcheng 已提交
466
    fi
467

H
hzcheng 已提交
468 469 470 471 472 473 474
    install_main_path

    install_log
    install_header
    install_lib
    install_connector
    install_examples
H
huili 已提交
475
    install_bin
S
slguan 已提交
476 477 478 479 480

    if [ "$osType" != "Darwin" ]; then
        install_service
    fi

H
huili 已提交
481
    install_config
H
hzcheng 已提交
482

S
slguan 已提交
483 484 485 486 487 488 489 490 491
    if [ "$osType" != "Darwin" ]; then
        echo
        echo -e "\033[44;32;1mTDengine is updated successfully!${NC}"
        echo

        echo -e "${GREEN_DARK}To configure TDengine ${NC}: edit /etc/taos/taos.cfg"
        if ((${service_mod}==0)); then
            echo -e "${GREEN_DARK}To start TDengine     ${NC}: ${csudo} systemctl start taosd${NC}"
        elif ((${service_mod}==1)); then
H
huili 已提交
492
            echo -e "${GREEN_DARK}To start TDengine     ${NC}: ${csudo} service taosd start${NC}"
S
slguan 已提交
493 494 495 496 497 498 499 500 501 502 503
        else
            echo -e "${GREEN_DARK}To start TDengine     ${NC}: ./taosd${NC}"
        fi

        echo -e "${GREEN_DARK}To access TDengine    ${NC}: use ${GREEN_UNDERLINE}taos${NC} in shell${NC}"
        echo
        echo -e "\033[44;32;1mTDengine is updated successfully!${NC}"
    else
        echo
        echo -e "\033[44;32;1mTDengine Client is updated successfully!${NC}"
        echo
H
huili 已提交
504

S
slguan 已提交
505 506 507 508
        echo -e "${GREEN_DARK}To access TDengine Client   ${NC}: use ${GREEN_UNDERLINE}taos${NC} in shell${NC}"
        echo
        echo -e "\033[44;32;1mTDengine Client is updated successfully!${NC}"
    fi
H
hzcheng 已提交
509 510 511 512
}

function install_TDengine() {
    # Start to install
S
slguan 已提交
513 514
    if [ "$osType" != "Darwin" ]; then
        echo -e "${GREEN}Start to install TDEngine...${NC}"
515 516
    else
        echo -e "${GREEN}Start to install TDEngine Client ...${NC}"
S
slguan 已提交
517
    fi
518
    
519
    install_main_path
S
slguan 已提交
520

521
    install_data
522
    install_log
H
hzcheng 已提交
523 524 525 526
    install_header
    install_lib
    install_connector
    install_examples
H
huili 已提交
527
    install_bin
528
    
S
slguan 已提交
529 530 531
    if [ "$osType" != "Darwin" ]; then
        install_service
    fi
532
    
533
    install_config
S
slguan 已提交
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551

    if [ "$osType" != "Darwin" ]; then
        # Ask if to start the service
        echo
        echo -e "\033[44;32;1mTDengine is installed successfully!${NC}"
        echo
        echo -e "${GREEN_DARK}To configure TDengine ${NC}: edit /etc/taos/taos.cfg"
        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} service taosd start${NC}"
        else
            echo -e "${GREEN_DARK}To start TDengine     ${NC}: ./taosd${NC}"
        fi

        echo -e "${GREEN_DARK}To access TDengine    ${NC}: use ${GREEN_UNDERLINE}taos${NC} in shell${NC}"
        echo
        echo -e "\033[44;32;1mTDengine is installed successfully!${NC}"
H
huili 已提交
552
    else
S
slguan 已提交
553 554 555
        echo -e "${GREEN_DARK}To access TDengine    ${NC}: use ${GREEN_UNDERLINE}taos${NC} in shell${NC}"
        echo
        echo -e "\033[44;32;1mTDengine Client is installed successfully!${NC}"
H
huili 已提交
556
    fi
H
hzcheng 已提交
557 558 559 560 561
}

## ==============================Main program starts from here============================
echo source directory: $1
echo binary directory: $2
562 563 564 565 566 567
if [ "$osType" != "Darwin" ]; then
    if [ -x ${bin_dir}/taos ]; then
        update_TDengine
    else
        install_TDengine
    fi
H
hzcheng 已提交
568
else
569 570 571 572 573
    if [ -x ${bin_dir}/taos ] || [ -x ${bin_2_dir}/taos ]; then
        update_TDengine
    else
        install_TDengine
    fi
H
hzcheng 已提交
574
fi