欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 汽车 > 新车 > MySQL自动安装脚本8.0和5.0均可

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

2024/10/24 18:24:59 来源:https://blog.csdn.net/zongzizz/article/details/141886856  浏览:    关键词:MySQL自动安装脚本8.0和5.0均可

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

#!/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" ]; thenmkdir -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 ]thenecho -e "\e[31m MYSQL_HOME  The path exists\e[0m"elseecho "export MYSQL_HOME=/usr/local/mysql/bin" >> /etc/profileecho "export PATH=\$PATH:\$MYSQL_HOME"        >> /etc/profilesource /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.根据安装包名称修改脚本中名称后缀

一个后缀是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数据库密码

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com