You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.2 KiB
105 lines
3.2 KiB
#!/usr/bin/env bash
|
|
|
|
# Copyright © 2023 OpenIM open source community. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
#Include shell font styles and some basic information
|
|
SCRIPTS_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
OPENIM_ROOT=$(dirname "${SCRIPTS_ROOT}")/..
|
|
|
|
source $SCRIPTS_ROOT/style_info.sh
|
|
source $SCRIPTS_ROOT/path_info.sh
|
|
source $SCRIPTS_ROOT/function.sh
|
|
|
|
echo -e "${YELLOW_PREFIX}=======>SCRIPTS_ROOT=$SCRIPTS_ROOT${COLOR_SUFFIX}"
|
|
echo -e "${YELLOW_PREFIX}=======>OPENIM_ROOT=$OPENIM_ROOT${COLOR_SUFFIX}"
|
|
echo -e "${YELLOW_PREFIX}=======>pwd=$PWD${COLOR_SUFFIX}"
|
|
|
|
# if [ ! -d "${OPENIM_ROOT}/_output/bin/platforms" ]; then
|
|
# cd $OPENIM_ROOT
|
|
# # exec build_all_service.sh
|
|
# "${SCRIPTS_ROOT}/build_all_service.sh"
|
|
# fi
|
|
|
|
bin_dir="$BIN_DIR"
|
|
logs_dir="$SCRIPTS_ROOT/../logs"
|
|
|
|
echo -e "${YELLOW_PREFIX}=======>bin_dir=$bin_dir${COLOR_SUFFIX}"
|
|
echo -e "${YELLOW_PREFIX}=======>logs_dir=$logs_dir${COLOR_SUFFIX}"
|
|
|
|
#service filename
|
|
service_filename=(
|
|
chat-api
|
|
admin-api
|
|
#rpc
|
|
admin-rpc
|
|
chat-rpc
|
|
)
|
|
|
|
#service config port name
|
|
service_port_name=(
|
|
openImChatApiPort
|
|
openImAdminApiPort
|
|
#api port name
|
|
openImAdminPort
|
|
openImChatPort
|
|
)
|
|
|
|
service_prometheus_port_name=(
|
|
|
|
)
|
|
|
|
# Automatically created when there is no bin, logs folder
|
|
if [ ! -d $logs_dir ]; then
|
|
mkdir -p $logs_dir
|
|
fi
|
|
cd $SCRIPTS_ROOT
|
|
|
|
for ((i = 0; i < ${#service_filename[*]}; i++)); do
|
|
#Check whether the service exists
|
|
# service_name="ps |grep -w ${service_filename[$i]} |grep -v grep"
|
|
# count="${service_name}| wc -l"
|
|
#
|
|
# if [ $(eval ${count}) -gt 0 ]; then
|
|
# pid="${service_name}| awk '{print \$2}'"
|
|
# echo "${service_filename[$i]} service has been started,pid:$(eval $pid)"
|
|
# echo "killing the service ${service_filename[$i]} pid:$(eval $pid)"
|
|
# #kill the service that existed
|
|
# kill -9 $(eval $pid)
|
|
# sleep 0.5
|
|
# fi
|
|
cd $SCRIPTS_ROOT
|
|
|
|
#Get the rpc port in the configuration file
|
|
portList=$(cat $config_path | grep ${service_port_name[$i]} | awk -F '[:]' '{print $NF}')
|
|
list_to_string ${portList}
|
|
service_ports=($ports_array)
|
|
|
|
#Start related rpc services based on the number of ports
|
|
for ((j = 0; j < ${#service_ports[*]}; j++)); do
|
|
#Start the service in the background
|
|
cmd="$bin_dir/${service_filename[$i]} -port ${service_ports[$j]} --config_folder_path ${config_path}"
|
|
if [ $i -eq 0 -o $i -eq 1 ]; then
|
|
cmd="$bin_dir/${service_filename[$i]} -port ${service_ports[$j]} --config_folder_path ${config_path}"
|
|
fi
|
|
echo $cmd
|
|
nohup $cmd >>${logs_dir}/openIM.log 2>&1 &
|
|
sleep 1
|
|
# pid="netstat -ntlp|grep $j |awk '{printf \$7}'|cut -d/ -f1"
|
|
# echo -e "${GREEN_PREFIX}${service_filename[$i]} start success,port number:${service_ports[$j]} pid:$(eval $pid)$COLOR_SUFFIX"
|
|
done
|
|
done |