MYSQL一键安装

Posted 当你的能力撑不起你的欲望时,请静下心来学习吧!!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MYSQL一键安装相关的知识,希望对你有一定的参考价值。

#!/bin/bash
#baishuchao qq:995345781
##################################################################
MAKE_RUN=$(($(more /proc/cpuinfo | grep processor | wc -l) + 1))
groupadd mysql
useradd -g mysql -s /sbin/nologin mysql
tar zxvf mysql-5.0.51a.tar.gz
cd mysql-5.0.51a
./configure     --prefix=/usr/local/mysql     --enable-assembler     --without-debug     --with-mysqld-ldflags=-all-static     --with-charset=utf8     --with-extra-charsets=all     --with-innodb     --with-unix-socket-path=/usr/local/mysql/mysql.sock     --enable-thread-safe-client     --with-mysqld-user=mysql
make -j ${MAKE_RUN}
make install
/usr/local/mysql/bin/mysql_install_db --user=mysql
cd ..

  

 

以上是关于MYSQL一键安装的主要内容,如果未能解决你的问题,请参考以下文章

一键安装MySQL5.6.43脚本

vsCode写vue项目一键生成.vue模板

Fastlane 一键打包/发布APP - 使用记录及踩坑

Fastlane 一键打包/发布APP - 使用记录及踩坑

shell脚本------一键部署MySQL

自动化运维——一键安装MySQL