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.
19 lines
484 B
19 lines
484 B
#!/bin/bash
|
|
|
|
mkdir -p /usr/local/software/mysql
|
|
|
|
cd /usr/local/software/mysql
|
|
wget https://dsideal.obs.cn-north-1.myhuaweicloud.com/HuangHai/mysql/MariaDB.repo
|
|
|
|
# 旧机器升级需要先卸载掉mariadb包
|
|
yum remove mariadb-libs -y
|
|
|
|
\cp MariaDB.repo /etc/yum.repos.d/MariaDB.repo
|
|
yum clean all
|
|
yum makecache
|
|
|
|
rpm --import https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
|
|
yum install MariaDB-client MariaDB-devel -y
|
|
yum install MariaDB-backup -y
|
|
|
|
echo "mysqlClient 安装成功完成!" |