MySQL自动安装脚本8.0和5.0均可

准备工作:上传安装脚本和安装包到/soft目录或者其他空目录。

c 复制代码
#!/bin/bash
echo "-----------------------------start  install--------------------------------------"
start_time=$(date +%s)
echo -e "input version,such as \e[31m8.0.27\e[0m"
read version
find / -name mysql | xargs rm -rf
port=$(netstat -antup|grep mysql|wc -l)
if [ $port != 0 ]
then echo "The MySQL process exists, please kill the process first"
ps -ef |grep mysqld
exit 1
fi
echo "--------Create the required directory and user, and upload the installation package-----------"
current_dir=$(pwd)
echo "current directory: $current_dir"
target_dir="/opt"
if [ ! -d "$target_dir" ]; then
    mkdir -p "$target_dir"
    echo "target directory: $target_dir"
fi
mv $current_dir/* $target_dir
echo "copy complete to $target_dir"
mkdir -p  /data/mysql
groupadd mysql
useradd -r -g mysql mysql
cd /opt/
tar -xvf mysql-$version-linux-glibc2.12-x86_64.tar.gz
mv mysql-$version-linux-glibc2.12-x86_64/  /usr/local/
cd /usr/local/
mv mysql-$version-linux-glibc2.12-x86_64/ mysql
chown -R mysql.mysql /usr/local/mysql/
echo "-----------Uninstall the existing MySQL components---------------"
yum list installed | grep mariadb
yum -y remove mariadb*
yum remove mariadb*
chown mysql:mysql -R /data/mysql
touch /etc/my.cnf
chmod 644 /etc/my.cnf
MYSQL_ROOT_PASSWORD=123456
cat <<EOF >/etc/my.cnf
[mysqld]
user=mysql
basedir=/usr/local/mysql
datadir=/data/mysql
socket=/tmp/mysql.sock
log-error=/data/mysql/mysql.err
pid-file=/data/mysql/mysql.pid
server_id=1
port=3306
character-set-server=utf8
innodb_rollback_on_timeout = ON
character-set-server = utf8
collation-server=utf8_general_ci
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
lower_case_table_names=1
max_connections=10000
sync_binlog=1
binlog_format=row
log-bin=mysql-bin
expire_logs_days=30
[mysql]
socket=/tmp/mysql.sock
default-character-set=utf8
[client]
EOF
echo "---------------Initialize Database--------------"
cd /usr/local/mysql/bin
./mysqld --defaults-file=/etc/my.cnf --basedir=/usr/local/mysql/ --datadir=/data/mysql/ --user=mysql --initialize
cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql
path=$(grep 'MYSQL_HOME' /etc/profile|wc -l)
if [ $path !=  0 ]
  then
    echo -e "\e[31m MYSQL_HOME  The path exists\e[0m"
  else
    echo "export MYSQL_HOME=/usr/local/mysql/bin" >> /etc/profile
    echo "export PATH=\$PATH:\$MYSQL_HOME"        >> /etc/profile
    source /etc/profile
fi
echo "-----------------------Start MYSQL service------------------------------"
service mysql start
echo 'export PATH=$PATH:/usr/local/mysql/bin:/usr/local/mysql/lib'>>/etc/profile
sleep 3
source /etc/profile
cat /data/mysql/mysql.err|grep password
chkconfig --add mysql
chkconfig mysql on
chkconfig --list mysql
echo "------------congratulations! MYSQL installation successful--------------"
end_time=$(date +%s)
execution_time=$((end_time - start_time))
echo "Script execution time:${execution_time} s"
MYSQL_OLDPASSWORD=`awk '/A temporary password/{print $NF}' /data/mysql/mysql.err`
mysqladmin  -uroot -p${MYSQL_OLDPASSWORD} password ${MYSQL_ROOT_PASSWORD}
mysql -uroot -p123456 -e "update mysql.user set host ='%' where user ='root';"
mysql -uroot -p123456 -e "flush privileges;"
mysql -uroot -p123456

注意事项:注意mysql安装包的名称格式,不同版本的安装包名称可能不通,注意修改脚本中安装包名称后缀。

1.根据安装包名称修改脚本中名称后缀

c 复制代码
一个后缀是xz一个后缀是gz
mysql-8.0.32-linux-glibc2.12-x86_64.tar.xz
mysql-5.7.41-linux-glibc2.12-x86_64.tar.gz

2.安装开始之后输入版本号就行了

3.注意修改脚本中MYSQL_ROOT_PASSWORD作为mysql数据库密码

相关推荐
这孩子叫逆5 小时前
6. 什么是MySQL的事务?如何在Java中使用Connection接口管理事务?
数据库·mysql
掘根7 小时前
【网络】高级IO——poll版本TCP服务器
网络·数据库·sql·网络协议·tcp/ip·mysql·网络安全
Bear on Toilet8 小时前
初写MySQL四张表:(3/4)
数据库·mysql
无妄啊______8 小时前
mysql笔记9(子查询)
数据库·笔记·mysql
Looooking9 小时前
MySQL 中常用函数使用
数据库·mysql
island13149 小时前
从 InnoDB 到 Memory:MySQL 存储引擎的多样性
数据库·学习·mysql
ZZDICT9 小时前
MySQL 子查询
数据库·mysql
柳鲲鹏10 小时前
编译成功!QT/6.7.2/Creator编译Windows64 MySQL驱动(MinGW版)
开发语言·qt·mysql
一个很帅的帅哥10 小时前
实现浏览器的下拉加载功能(类似知乎)
开发语言·javascript·mysql·mongodb·node.js·vue·express
dbln10 小时前
MySQL之表的约束
数据库·mysql