编译安装MySQL

转载地址:http://blog.csdn.net/u010257584/article/details/51315438


1.前言

本文测试环境:

  • CentOS release 6.4(Linux version 2.6.32-358.el6.x86_64)

  • MySQL 5.7.12

本节用到的相关安装包下载地址如下:

  • mysql源码安装包http://dev.mysql.com/doc/refman/5.7/en/source-installation.html

  • cmake安装包:https://cmake.org/download/

  • boost安装包:http://sourceforge.net/projects/boost/files/boost/1.59.0/boost_1_59_0.tar.gz

2.安装前准备

1)安装必要的组件

[sql] view plain copy
  1. [root@nn ~]# yum install bison  
  2.   
  3. [root@nn ~]# yum install cmake  
  4.   
  5. [root@nn ~]# yun install boost  

或者下载对应的安装包再解压安装(本文的方法):

  • Cmake下载安装
[sql] view plain copy
  1. [root@nn ~]# cd /home/MySql/  
  2.   
  3. [root@nn MySql]# tar zxvf cmake-3.5.2.tar.gz  
  4.   
  5. [root@nn MySql]# cd cmake-3.5.2/  
  6.   
  7. [root@nn cmake-3.5.2]# ./bootstrap  
  8.   
  9. CMake has bootstrapped.  Now run gmake.  
  10.   
  11. [root@nn cmake-3.5.2]# make && make install  
  12.   
  13. [root@nn cmake-3.5.2]# cmake --version  
  14.   
  15. cmake version 3.5.2  
  16.   
  17. CMake suite maintained and supported by Kitware (kitware.com/cmake).  
  • Boost下载安装
[sql] view plain copy
  1. [root@nn MySql]# wget --no-check-certificate http://sourceforge.net/projects/boost/files/boost/1.59.0/boost_1_59_0.tar.gz  
  2.   
  3. [root@nn MySql]# tar -zxvf /home/MySql/boost_1_59_0.tar.gz -C /usr/local  
  4.   
  5. [root@nn MySql]# /usr/local  
  6.   
  7. [root@nn local]# mv boost_1_59_0 boost  
  8.   
  9. [root@nn local]# cd boost/  
  10.   
  11. [root@nn boost]# ./bootstrap.sh  
  12.   
  13. Building Boost.Build engine with toolset gcc... tools/build/src/engine/bin.linux                                                                             x86_64/b2  
  14.   
  15. Detecting Python version... 2.6  
  16.   
  17. Detecting Python root... /usr  
  18.   
  19. Unicode/ICU support for Boost.Regex?... not found.  
  20.   
  21. Generating Boost.Build configuration in project-config.jam...  
  22.   
  23. Bootstrapping is done. To build, run:  
  24.   
  25.  ./b2  
  26.   
  27. To adjust configuration, edit 'project-config.jam'.  
  28.   
  29. Further information:  
  30.   
  31.  - Command line help:  
  32.   
  33. ./b2 --help  
  34.   
  35. - Getting started guide:  
  36.   
  37. http://www.boost.org/more/getting_started/unix-variants.html  
  38.   
  39. - Boost.Build documentation:  
  40.   
  41. http://www.boost.org/build/doc/html/index.html  
  42.   
  43. [root@nn boost]# ./b2 install  

不安装boost,那么用cmake安装MySQL时会出现如下的错误:

编译安装MySQL_第1张图片

2)添加MySQL用户组及用户

[sql] view plain copy
  1. [root@nn ~]# groupadd mysql  
  2.   
  3. [root@nn ~]# useradd -r -g mysql -s /bin/false mysql  
3)创建MySQL安装目录
[sql] view plain copy
  1. [root@nn ~]# mkdir -p /usr/local/mysql  

4) 创建数据库数据文件目录

[sql] view plain copy
  1. [root@nn ~]# mkdir -p /home/mysql  
  2.   
  3. [root@nn ~]# mkdir -p /home/mysql/data  
  4.   
  5. [root@nn ~]# mkdir -p /home/mysql/logs  
  6.   
  7. [root@nn ~]# mkdir -p /home/mysql/temp  

5) 添加MySQL PATH路径并开放3306端口

[sql] view plain copy
  1. [root@nn ~]# vi /etc/profile  
  2.   
  3. # use for mysql  
  4.   
  5. export PATH=/usr/local/mysql/bin:/usr/local/mysql/lib:$PATH  
  6.   
  7. [root@nn ~]# source /etc/profile  

