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数据库密码

相关推荐
IT大白鼠5 小时前
MySQL 分布式集群系列 · 第八篇(收官)——NDB 集群面试高频题 +架构总结与未来演进
分布式·mysql·面试
IT大白鼠5 小时前
MySQL 分布式集群系列 · 第七篇——生产调优实战:NDB 性能、内存、高可用全方位优化
数据库·分布式·mysql
ShineWinsu5 小时前
对于MySQL:内置函数的解析
linux·数据库·c++·mysql·面试·函数·查询
邪修king10 小时前
MySQL数据库(二):操作详解:从创建、查看到备份恢复
数据库·mysql
邪修king11 小时前
MySQL 数据库(三):表级操作实战:增删查改全实例演示 + 企业实操红线规范
android·数据库·mysql
知行产研11 小时前
煤矿软件杀成红海,龙软科技押注的“时空智能“能接棒吗?
数据库·科技·mysql
半兽先生12 小时前
MySQL + Milvus vs PostgreSQL + pgvector:AI 应用向量检索架构选型终极指南
mysql·postgresql·milvus
qq_3494479512 小时前
搭建mysql主从数据库
数据库·mysql
PHP实战开发录17 小时前
PHP事务异常后为什么数据还写进去了
mysql·php·开发
呆萌很1 天前
MySQL 8.4 LTS 完整安装教程
数据库·mysql