diff --git a/init_docker.sh b/init_docker.sh index edc1df58d..09213bf50 100644 --- a/init_docker.sh +++ b/init_docker.sh @@ -1,9 +1,30 @@ #!/usr/bin/env bash -cd scripts ; -chmod +x *.sh ; -./env_check.sh; -cd .. ; -docker-compose up -d; -cd scripts ; +set -e + +# Change directory to the 'scripts' folder +cd scripts + +# Grant execute permissions to all shell scripts in the 'scripts' folder +chmod +x *.sh + +# Run the 'env_check.sh' script for environment checks +./env_check.sh + +# Move back to the parent directory +cd .. + +# Check if Docker is installed +if ! command -v docker >/dev/null 2>&1; then + echo "Error: Docker is not installed. Please install Docker before running this script." + exit 1 +fi + +# Start Docker services using docker-compose +docker-compose up -d + +# Move back to the 'scripts' folder +cd scripts + +# Run the 'docker_check_service.sh' script for Docker service checks ./docker_check_service.sh diff --git a/scripts/batch_build_all_service.sh b/scripts/batch_build_all_service.sh index 83aba4451..7bb75de77 100755 --- a/scripts/batch_build_all_service.sh +++ b/scripts/batch_build_all_service.sh @@ -23,7 +23,7 @@ source "$(dirname "${BASH_SOURCE[0]}")/../scripts.sh" source "$(dirname "${BASH_SOURCE[0]}")/../scripts/style_info.cfg" \ "$OPENIM_ROOT/scripts/path_info.cfg" -bin_dir="$OPENIM_ROOT/bin" +bin_dir="$BIN_DIR" logs_dir="$OPENIM_ROOT/logs" sdk_db_dir="$OPENIM_ROOT/sdk/db/" diff --git a/scripts/init_pwd.sh b/scripts/init_pwd.sh index fa8296724..25ee559a3 100755 --- a/scripts/init_pwd.sh +++ b/scripts/init_pwd.sh @@ -1,3 +1,5 @@ +#!/bin/bash + # Copyright © 2023 OpenIM. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -14,7 +16,6 @@ source ../.env - # Check if PASSWORD only contains letters and numbers if [[ "$PASSWORD" =~ ^[a-zA-Z0-9]+$ ]] then @@ -24,15 +25,11 @@ else exit fi - echo "your user is:$USER" echo "your password is:$PASSWORD" echo "your minio endPoint is:$MINIO_ENDPOINT" echo "your data dir is $DATA_DIR" - -#!/bin/bash - # Specify the config file config_file='../config/config.yaml' @@ -57,4 +54,3 @@ sed -i '/minio:/,/endpoint:/s|endpoint: .*|endpoint: '${MINIO_ENDPOINT}'|' $conf # Replace secret for token sed -i "s/secret: .*/secret: $PASSWORD/" $config_file - diff --git a/scripts/msg_gateway_start.sh b/scripts/msg_gateway_start.sh index 5ca720aa8..62a8479c9 100755 --- a/scripts/msg_gateway_start.sh +++ b/scripts/msg_gateway_start.sh @@ -21,7 +21,7 @@ source $OPENIM_ROOT/scripts/style_info.cfg source $OPENIM_ROOT/scripts/path_info.cfg source $OPENIM_ROOT/scripts/function.sh -bin_dir="$OPENIM_ROOT/bin" +bin_dir="$BIN_DIR" logs_dir="$OPENIM_ROOT/logs" sdk_db_dir="$OPENIM_ROOT/sdk/db/" diff --git a/scripts/msg_transfer_start.sh b/scripts/msg_transfer_start.sh index 2cd1ff8d7..50c01cb9d 100755 --- a/scripts/msg_transfer_start.sh +++ b/scripts/msg_transfer_start.sh @@ -21,7 +21,7 @@ source $OPENIM_ROOT/scripts/style_info.cfg source $OPENIM_ROOT/scripts/path_info.cfg source $OPENIM_ROOT/scripts/function.sh -bin_dir="$OPENIM_ROOT/bin" +bin_dir="$BIN_DIR" logs_dir="$OPENIM_ROOT/logs" sdk_db_dir="$OPENIM_ROOT/sdk/db/" diff --git a/scripts/path_info.cfg b/scripts/path_info.cfg index 6c031c8b3..57f328a47 100755 --- a/scripts/path_info.cfg +++ b/scripts/path_info.cfg @@ -2,7 +2,20 @@ architecture=$(uname -m) version=$(uname -s | tr '[:upper:]' '[:lower:]') -OPENIM_ROOT=$(dirname "${BASH_SOURCE[0]}")/.. +#Include shell font styles and some basic information +SCRIPTS_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) +OPENIM_ROOT=$(dirname "${SCRIPTS_ROOT}")/.. + +#Include shell font styles and some basic information +source $SCRIPTS_ROOT/style_info.cfg +source $SCRIPTS_ROOT/path_info.cfg +source $SCRIPTS_ROOT/function.sh + +cd $SCRIPTS_ROOT + +echo -e "${BACKGROUND_YELLOW}=======>SCRIPTS_ROOT=$SCRIPTS_ROOT${COLOR_SUFFIX}" +echo -e "${BACKGROUND_YELLOW}=======>OPENIM_ROOT=$OPENIM_ROOT${COLOR_SUFFIX}" +echo -e "${BACKGROUND_YELLOW}=======>pwd=$PWD${COLOR_SUFFIX}" # Define the supported architectures and corresponding bin directories declare -A supported_architectures=( @@ -46,20 +59,20 @@ push_source_root="../cmd/push/" openim_msgtransfer="openim-rpc-msg_transfer" msg_transfer_binary_root="$OPENIM_ROOT/$BIN_DIR" -msg_transfer_source_root="../cmd/msgtransfer/" +msg_transfer_source_root="$OPENIM_ROOT/cmd/msgtransfer/" msg_transfer_service_num=4 cron_task_name="openim-crontask" cron_task_binary_root="$OPENIM_ROOT/$BIN_DIR" -cron_task_source_root="../cmd/crontask/" +cron_task_source_root="$OPENIM_ROOT/cmd/crontask/" cmd_utils_name="openim_cmd_utils" cmd_utils_binary_root="$OPENIM_ROOT/$BIN_DIR" -cmd_utils_source_root="../cmd/cmduitls/" +cmd_utils_source_root="$OPENIM_ROOT/cmd/cmduitls/" # Global configuration file default dir -config_path="../config/config.yaml" +config_path="$OPENIM_ROOT/config/config.yaml" # servicefile dir path service_source_root=( diff --git a/scripts/push_start.sh b/scripts/push_start.sh index c2a8e7d36..204f710e7 100755 --- a/scripts/push_start.sh +++ b/scripts/push_start.sh @@ -21,7 +21,7 @@ source $OPENIM_ROOT/scripts/style_info.cfg source $OPENIM_ROOT/scripts/path_info.cfg source $OPENIM_ROOT/scripts/function.sh -bin_dir="$OPENIM_ROOT/bin" +bin_dir="$BIN_DIR" logs_dir="$OPENIM_ROOT/logs" sdk_db_dir="$OPENIM_ROOT/sdk/db/" diff --git a/scripts/start_all.sh b/scripts/start_all.sh index 7a9fd656c..44c613479 100755 --- a/scripts/start_all.sh +++ b/scripts/start_all.sh @@ -17,21 +17,26 @@ #FIXME The full names of the shell scripts that need to be started are placed in the `need_to_start_server_shell` array. #Include shell font styles and some basic information -OPENIM_ROOT=$(dirname "${BASH_SOURCE[0]}")/.. +SCRIPTS_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) +OPENIM_ROOT=$(dirname "${SCRIPTS_ROOT}")/.. #Include shell font styles and some basic information -source $OPENIM_ROOT/scripts/style_info.cfg -source $OPENIM_ROOT/scripts/path_info.cfg -source $OPENIM_ROOT/scripts/function.sh +source $SCRIPTS_ROOT/style_info.cfg +source $SCRIPTS_ROOT/path_info.cfg +source $SCRIPTS_ROOT/function.sh -bin_dir="$OPENIM_ROOT/bin" +cd $SCRIPTS_ROOT + +echo -e "${BACKGROUND_YELLOW}=======>SCRIPTS_ROOT=$SCRIPTS_ROOT${COLOR_SUFFIX}" +echo -e "${BACKGROUND_YELLOW}=======>OPENIM_ROOT=$OPENIM_ROOT${COLOR_SUFFIX}" +echo -e "${BACKGROUND_YELLOW}=======>pwd=$PWD${COLOR_SUFFIX}" + +bin_dir="$BIN_DIR" logs_dir="$OPENIM_ROOT/logs" sdk_db_dir="$OPENIM_ROOT/sdk/db/" -cd "$OPENIM_ROOT/scripts/" - # Print title -echo -e "${BOLD_PREFIX}${BLUE_PREFIX}OpenIM Server Start${COLOR_SUFFIX}" +echo -e "${BOLD_PREFIX}${BLUE_PREFIX}================> OpenIM Server Start${COLOR_SUFFIX}" # Get current time time=$(date +"%Y-%m-%d %H:%M:%S") @@ -45,7 +50,6 @@ echo -e "${BOLD_PREFIX}${CYAN_PREFIX}Server Start Time: ${time}${COLOR_SUFFIX}" # Print section separator echo -e "${PURPLE_PREFIX}==========================================================${COLOR_SUFFIX}" -cd $OPENIM_ROOT/scripts # FIXME Put the shell script names here need_to_start_server_shell=( start_rpc_service.sh @@ -55,7 +59,6 @@ need_to_start_server_shell=( start_cron.sh ) - # Loop through the script names and execute them for i in ${need_to_start_server_shell[*]}; do chmod +x $i diff --git a/scripts/start_cron.sh b/scripts/start_cron.sh index b18d19478..c7ce4e451 100755 --- a/scripts/start_cron.sh +++ b/scripts/start_cron.sh @@ -21,7 +21,7 @@ source $OPENIM_ROOT/scripts/style_info.cfg source $OPENIM_ROOT/scripts/path_info.cfg source $OPENIM_ROOT/scripts/function.sh -bin_dir="$OPENIM_ROOT/bin" +bin_dir="$BIN_DIR" logs_dir="$OPENIM_ROOT/logs" sdk_db_dir="$OPENIM_ROOT/sdk/db/" diff --git a/scripts/start_rpc_service.sh b/scripts/start_rpc_service.sh index 028bdc8c8..2d0e70f63 100755 --- a/scripts/start_rpc_service.sh +++ b/scripts/start_rpc_service.sh @@ -13,12 +13,20 @@ # See the License for the specific language governing permissions and # limitations under the License. -OPENIM_ROOT=$(dirname "${BASH_SOURCE[0]}")/.. +#Include shell font styles and some basic information +SCRIPTS_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) +OPENIM_ROOT=$(dirname "${SCRIPTS_ROOT}")/.. #Include shell font styles and some basic information -source $OPENIM_ROOT/scripts/style_info.cfg -source $OPENIM_ROOT/scripts/path_info.cfg -source $OPENIM_ROOT/scripts/function.sh +source $SCRIPTS_ROOT/style_info.cfg +source $SCRIPTS_ROOT/path_info.cfg +source $SCRIPTS_ROOT/function.sh + +cd $SCRIPTS_ROOT + +echo -e "${BACKGROUND_YELLOW}=======>SCRIPTS_ROOT=$SCRIPTS_ROOT${COLOR_SUFFIX}" +echo -e "${BACKGROUND_YELLOW}=======>OPENIM_ROOT=$OPENIM_ROOT${COLOR_SUFFIX}" +echo -e "${BACKGROUND_YELLOW}=======>pwd=$PWD${COLOR_SUFFIX}" bin_dir="$BIN_DIR" logs_dir="$OPENIM_ROOT/logs" diff --git a/scripts/stop_all.sh b/scripts/stop_all.sh index 133bb9577..7bec5b53f 100755 --- a/scripts/stop_all.sh +++ b/scripts/stop_all.sh @@ -21,7 +21,7 @@ source $OPENIM_ROOT/scripts/style_info.cfg source $OPENIM_ROOT/scripts/path_info.cfg source $OPENIM_ROOT/scripts/function.sh -bin_dir="$OPENIM_ROOT/bin" +bin_dir="$BIN_DIR" logs_dir="$OPENIM_ROOT/logs" sdk_db_dir="$OPENIM_ROOT/sdk/db/"