make_install.sh 10.9 KB
Newer Older
H
hzcheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
#!/bin/bash
#
# This file is used to install TAOS time-series database on linux systems. The operating system 
# is required to use systemd to manage services at boot

set -e
# set -x

# -----------------------Variables definition---------------------
source_dir=$1
binary_dir=$2
script_dir=$(dirname $(readlink -m "$0"))
# 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"

cfg_install_dir="/etc/taos"

bin_link_dir="/usr/bin"
lib_link_dir="/usr/lib"
inc_link_dir="/usr/include"

#install main path
install_main_dir="/usr/local/taos"

# old bin
bin_dir="/usr/local/taos/bin"

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

H
hzcheng 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59
function is_using_systemd() {
    if pidof systemd &> /dev/null; then
        return 0
    else
        return 1
    fi
}

if ! is_using_systemd; then
    service_config_dir="/etc/init.d"
fi

function install_main_path() {
    #create install main dir and all sub dir
P
plum-lihui 已提交
60 61 62 63 64 65 66 67 68
    ${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     
H
hzcheng 已提交
69 70 71 72
}

function install_bin() {
    # Remove links
P
plum-lihui 已提交
73 74 75
    ${csudo} rm -f ${bin_link_dir}/taos     || :
    ${csudo} rm -f ${bin_link_dir}/taosd    || :
    ${csudo} rm -f ${bin_link_dir}/taosdump || :
S
slguan 已提交
76
    ${csudo} rm -f ${bin_link_dir}/taosdemo || :
P
plum-lihui 已提交
77
    ${csudo} rm -f ${bin_link_dir}/rmtaos   || :
H
hzcheng 已提交
78

P
plum-lihui 已提交
79 80
    ${csudo} cp -r ${binary_dir}/build/bin/taos ${install_main_dir}/bin 
    ${csudo} cp -r ${binary_dir}/build/bin/taosd ${install_main_dir}/bin
S
slguan 已提交
81
    ${csudo} cp -r ${binary_dir}/build/bin/taosdemo ${install_main_dir}/bin
P
plum-lihui 已提交
82 83 84
    ${csudo} cp -r ${binary_dir}/build/bin/taosdump ${install_main_dir}/bin
    ${csudo} cp -r ${script_dir}/remove.sh ${install_main_dir}/bin       
    ${csudo} chmod 0555 ${install_main_dir}/bin/*
H
hzcheng 已提交
85 86

    #Make link
P
plum-lihui 已提交
87
    [ -x ${install_main_dir}/bin/taos ] && ${csudo} ln -s ${install_main_dir}/bin/taos ${bin_link_dir}/taos             || :
S
slguan 已提交
88 89
    [ -x ${install_main_dir}/bin/taosd ] && ${csudo} ln -s ${install_main_dir}/bin/taosd ${bin_link_dir}/taosd          || :  
    [ -x ${install_main_dir}/bin/taosdemo ] && ${csudo} ln -s ${install_main_dir}/bin/taosdemo ${bin_link_dir}/taosdemo || : 
P
plum-lihui 已提交
90 91
    [ -x ${install_main_dir}/bin/taosdump ] && ${csudo} ln -s ${install_main_dir}/bin/taosdump ${bin_link_dir}/taosdump || :
    [ -x ${install_main_dir}/bin/remove.sh ] && ${csudo} ln -s ${install_main_dir}/bin/remove.sh ${bin_link_dir}/rmtaos || :
H
hzcheng 已提交
92 93 94 95
}

function install_lib() {
    # Remove links
P
plum-lihui 已提交
96
    ${csudo} rm -f ${lib_link_dir}/libtaos.so     || :
H
hzcheng 已提交
97 98
    
    versioninfo=$(${script_dir}/get_version.sh)
P
plum-lihui 已提交
99 100 101
    ${csudo} cp ${binary_dir}/build/lib/libtaos.so.${versioninfo} ${install_main_dir}/driver && ${csudo} chmod 777 ${install_main_dir}/driver/*
    ${csudo} ln -sf ${install_main_dir}/driver/libtaos.so.${versioninfo} ${lib_link_dir}/libtaos.so.1
    ${csudo} ln -sf ${lib_link_dir}/libtaos.so.1 ${lib_link_dir}/libtaos.so
H
hzcheng 已提交
102 103 104 105
}

function install_header() {

P
plum-lihui 已提交
106 107 108
    ${csudo} rm -f ${inc_link_dir}/taos.h     || :    
    ${csudo} cp -f ${source_dir}/src/inc/taos.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
H
hzcheng 已提交
109 110 111
}

function install_config() {
P
plum-lihui 已提交
112
    #${csudo} rm -f ${install_main_dir}/cfg/taos.cfg     || :
H
hzcheng 已提交
113 114
    
    if [ ! -f ${cfg_install_dir}/taos.cfg ]; then        
P
plum-lihui 已提交
115 116 117
        ${csudo} mkdir -p ${cfg_install_dir}
        [ -f ${script_dir}/../cfg/taos.cfg ] && ${csudo} cp ${script_dir}/../cfg/taos.cfg ${cfg_install_dir}
        ${csudo} chmod 644 ${cfg_install_dir}/*
H
hzcheng 已提交
118 119
    fi 
    
P
plum-lihui 已提交
120 121
    ${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 
H
hzcheng 已提交
122 123 124
}

function install_log() {  
P
plum-lihui 已提交
125 126
    ${csudo} rm -rf ${log_dir}  || :
    ${csudo} mkdir -p ${log_dir} && ${csudo} chmod 777 ${log_dir}
H
hzcheng 已提交
127
    
P
plum-lihui 已提交
128
    ${csudo} ln -s ${log_dir} ${install_main_dir}/log
H
hzcheng 已提交
129 130 131
}

function install_data() {
P
plum-lihui 已提交
132 133
    ${csudo} mkdir -p ${data_dir}
    ${csudo} ln -s ${data_dir} ${install_main_dir}/data  
H
hzcheng 已提交
134 135 136
}

function install_connector() {
P
plum-lihui 已提交
137 138 139
    ${csudo} cp -rf ${source_dir}/src/connector/grafana ${install_main_dir}/connector
    ${csudo} cp -rf ${source_dir}/src/connector/python ${install_main_dir}/connector
    ${csudo} cp -rf ${source_dir}/src/connector/go ${install_main_dir}/connector
H
hzcheng 已提交
140
        
P
plum-lihui 已提交
141
    ${csudo} cp ${binary_dir}/build/lib/*.jar ${install_main_dir}/connector &> /dev/null && ${csudo} chmod 777 ${install_main_dir}/connector/*.jar || echo &> /dev/null 
H
hzcheng 已提交
142 143 144
}

function install_examples() {
P
plum-lihui 已提交
145
    ${csudo} cp -rf ${source_dir}/tests/examples/* ${install_main_dir}/examples
H
hzcheng 已提交
146 147 148 149 150
}

function clean_service_on_sysvinit() {
    restart_config_str="taos:2345:respawn:${service_config_dir}/taosd start"
    if pidof taosd &> /dev/null; then
P
plum-lihui 已提交
151
        ${csudo} service taosd stop || :
H
hzcheng 已提交
152
    fi
P
plum-lihui 已提交
153 154 155 156
    ${csudo} sed -i "\|${restart_config_str}|d" /etc/inittab || :
    ${csudo} rm -f ${service_config_dir}/taosd || :
    ${csudo} update-rc.d -f taosd remove || :
    ${csudo} init q || :
H
hzcheng 已提交
157 158 159 160 161 162 163 164
}

function install_service_on_sysvinit() {
    clean_service_on_sysvinit

    sleep 1

    # Install taosd service
P
plum-lihui 已提交
165
    ${csudo} cp ${script_dir}/../rpm/init.d/taosd ${service_config_dir} && ${csudo} chmod a+x ${service_config_dir}/taosd
H
hzcheng 已提交
166 167
    restart_config_str="taos:2345:respawn:${service_config_dir}/taosd start"

P
plum-lihui 已提交
168
    ${csudo} grep -q -F "$restart_config_str" /etc/inittab || ${csudo} bash -c "echo '${restart_config_str}' >> /etc/inittab"
H
hzcheng 已提交
169
    # TODO: for centos, change here
P
plum-lihui 已提交
170
    ${csudo} update-rc.d taosd defaults
H
hzcheng 已提交
171 172 173 174 175 176 177 178
    # chkconfig mysqld on
}

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 已提交
179
        ${csudo} systemctl stop taosd &> /dev/null || echo &> /dev/null
H
hzcheng 已提交
180
    fi
P
plum-lihui 已提交
181
    ${csudo} systemctl disable taosd &> /dev/null || echo &> /dev/null
H
hzcheng 已提交
182

P
plum-lihui 已提交
183
    ${csudo} rm -f ${taosd_service_config}
H
hzcheng 已提交
184 185 186 187 188 189 190 191 192
}   

# 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 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
    ${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}"
    ${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 已提交
213 214 215 216 217
}

function install_service() {
    if is_using_systemd; then
        install_service_on_systemd
H
hzcheng 已提交
218
    elif $(which update-rc.d &> /dev/null); then
H
hzcheng 已提交
219 220 221 222 223 224 225 226 227
        install_service_on_sysvinit
    fi
}

function update_TDengine() {
    echo -e "${GREEN}Start to update TDEngine...${NC}"
    # Stop the service if running
    if pidof taosd &> /dev/null; then
        if is_using_systemd; then
P
plum-lihui 已提交
228
            ${csudo} systemctl stop taosd || :
H
hzcheng 已提交
229
        else
P
plum-lihui 已提交
230
            ${csudo} service taosd stop || :
H
hzcheng 已提交
231 232 233
        fi
        sleep 1
    fi
H
huili 已提交
234

H
hzcheng 已提交
235 236 237 238 239 240
    install_main_path

    install_log
    install_header
    install_lib
    install_bin
H
huili 已提交
241
    # install_service
H
hzcheng 已提交
242 243 244 245 246 247 248 249
    install_config
    install_connector
    install_examples

    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"
H
huili 已提交
250
    # if is_using_systemd; then
P
plum-lihui 已提交
251
    #     echo -e "${GREEN_DARK}To start TDengine     ${NC}: ${csudo} systemctl start taosd${NC}"
H
huili 已提交
252
    # else
P
plum-lihui 已提交
253 254
    #     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}"
H
huili 已提交
255 256 257
    # fi

    # echo -e "${GREEN_DARK}To access TDengine    ${NC}: use ${GREEN_UNDERLINE}taos${NC} in shell${NC}"
H
hzcheng 已提交
258 259 260 261 262 263 264 265
    echo
    echo -e "\033[44;32;1mTDengine is updated successfully!${NC}"
}

function install_TDengine() {
    # Start to install
    echo -e "${GREEN}Start to install TDEngine...${NC}"
	
H
huili 已提交
266
	install_main_path
H
hzcheng 已提交
267 268 269 270 271
    install_data
    install_log 
    install_header
    install_bin
    install_lib
H
huili 已提交
272
    # install_service
H
hzcheng 已提交
273 274 275 276 277 278 279 280 281
    install_config	    
    install_connector
    install_examples

    # 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"
H
huili 已提交
282
    # if is_using_systemd; then
P
plum-lihui 已提交
283
    #    echo -e "${GREEN_DARK}To start TDengine     ${NC}: ${csudo} systemctl start taosd${NC}"
H
huili 已提交
284
    # else
P
plum-lihui 已提交
285 286
    #    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}"
H
huili 已提交
287 288 289
    #3 fi

    # echo -e "${GREEN_DARK}To access TDengine    ${NC}: use ${GREEN_UNDERLINE}taos${NC} in shell${NC}"
H
hzcheng 已提交
290 291 292 293 294 295 296 297 298 299 300 301
    echo
    echo -e "\033[44;32;1mTDengine is installed successfully!${NC}"
}

## ==============================Main program starts from here============================
echo source directory: $1
echo binary directory: $2
if [ -x ${bin_dir}/taosd ]; then
    update_TDengine
else
    install_TDengine
fi