防火墙的3306端口默认没有开启,若要远程访问,需要开启这个端口

[sql] view plain copy
  1. [root@nn ~]# vi /etc/sysconfig/iptables  
  2.   
  3. -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT  
  4.   
  5. [root@nn ~]# /etc/init.d/iptables restart  
  6.   
  7. 或者service iptables restart  

3.安装

1)解压

[sql] view plain copy
  1. [root@nn ~] cd /home/MySql/  
  2.   
  3. [root@nn MySql]# tar -zxvf mysql-5.7.12.tar.gz  
  4.   
  5. [root@nn MySql]# cd mysql-5.7.12  

2)使用cmake编译并安装MySQL

[sql] view plain copy
  1. [root@nn mysql-5.7.12]# cmake \  
  2. > -DCMAKE_INSTALL_PREFIX=/usr/local/mysql \  
  3. > -DMYSQL_UNIX_ADDR=/usr/local/mysql/mysql.sock \  
  4. > -DDEFAULT_CHARSET=utf8 \  
  5. > -DDEFAULT_COLLATION=utf8_general_ci \  
  6. > -DWITH_MYISAM_STORAGE_ENGINE=1 \  
  7. > -DWITH_INNOBASE_STORAGE_ENGINE=1 \  
  8. > -DWITH_ARCHIVE_STORAGE_ENGINE=1 \  
  9. > -DWITH_BLACKHOLE_STORAGE_ENGINE=1 \  
  10. > -DWITH_MEMORY_STORAGE_ENGINE=1 \  
  11. > -DWITH_READLINE=1 \  
  12. > -DENABLED_LOCAL_INFILE=1 \  
  13. > -DMYSQL_DATADIR=/home/mysql/data \  
  14. > -DMYSQL_USER=mysql \  
  15. > -DMYSQL_TCP_PORT=3306 \  
  16. > -DENABLE_DOWNLOADS=1 \  
  17. > -DDOWNLOAD_BOOST=1 \  
  18. > -DWITH_BOOST=/usr/local/boost  
  19. [root@nn mysql-5.7.12]# make && make install --该步骤时间比较久,耐心等待  
3)修改目录所有者
[sql] view plain copy
  1. [root@nn mysql-5.7.12]# chown -R mysql:mysql /usr/local/mysql  
  2.   
  3. [root@nn mysql-5.7.12]# chown -R mysql:mysql /home/mysql  

4)初始化配置

[sql] view plain copy
  1. [root@nn mysql-5.7.12]# cd /usr/local/mysql  
  2.   
  3. [root@nn mysql]# bin/mysqld --initialize --basedir=/usr/local/mysql --datadir=/home/mysql/data --user=mysql  


以root初始化操作时要加--user=mysql参数,生成一个随机密码(注意保存登录时用),在初始化时如果加上 -initial-insecure,则会创建空密码。

5)配置文件my.cnf

     在启动MySQL服务时,会按照一定次序搜索my.cnf,先在/etc目录下找,找不到则会搜索"$basedir/my.cnf",在本例中就是 /usr/local/mysql/my.cnf,这是新版MySQL的配置文件的默认位置!注意:在CentOS 6.4版操作系统的最小安装完成后,在/etc目录下会存在一个my.cnf,需要将此文件更名为其他的名字,如:/etc/my.cnf.bak,否则,该文件会干扰源码安装的MySQL的正确配置,造成无法启动。在使用"yum update"更新系统后,需要检查下/etc目录下是否会多出一个my.cnf,如果多出,将它重命名成别的。否则,MySQL将使用这个配置文件启动,可能造成无法正常启动等问题。(摘自网络

将默认生成的my.cnf备份

[sql] view plain copy
  1. [root@nn mysql]# mv /etc/my.cnf /etc/my.cnf.bak  
拷贝配置文件模板为新的mysql配置文件
[sql] view plain copy
  1. [root@nn mysql]# cp /usr/local/mysql/support-files/my-default.cnf /etc/my.cnf  

可按需修改新的配置文件选项,不修改配置选项,mysql则按默认配置参数运行。

6)启动设置
[sql] view plain copy
  1. [root@nn mysql]# cp support-files/mysql.server /etc/init.d/mysql  
  2.   
  3. [root@nn mysql]# chkconfig mysql on  
  4.   
  5. [root@nn mysql]# service mysql start  
  6.   
  7.     Starting MySQL. SUCCESS!  
