Files
open-im-server/scripts/install/mariadb_for_ubuntu.sh
T
Xinwei Xiong(cubxxw-openim) 995e68dcae feat: set opneim's bash logs
Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com>
2023-08-17 14:45:13 +08:00

84 lines
2.8 KiB
Bash
Executable File

#!/usr/bin/env bash
# Copyright © 2023 OpenIM. 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.
# The root of the build/dist directory
OPENIM_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
[[ -z ${COMMON_SOURCED} ]] && source ${OPENIM_ROOT}/scripts/install/common.sh
# 安装后打印必要的信息
function openim::mariadb::info() {
cat << EOF
MariaDB Login: mysql -h127.0.0.1 -u${MARIADB_ADMIN_USERNAME} -p'${MARIADB_ADMIN_PASSWORD}'
EOF
}
# 安装
function openim::mariadb::install()
{
# 1. 配置 MariaDB 10.5 apt 源
openim::common::sudo "apt-get install software-properties-common dirmngr apt-transport-https"
echo ${LINUX_PASSWORD} | sudo -S apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc'
# add /etc/apt/sources.list
echo ${LINUX_PASSWORD} | sudo -S add-apt-repository 'deb [arch=amd64,arm64,ppc64el,s390x] https://mirrors.aliyun.com/mariadb/repo/10.5/ubuntu focal main'
# 2. 安装 MariaDB 和 MariaDB 客户端
openim::common::sudo "apt update"
openim::common::sudo "apt -y install mariadb-server"
# 3. 启动 MariaDB,并设置开机启动
openim::common::sudo "systemctl enable mariadb"
openim::common::sudo "systemctl start mariadb"
# 4. 设置 root 初始密码
openim::common::sudo "mysqladmin -u${MARIADB_ADMIN_USERNAME} password ${MARIADB_ADMIN_PASSWORD}"
openim::mariadb::status || return 1
openim::mariadb::info
openim::log::info "install MariaDB successfully"
}
# 卸载
function openim::mariadb::uninstall()
{
set +o errexit
openim::common::sudo "systemctl stop mariadb"
openim::common::sudo "systemctl disable mariadb"
openim::common::sudo "apt-get -y remove mariadb-server"
openim::common::sudo "rm -rf /var/lib/mysql"
set -o errexit
openim::log::info "uninstall MariaDB successfully"
}
# 状态检查
function openim::mariadb::status()
{
# 查看 mariadb 运行状态,如果输出中包含 active (running) 字样说明 mariadb 成功启动。
systemctl status mariadb |grep -q 'active' || {
openim::log::error "mariadb failed to start, maybe not installed properly"
return 1
}
mysql -u${MARIADB_ADMIN_USERNAME} -p${MARIADB_ADMIN_PASSWORD} -e quit &>/dev/null || {
openim::log::error "can not login with root, mariadb maybe not initialized properly"
return 1
}
openim::log::info "MariaDB status active"
}
if [[ "$*" =~ openim::mariadb:: ]];then
eval $*
fi