make_install.sh 27.3 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 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
    install_main_2_dir="/usr/local/Cellar/tdengine@${verNumber}/${verNumber}"
49

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

65 66 67
service_mod=2
os_type=0

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

S
slguan 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
    # 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
L
lihui 已提交
112 113 114
        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 已提交
115
    fi
L
lihui 已提交
116 117
fi

118 119
function kill_taosadapter() {
    pid=$(ps -ef | grep "taosadapter" | grep -v "grep" | awk '{print $2}')
120
    if [ -n "$pid" ]; then
121
        ${csudo}kill -9 $pid   || :
122 123 124
    fi
}

H
huili 已提交
125
function kill_taosd() {
126 127
    ps -ef | grep "taosd"
    pid=$(ps -ef | grep -w "taosd" | grep -v "grep" | awk '{print $2}')
S
slguan 已提交
128
    if [ -n "$pid" ]; then
129
        ${csudo}kill -9 $pid   || :
S
slguan 已提交
130
    fi
H
huili 已提交
131 132
}

H
hzcheng 已提交
133 134
function install_main_path() {
    #create install main dir and all sub dir
S
slguan 已提交
135
    if [ "$osType" != "Darwin" ]; then
136 137 138 139 140 141 142 143 144
        ${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
        ${csudo}mkdir -p ${install_main_dir}/init.d
145
    else
146 147 148 149 150 151 152 153
        ${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 已提交
154
    fi
H
hzcheng 已提交
155 156 157 158
}

function install_bin() {
    # Remove links
159 160 161 162 163
    ${csudo}rm -f ${bin_link_dir}/taos     || :
    ${csudo}rm -f ${bin_link_dir}/taosd    || :
    ${csudo}rm -f ${bin_link_dir}/taosadapter || :
    ${csudo}rm -f ${bin_link_dir}/taosdemo || :
    ${csudo}rm -f ${bin_link_dir}/taosdump || :
164

S
slguan 已提交
165
    if [ "$osType" != "Darwin" ]; then
166 167 168 169
        ${csudo}rm -f ${bin_link_dir}/perfMonitor || :
        ${csudo}rm -f ${bin_link_dir}/set_core || :
        ${csudo}rm -f ${bin_link_dir}/run_taosd.sh || :
        ${csudo}rm -f ${bin_link_dir}/rmtaos   || :
170

171 172
        ${csudo}cp -r ${binary_dir}/build/bin/* ${install_main_dir}/bin
        ${csudo}cp -r ${script_dir}/taosd-dump-cfg.gdb   ${install_main_dir}/bin
173

174 175 176 177
        ${csudo}cp -r ${script_dir}/remove.sh     ${install_main_dir}/bin
        ${csudo}cp -r ${script_dir}/set_core.sh   ${install_main_dir}/bin
        ${csudo}cp -r ${script_dir}/run_taosd.sh   ${install_main_dir}/bin
        ${csudo}cp -r ${script_dir}/startPre.sh   ${install_main_dir}/bin
178

179
        ${csudo}chmod 0555 ${install_main_dir}/bin/*
180
        #Make link
181 182 183 184 185 186 187 188 189
        [ -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/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 || :
        [ -x ${install_main_dir}/run_taosd.sh ]  && ${csudo}ln -s ${install_main_dir}/bin/run_taosd.sh ${bin_link_dir}/run_taosd.sh || :
        [ -x ${install_main_dir}/bin/remove.sh ] && ${csudo}ln -s ${install_main_dir}/bin/remove.sh ${bin_link_dir}/rmtaos  || :
190
   else
191

192 193 194 195
        ${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/*
196
        #Make link
197 198 199 200 201
        [ -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/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   || :
S
slguan 已提交
202
    fi
H
hzcheng 已提交
203
}
204

205 206 207 208
function install_jemalloc() {
    if [ "$osType" != "Darwin" ]; then
        /usr/bin/install -c -d /usr/local/bin

209
        if [ -f "${binary_dir}/build/bin/jemalloc-config" ]; then
210
            ${csudo}/usr/bin/install -c -m 755 ${binary_dir}/build/bin/jemalloc-config /usr/local/bin
211
        fi
212
        if [ -f "${binary_dir}/build/bin/jemalloc.sh" ]; then
213
            ${csudo}/usr/bin/install -c -m 755 ${binary_dir}/build/bin/jemalloc.sh /usr/local/bin
214
        fi
215
        if [ -f "${binary_dir}/build/bin/jeprof" ]; then
216
            ${csudo}/usr/bin/install -c -m 755 ${binary_dir}/build/bin/jeprof /usr/local/bin
217
        fi
218
        if [ -f "${binary_dir}/build/include/jemalloc/jemalloc.h" ]; then
219 220
            ${csudo}/usr/bin/install -c -d /usr/local/include/jemalloc
            ${csudo}/usr/bin/install -c -m 644 ${binary_dir}/build/include/jemalloc/jemalloc.h\
221
                /usr/local/include/jemalloc
222
        fi
223
        if [ -f "${binary_dir}/build/lib/libjemalloc.so.2" ]; then
224 225 226 227
            ${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
228
            [ -f ${binary_dir}/build/lib/libjemalloc.a ] &&
229
                ${csudo}/usr/bin/install -c -m 755 ${binary_dir}/build/lib/libjemalloc.a /usr/local/lib
230
            [ -f ${binary_dir}/build/lib/libjemalloc_pic.a ] &&
231
                ${csudo}/usr/bin/install -c -m 755 ${binary_dir}/build/lib/libjemalloc_pic.a /usr/local/lib
232
            if [ -f "${binary_dir}/build/lib/pkgconfig/jemalloc.pc" ]; then
233 234
                ${csudo}/usr/bin/install -c -d /usr/local/lib/pkgconfig
                ${csudo}/usr/bin/install -c -m 644 ${binary_dir}/build/lib/pkgconfig/jemalloc.pc\
235 236 237
                    /usr/local/lib/pkgconfig
            fi
            if [ -d /etc/ld.so.conf.d ]; then
238 239
                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
240 241
            else
                echo "/etc/ld.so.conf.d not found!"
242 243
            fi
        fi
244
        if [ -f "${binary_dir}/build/share/doc/jemalloc/jemalloc.html" ]; then
245 246
            ${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\
247
                /usr/local/share/doc/jemalloc
248
        fi
249
        if [ -f "${binary_dir}/build/share/man/man3/jemalloc.3" ]; then
250 251
            ${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\
252
                /usr/local/share/man/man3
253
        fi
254 255 256 257 258
    fi
}

function install_avro() {
    if [ "$osType" != "Darwin" ]; then
259
        if [ -f "${binary_dir}/build/$1/libavro.so.23.0.0" ] && [ -d /usr/local/$1 ]; then
260 261 262 263 264
            ${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
265
            [ -f ${binary_dir}/build/$1/libavro.a ] &&
266
                ${csudo}/usr/bin/install -c -m 755 ${binary_dir}/build/$1/libavro.a /usr/local/$1
267 268

            if [ -d /etc/ld.so.conf.d ]; then
269 270
                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
271 272 273
            else
                echo "/etc/ld.so.conf.d not found!"
            fi
274
        fi
275 276
    fi
}
H
hzcheng 已提交
277 278 279

function install_lib() {
    # Remove links
280
    ${csudo}rm -f ${lib_link_dir}/libtaos.*     || :
281
    if [ "$osType" != "Darwin" ]; then
282
      ${csudo}rm -f ${lib64_link_dir}/libtaos.*   || :
283
    fi
284

S
slguan 已提交
285
    if [ "$osType" != "Darwin" ]; then
286
        ${csudo}cp ${binary_dir}/build/lib/libtaos.so.${verNumber} \
287
            ${install_main_dir}/driver \
288
            && ${csudo}chmod 777 ${install_main_dir}/driver/*
289

290 291
        ${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
292

H
Hui Li 已提交
293
        if [ -d "${lib64_link_dir}" ]; then
294 295
          ${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
H
Hui Li 已提交
296
        fi
S
slguan 已提交
297
    else
298
        ${csudo}cp -Rf ${binary_dir}/build/lib/libtaos.${verNumber}.dylib \
299
            ${install_main_dir}/driver \
300
            || ${csudo}cp -Rf ${binary_dir}/build/lib/libtaos.${verNumber}.dylib \
301
            ${install_main_2_dir}/driver \
302 303
            && ${csudo}chmod 777 ${install_main_dir}/driver/* \
            || ${csudo}chmod 777 ${install_main_2_dir}/driver/*
304

305
        ${csudo}ln -sf ${install_main_dir}/driver/libtaos.* \
306
            ${install_main_dir}/driver/libtaos.1.dylib \
307
            || ${csudo}ln -sf ${install_main_2_dir}/driver/libtaos.* \
308 309
            ${install_main_2_dir}/driver/libtaos.1.dylib   || :

310
        ${csudo}ln -sf ${install_main_dir}/driver/libtaos.1.dylib \
311
            ${install_main_dir}/driver/libtaos.dylib \
312
            || ${csudo}ln -sf ${install_main_2_dir}/driver/libtaos.1.dylib \
313 314
            ${install_main_2_dir}/driver/libtaos.dylib   || :

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

320
        ${csudo}ln -sf ${lib_link_dir}/libtaos.1.dylib ${lib_link_dir}/libtaos.dylib   || :
S
slguan 已提交
321
    fi
322

323
    install_jemalloc
324 325
    install_avro lib
    install_avro lib64
326

327
    if [ "$osType" != "Darwin" ]; then
328
        ${csudo}ldconfig
329
    fi
H
hzcheng 已提交
330 331 332 333
}

function install_header() {

334
    if [ "$osType" != "Darwin" ]; then
335 336 337 338 339 340
        ${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
341
    else
342
        ${csudo}cp -f ${source_dir}/src/inc/taos.h ${source_dir}/src/inc/taosdef.h ${source_dir}/src/inc/taoserror.h \
343
            ${install_main_dir}/include \
344
            || ${csudo}cp -f ${source_dir}/src/inc/taos.h ${source_dir}/src/inc/taosdef.h ${source_dir}/src/inc/taoserror.h \
345
            ${install_main_2_dir}/include \
346 347
            && ${csudo}chmod 644 ${install_main_dir}/include/* \
            || ${csudo}chmod 644 ${install_main_2_dir}/include/*
348
    fi
H
hzcheng 已提交
349 350 351
}

function install_config() {
352
    if [ ! -f ${cfg_install_dir}/taos.cfg ]; then
353
        ${csudo}mkdir -p ${cfg_install_dir}
354
        [ -f ${script_dir}/../cfg/taos.cfg ] &&
355 356 357
        ${csudo}cp ${script_dir}/../cfg/taos.cfg ${cfg_install_dir}
        ${csudo}chmod 644 ${cfg_install_dir}/taos.cfg
        ${csudo}cp -f ${script_dir}/../cfg/taos.cfg \
358
            ${cfg_install_dir}/taos.cfg.${verNumber}
359
        ${csudo}ln -s ${cfg_install_dir}/taos.cfg \
360
            ${install_main_dir}/cfg/taos.cfg
361
    else
362
        ${csudo}cp -f ${script_dir}/../cfg/taos.cfg \
363
            ${cfg_install_dir}/taos.cfg.${verNumber}
364
    fi
H
hzcheng 已提交
365 366
}

367 368
function install_taosadapter_config() {
    if [ ! -f "${cfg_install_dir}/taosadapter.toml" ]; then
369
        ${csudo}mkdir -p ${cfg_install_dir}
370
        [ -f ${binary_dir}/test/cfg/taosadapter.toml ] &&
371
            ${csudo}cp ${binary_dir}/test/cfg/taosadapter.toml ${cfg_install_dir}
372
        [ -f ${cfg_install_dir}/taosadapter.toml ] &&
373
            ${csudo}chmod 644 ${cfg_install_dir}/taosadapter.toml
374
        [ -f ${binary_dir}/test/cfg/taosadapter.toml ] &&
375
            ${csudo}cp -f ${binary_dir}/test/cfg/taosadapter.toml \
376 377
                ${cfg_install_dir}/taosadapter.toml.${verNumber}
        [ -f ${cfg_install_dir}/taosadapter.toml ] && \
378
            ${csudo}ln -s ${cfg_install_dir}/taosadapter.toml \
379
            ${install_main_dir}/cfg/taosadapter.toml
380
    else
381
        if [ -f "${binary_dir}/test/cfg/taosadapter.toml" ]; then
382
            ${csudo}cp -f ${binary_dir}/test/cfg/taosadapter.toml \
383
                ${cfg_install_dir}/taosadapter.toml.${verNumber}
384
        fi
385 386 387
    fi
}

388
function install_log() {
389 390
    ${csudo}rm -rf ${log_dir}  || :
    ${csudo}mkdir -p ${log_dir} && ${csudo}chmod 777 ${log_dir}
391
    if [ "$osType" != "Darwin" ]; then
392
        ${csudo}ln -s ${log_dir} ${install_main_dir}/log
393
    else
394
        ${csudo}ln -s ${log_dir} ${install_main_dir}/log || ${csudo}ln -s ${log_dir} ${install_main_2_dir}/log
395
    fi
H
hzcheng 已提交
396 397 398
}

function install_data() {
399
    ${csudo}mkdir -p ${data_dir}
400
    if [ "$osType" != "Darwin" ]; then
401
        ${csudo}ln -s ${data_dir} ${install_main_dir}/data
402
    else
403
        ${csudo}ln -s ${data_dir} ${install_main_dir}/data || ${csudo}ln -s ${data_dir} ${install_main_2_dir}/data
404
    fi
H
hzcheng 已提交
405 406 407
}

function install_connector() {
408
    if find ${source_dir}/src/connector/go -mindepth 1 -maxdepth 1 | read; then
409
        ${csudo}cp -r ${source_dir}/src/connector/go ${install_main_dir}/connector
410 411 412
    else
        echo "WARNING: go connector not found, please check if want to use it!"
    fi
413
    if [ "$osType" != "Darwin" ]; then
414 415
        ${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
416
    else
417 418 419
        ${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
420
    fi
H
hzcheng 已提交
421 422 423
}

function install_examples() {
424
    if [ "$osType" != "Darwin" ]; then
425
       ${csudo}cp -rf ${source_dir}/tests/examples/* ${install_main_dir}/examples
426
    else
427
       ${csudo}cp -rf ${source_dir}/tests/examples/* ${install_main_dir}/examples || ${csudo}cp -rf ${source_dir}/tests/examples/* ${install_main_2_dir}/examples
428
    fi
H
hzcheng 已提交
429 430 431
}

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

H
hzcheng 已提交
435
    if pidof taosd &> /dev/null; then
436
        ${csudo}service taosd stop || :
H
hzcheng 已提交
437
    fi
H
huili 已提交
438 439

    if ((${initd_mod}==1)); then
440
        ${csudo}chkconfig --del taosd || :
H
huili 已提交
441
    elif ((${initd_mod}==2)); then
442
        ${csudo}insserv -r taosd || :
L
lihui 已提交
443
    elif ((${initd_mod}==3)); then
444
        ${csudo}update-rc.d -f taosd remove || :
L
lihui 已提交
445
    fi
446

447
    ${csudo}rm -f ${service_config_dir}/taosd || :
448

L
lihui 已提交
449
    if $(which init &> /dev/null); then
450
        ${csudo}init q || :
H
huili 已提交
451
    fi
H
hzcheng 已提交
452 453 454 455 456 457 458 459
}

function install_service_on_sysvinit() {
    clean_service_on_sysvinit

    sleep 1

    # Install taosd service
L
lihui 已提交
460
    if ((${os_type}==1)); then
461 462
        ${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 已提交
463
    elif ((${os_type}==2)); then
464 465
        ${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 已提交
466
    fi
467

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

H
huili 已提交
471
    if ((${initd_mod}==1)); then
472 473
        ${csudo}chkconfig --add taosd || :
        ${csudo}chkconfig --level 2345 taosd on || :
H
huili 已提交
474
    elif ((${initd_mod}==2)); then
475 476
        ${csudo}insserv taosd || :
        ${csudo}insserv -d taosd || :
L
lihui 已提交
477
    elif ((${initd_mod}==3)); then
478
        ${csudo}update-rc.d taosd defaults || :
H
huili 已提交
479
    fi
H
hzcheng 已提交
480 481 482 483 484 485 486
}

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..."
487
        ${csudo}systemctl stop taosd &> /dev/null || echo &> /dev/null
H
hzcheng 已提交
488
    fi
489
    ${csudo}systemctl disable taosd &> /dev/null || echo &> /dev/null
H
hzcheng 已提交
490

491
    ${csudo}rm -f ${taosd_service_config}
492
}
H
hzcheng 已提交
493 494 495 496 497 498 499 500

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

501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
    ${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 taosadapter.service'        >> ${taosd_service_config}"
    ${csudo}bash -c "echo 'Wants=network-online.target taosadapter.service'        >> ${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}"
    ${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 已提交
523 524
}

525
function install_taosadapter_service() {
526 527
    if ((${service_mod}==0)); then
        [ -f ${binary_dir}/test/cfg/taosadapter.service ] &&\
528
            ${csudo}cp ${binary_dir}/test/cfg/taosadapter.service\
529
            ${service_config_dir}/ || :
530
        ${csudo}systemctl daemon-reload
531
    fi
532 533
}

H
hzcheng 已提交
534
function install_service() {
H
huili 已提交
535
    if ((${service_mod}==0)); then
H
hzcheng 已提交
536
        install_service_on_systemd
H
huili 已提交
537
    elif ((${service_mod}==1)); then
H
hzcheng 已提交
538
        install_service_on_sysvinit
H
huili 已提交
539
    else
L
lihui 已提交
540
        # must manual stop taosd
H
huili 已提交
541
        kill_taosd
H
hzcheng 已提交
542 543 544 545
    fi
}

function update_TDengine() {
546
    echo -e "${GREEN}Start to update TDengine...${NC}"
H
hzcheng 已提交
547
    # Stop the service if running
S
slguan 已提交
548 549

      if pidof taosd &> /dev/null; then
H
huili 已提交
550
        if ((${service_mod}==0)); then
551
            ${csudo}systemctl stop taosd || :
H
huili 已提交
552
        elif ((${service_mod}==1)); then
553
            ${csudo}service taosd stop || :
H
huili 已提交
554
        else
555
            kill_taosadapter
H
huili 已提交
556
            kill_taosd
H
hzcheng 已提交
557 558
        fi
        sleep 1
S
slguan 已提交
559
      fi
560

H
hzcheng 已提交
561 562 563 564 565 566 567
    install_main_path

    install_log
    install_header
    install_lib
    install_connector
    install_examples
H
huili 已提交
568
    install_bin
S
slguan 已提交
569

570 571
    install_service
    install_taosadapter_service
S
slguan 已提交
572

H
huili 已提交
573
    install_config
574
    install_taosadapter_config
H
hzcheng 已提交
575

576 577 578
    echo
    echo -e "\033[44;32;1mTDengine is updated successfully!${NC}"
    echo
S
slguan 已提交
579

580 581 582
    echo -e "${GREEN_DARK}To configure TDengine ${NC}: edit /etc/taos/taos.cfg"
    echo -e "${GREEN_DARK}To configure Taos Adapter (if has) ${NC}: edit /etc/taos/taosadapter.toml"
    if ((${service_mod}==0)); then
583
        echo -e "${GREEN_DARK}To start TDengine     ${NC}: ${csudo}systemctl start taosd${NC}"
584
    elif ((${service_mod}==1)); then
585
        echo -e "${GREEN_DARK}To start TDengine     ${NC}: ${csudo}service taosd start${NC}"
S
slguan 已提交
586
    else
587 588
        echo -e "${GREEN_DARK}To start Taos Adapter (if has)${NC}: taosadapter &${NC}"
        echo -e "${GREEN_DARK}To start TDengine     ${NC}: taosd${NC}"
S
slguan 已提交
589
    fi
590 591 592 593

    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}"
H
hzcheng 已提交
594 595 596 597
}

function install_TDengine() {
    # Start to install
598
    echo -e "${GREEN}Start to install TDengine...${NC}"
599

600
    install_main_path
S
slguan 已提交
601

602
    install_data
603
    install_log
H
hzcheng 已提交
604 605 606 607
    install_header
    install_lib
    install_connector
    install_examples
H
huili 已提交
608
    install_bin
609

610 611
    install_service
    install_taosadapter_service
612

613
    install_config
614
    install_taosadapter_config
S
slguan 已提交
615

616 617 618 619 620 621 622
    # 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"
    echo -e "${GREEN_DARK}To configure taosadapter (if has) ${NC}: edit /etc/taos/taosadapter.toml"
    if ((${service_mod}==0)); then
623
        echo -e "${GREEN_DARK}To start TDengine     ${NC}: ${csudo}systemctl start taosd${NC}"
624
    elif ((${service_mod}==1)); then
625
        echo -e "${GREEN_DARK}To start TDengine    ${NC}: ${csudo}service taosd start${NC}"
H
huili 已提交
626
    else
627
        echo -e "${GREEN_DARK}To start Taos Adapter (if has)${NC}: taosadapter &${NC}"
628
        echo -e "${GREEN_DARK}To start TDengine     ${NC}: ./taosd${NC}"
H
huili 已提交
629
    fi
630 631 632 633

    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
hzcheng 已提交
634 635 636 637 638
}

## ==============================Main program starts from here============================
echo source directory: $1
echo binary directory: $2
639 640 641 642 643 644
if [ "$osType" != "Darwin" ]; then
    if [ -x ${bin_dir}/taos ]; then
        update_TDengine
    else
        install_TDengine
    fi
H
hzcheng 已提交
645
else
646 647 648 649 650
    if [ -x ${bin_dir}/taos ] || [ -x ${bin_2_dir}/taos ]; then
        update_TDengine
    else
        install_TDengine
    fi
H
hzcheng 已提交
651
fi