码迷,mamicode.com
首页 > 数据库 > 详细

MYSQL一键安装

时间:2018-02-02 18:41:44      阅读:182      评论:0      收藏:0      [点我收藏+]

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

#!/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   

原文地址:https://www.cnblogs.com/baishuchao/p/8405999.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!