7)重置密码
在步骤4的初始化步骤中生成了MySQL的原始密码,实际使用中需要修改密码。

查询原始密码:


[sql] view plain copy
  1. [root@nn bin]# cat /root/.mysql_secret  
  2.   
  3. Password set for user 'root@localhost' at 2016-05-04 09:42:42 Sf/v-P5g:o+X  
修改原始密码:
[sql] view plain copy
  1. [root@nn bin]# mysqladmin -h localhost -uroot password "123456" -p'Sf/v-P5g:o+X'--socket=/usr/local/mysql/mysql.sock  
  2.   
  3. mysqladmin: [Warning] Using a password on the command line interface can be insecure.  
  4.   
  5. mysqladmin: connect to server at 'localhost' failed  
  6.   
  7. error: 'Access denied for user 'root'@'localhost' (using password: YES)'  

出错,试试用改密码登录MySQL:

[sql] view plain copy
  1. [root@nn bin]# mysql -uroot -p  
  2.   
  3. Enter password:  
  4.   
  5. ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using passwordNO)  
解决方法:
[sql] view plain copy
  1. [root@nn bin]# service mysqld stop  
  2.   
  3. [root@nn bin]# mysqld_safe --skip-grant-tables & mysql -uroot -p  
  4.   
  5. mysql>use mysql;  
  6.   
  7. mysql> update mysql.user set authentication_string=password("123456")where user="root";  
  8.   
  9. Query OK, 1 row affected, 1 warning (0.00 sec)  
  10.   
  11. Rows matched: 1  Changed: 1  Warnings: 1  
  12.   
  13. mysql> flush privileges;  
  14.   
  15. Query OK, 0 rows affected (0.00 sec)  
  16.   
  17. mysql> quit  
  18.   
  19. Bye  
  20.   
  21. [2]+ Exit 1 mysqld_safe --skip-grant-tables  
  22.   
  23. [root@nn bin]# service mysqld restart  
  24.   
  25. Shutting down MySQL..2016-05-04T06:57:15.267695Z mysqld_safe mysqld from pid file /home/mysql/data/nn.pid ended  
  26.   
  27.  SUCCESS!  
  28.   
  29. Starting MySQL. SUCCESS!  
  30.   
  31. [1]+ Done mysqld_safe --user=mysql --skip-grant-tables --skip-networking  
8)验证
[sql] view plain copy
  1. [root@nn bin]# mysql -uroot -p  
  2.   
  3. Enter password:  
  4.   
  5. Welcome to the MySQL monitor. Commands end with ; or \g.  
  6.   
  7. Your MySQL connection id is 2  
  8.   
  9. Server version: 5.7.12  
  10.   
  11. Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.  
  12.   
  13. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respectiveowners.  
  14.   
  15. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.  
  16.   
  17. mysql> show variables like 'character%';  
  18.   
  19.     +--------------------------+------------------------+  
  20.   
  21.     | Variable_name            | Value                         |  
  22.   
  23.     +--------------------------+-------------------------+  
  24.   
  25.     | character_set_client     | utf8                         |  
  26.   
  27.     | character_set_connection | utf8                        |  
  28.   
  29.     | character_set_database   | utf8                         |  
  30.   
  31.     | character_set_filesystem | binary                      |  
  32.   
  33.     | character_set_results    | utf8                         |  
  34.   
  35.     | character_set_server     | utf8                         |  
  36.   
  37.     | character_set_system     | utf8                         |  
  38.   
  39.     | character_sets_dir | /usr/local/mysql/share/charsets/|  
  40.   
  41.     +--------------------------+-------------------------+  
  42.   
  43.  8 rows in set (0.00 sec)  
  44.   
  45. "font-family:KaiTi_GB2312;font-size:14px;">允许root远程连接(慎重):  
  46.   
  47. mysql> GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY "root";  
  48.   
  49. Query OK, 0 rows affected, 1 warning (0.00 sec)  
  50.   
  51. mysql> flush privileges;  
  52.   
  53. Query OK, 0 rows affected (0.00 sec)  

另外,对于生产服务器,建议运行:

[sql] view plain copy
  1. [root@nn ~]# /usr/local/mysql/bin/mysql_secure_installation  


你可能感兴趣的:(MySQL)