当前位置:Gxlcms > 数据库问题 > MYSQL一键安装

MYSQL一键安装

时间:2021-07-01 10:21:17 帮助过:20人阅读

#!/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一键安装

标签:/usr   .gz   grep   一键   cli   bsp   extra   debug   install   

人气教程排行