当前位置: > Linux发行版 > Fedora >

fedora 20 源码编译安装 mysql-5.6.15

时间:2015-12-18 12:32来源:linux.it.net.cn 作者:IT

fedora 20 源码编译安装 mysql-5.6.15

我的是fedora 20, 64位的系统.安装的是mysql的最新版本, mysql-5.6.15.

http://dev.mysql.com/downloads/mysql/  这是mysql的官方下载地址, 需要一个注册账号.

 

这是官方的安装说明.

# Preconfiguration setup
shell> groupadd mysql
shell> useradd -r -g mysql mysql
# Beginning of source-build specific instructions
shell> tar zxvf mysql-VERSION.tar.gz
shell> cd mysql-VERSION
shell> cmake .
shell> make
shell> make install
# End of source-build specific instructions
# Postinstallation setup
shell> cd /usr/local/mysql
shell> chown -R mysql .
shell> chgrp -R mysql .
shell> scripts/mysql_install_db --user=mysql
shell> chown -R root .
shell> chown -R mysql data
shell> bin/mysqld_safe --user=mysql &
# Next command is optional
shell> cp support-files/mysql.server /etc/init.d/mysql.server

我就是按照这说明安装成功的.

1. 解压缩下载的源码包 mysql-5.6.15.tar.gz

tar zxvf mysql-5.6.15.tar.gz

2. 配置编译

设置编译优化参数

export CFLAGS="-O2 -mtune=native -march=native"

export CXXFLAGS="-O2 -mtune=native -march=native"

这是针对本机进行的优化,不保证可移植性, 如果想可移植打包供其他主机使用,不要添加这写选项.光用一个O2即可.

mysql 依赖 ncurses 库,没安装的需要安装一下,

yum install ncurses-devel

cd 进入到源码的解压目录开始配置

cmake .  \
-DCMAKE_INSTALL_PREFIX=/usr/local/mysql \                                   //安装目录
-DMYSQL_DATADIR=/usr/local/mysql/data \                                         //数据目录
-DSYSCONFDIR=/etc \                                                                              //配置文件 my.cnf 的目录
-DMYSQL_UNIX_ADDR=/var/lib/mysql/mysql.sock                            //mysql.sock 目录

更多参数可一去参考官方的文档说明: http://dev.mysql.com/doc/refman/5.6/en/source-configuration-options.html

完后没错误的就可以 make, sudo make install.

3.安装完需要设置一下才可启动

添加 mysql 组和 mysql 用户:

[like@bogon mysql]$sudo groupadd mysql

[like@bogon mysql]$sudo useradd -r -g mysql mysql

进入到mysql的安装目录 更改目录为mysql 所有,组也为mysql.

[like@bogon mysql]$ sudo chown -R mysql .
[like@bogon mysql]$ sudo chgrp -R mysql .

初始化数据

[like@bogon mysql]$ sudo scripts/mysql_install_db --user=mysql --datadir=/usr/local/mysql/data

 


 
  1. [like@bogon mysql]$  sudo scripts/mysql_install_db --user=mysql  
  2. Installing MySQL system tables...2014-01-19 20:11:12 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).  
  3. 2014-01-19 20:11:12 19967 [Note] InnoDB: The InnoDB memory heap is disabled  
  4. 2014-01-19 20:11:12 19967 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins  
  5. 2014-01-19 20:11:12 19967 [Note] InnoDB: Compressed tables use zlib 1.2.3  
  6. 2014-01-19 20:11:12 19967 [Note] InnoDB: Using Linux native AIO  
  7. 2014-01-19 20:11:12 19967 [Note] InnoDB: Using CPU crc32 instructions  
  8. 2014-01-19 20:11:12 19967 [Note] InnoDB: Initializing buffer pool, size = 128.0M  
  9. 2014-01-19 20:11:12 19967 [Note] InnoDB: Completed initialization of buffer pool  
  10. 2014-01-19 20:11:12 19967 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!  
  11. 2014-01-19 20:11:12 19967 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB  
  12. 2014-01-19 20:11:12 19967 [Note] InnoDB: Database physically writes the file full: wait...  
  13. 2014-01-19 20:11:12 19967 [Note] InnoDB: Setting log file ./ib_logfile101 size to 48 MB  
  14. 2014-01-19 20:11:12 19967 [Note] InnoDB: Setting log file ./ib_logfile1 size to 48 MB  
  15. 2014-01-19 20:11:13 19967 [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0  
  16. 2014-01-19 20:11:13 19967 [Warning] InnoDB: New log files created, LSN=45781  
  17. 2014-01-19 20:11:13 19967 [Note] InnoDB: Doublewrite buffer not found: creating new  
  18. 2014-01-19 20:11:13 19967 [Note] InnoDB: Doublewrite buffer created  
  19. 2014-01-19 20:11:13 19967 [Note] InnoDB: 128 rollback segment(s) are active.  
  20. 2014-01-19 20:11:13 19967 [Warning] InnoDB: Creating foreign key constraint system tables.  
  21. 2014-01-19 20:11:13 19967 [Note] InnoDB: Foreign key constraint system tables created  
  22. 2014-01-19 20:11:13 19967 [Note] InnoDB: Creating tablespace and datafile system tables.  
  23. 2014-01-19 20:11:13 19967 [Note] InnoDB: Tablespace and datafile system tables created.  
  24. 2014-01-19 20:11:13 19967 [Note] InnoDB: Waiting for purge to start  
  25. 2014-01-19 20:11:13 19967 [Note] InnoDB: 5.6.15 started; log sequence number 0  
  26. 2014-01-19 20:11:16 19967 [Note] Binlog end  
  27. 2014-01-19 20:11:16 19967 [Note] InnoDB: FTS optimize thread exiting.  
  28. 2014-01-19 20:11:16 19967 [Note] InnoDB: Starting shutdown...  
  29. 2014-01-19 20:11:17 19967 [Note] InnoDB: Shutdown completed; log sequence number 1625977  
  30. OK  
  31.   
  32. Filling help tables...2014-01-19 20:11:17 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).  
  33. 2014-01-19 20:11:17 19990 [Note] InnoDB: The InnoDB memory heap is disabled  
  34. 2014-01-19 20:11:17 19990 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins  
  35. 2014-01-19 20:11:17 19990 [Note] InnoDB: Compressed tables use zlib 1.2.3  
  36. 2014-01-19 20:11:17 19990 [Note] InnoDB: Using Linux native AIO  
  37. 2014-01-19 20:11:17 19990 [Note] InnoDB: Using CPU crc32 instructions  
  38. 2014-01-19 20:11:17 19990 [Note] InnoDB: Initializing buffer pool, size = 128.0M  
  39. 2014-01-19 20:11:17 19990 [Note] InnoDB: Completed initialization of buffer pool  
  40. 2014-01-19 20:11:17 19990 [Note] InnoDB: Highest supported file format is Barracuda.  
  41. 2014-01-19 20:11:17 19990 [Note] InnoDB: 128 rollback segment(s) are active.  
  42. 2014-01-19 20:11:17 19990 [Note] InnoDB: Waiting for purge to start  
  43. 2014-01-19 20:11:18 19990 [Note] InnoDB: 5.6.15 started; log sequence number 1625977  
  44. 2014-01-19 20:11:18 19990 [Note] Binlog end  
  45. 2014-01-19 20:11:18 19990 [Note] InnoDB: FTS optimize thread exiting.  
  46. 2014-01-19 20:11:18 19990 [Note] InnoDB: Starting shutdown...  
  47. 2014-01-19 20:11:19 19990 [Note] InnoDB: Shutdown completed; log sequence number 1625987  
  48. OK  
  49.   
  50. To start mysqld at boot time you have to copy  
  51. support-files/mysql.server to the right place for your system  
  52.   
  53. PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !  
  54. To do so, start the server, then issue the following commands:  
  55.   
  56.   ./bin/mysqladmin -u root password 'new-password'  
  57.   ./bin/mysqladmin -u root -h bogon password 'new-password'  
  58.   
  59. Alternatively you can run:  
  60.   
  61.   ./bin/mysql_secure_installation  
  62.   
  63. which will also give you the option of removing the test  
  64. databases and anonymous user created by default.  This is  
  65. strongly recommended for production servers.  
  66.   
  67. See the manual for more instructions.  
  68.   
  69. You can start the MySQL daemon with:  
  70.   
  71.   cd . ; ./bin/mysqld_safe &  
  72.   
  73. You can test the MySQL daemon with mysql-test-run.pl  
  74.   
  75.   cd mysql-test ; perl mysql-test-run.pl  
  76.   
  77. Please report any problems with the ./bin/mysqlbug script!  
  78.   
  79. The latest information about MySQL is available on the web at  
  80.   
  81.   http://www.mysql.com  
  82.   
  83. Support MySQL by buying support/licenses at http://shop.mysql.com  
  84.   
  85. New default config file was created as ./my.cnf and  
  86. will be used by default by the server when you start it.  
  87. You may edit this file to change server settings  

 

更改数据文件夹所有者和组为mysql

[like@bogon mysql]$ sudo chown -R root .
[like@bogon mysql]$ sudo chown -R mysql data

然后就可以启动mysql数据库了.

sudo support-files/mysql.server start

成功启动如下所示:

 

 
  1. [kuaile@localhost mysql]$ sudo support-files/mysql.server start  
  2. Starting MySQL.                                            [  确定  ]  

 

把 mysql.server 复制到系统相应的目录即可开机自动启动mysql.

cp support-files/mysql.server /etc/init.d/mysql.server

4. 安装完成后mysql数据库的root用户是没密码的,需要自己设置密码.

  ./bin/mysqladmin -u root password 'new-password'                                     //用于本机执行

  ./bin/mysqladmin -u root -h bogon password 'new-password'                   //非本机

 

这俩个成功一个即可.

new-password 就是新密码.

然后就可以用这个新密码连接mysql数据库了

 

mysql 自带安全设置.

运行这个命令

sudo ./bin/mysql_secure_installation

根据提示回答 yes or no 完成安全设置

 


 
  1.  sudo ./bin/mysql_secure_installation  
  2.   
  3.   
  4.   
  5. NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL  
  6.       SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!  
  7.   
  8. In order to log into MySQL to secure it, we'll need the current  
  9. password for the root user.  If you've just installed MySQL, and  
  10. you haven't set the root password yet, the password will be blank,  
  11. so you should just press enter here.  
  12.   
  13. Enter current password for root (enter for none):   
  14. OK, successfully used password, moving on...  
  15.   
  16. Setting the root password ensures that nobody can log into the MySQL  
  17. root user without the proper authorisation.  
  18.   
  19. You already have a root password set, so you can safely answer 'n'.  
  20.   
  21. Change the root password? [Y/n] n  
  22.  ... skipping.  
  23.   
  24. By default, a MySQL installation has an anonymous user, allowing anyone  
  25. to log into MySQL without having to have a user account created for  
  26. them.  This is intended only for testing, and to make the installation  
  27. go a bit smoother.  You should remove them before moving into a  
  28. production environment.  
  29.   
  30. Remove anonymous users? [Y/n] n  
  31.  ... skipping.  
  32.   
  33. Normally, root should only be allowed to connect from 'localhost'.  This  
  34. ensures that someone cannot guess at the root password from the network.  
  35.   
  36. Disallow root login remotely? [Y/n] y  
  37.  ... Success!  
  38.   
  39. By default, MySQL comes with a database named 'test' that anyone can  
  40. access.  This is also intended only for testing, and should be removed  
  41. before moving into a production environment.  
  42.   
  43. Remove test database and access to it? [Y/n] y  
  44.  - Dropping test database...  
  45.  ... Success!  
  46.  - Removing privileges on test database...  
  47.  ... Success!  
  48.   
  49. Reloading the privilege tables will ensure that all changes made so far  
  50. will take effect immediately.  
  51.   
  52. Reload privilege tables now? [Y/n] y  
  53.  ... Success!  
  54.   
  55.   
  56.   
  57.   
  58. All done!  If you've completed all of the above steps, your MySQL  
  59. installation should now be secure.  
  60.   
  61. Thanks for using MySQL!  
  62.   
  63.   
  64. Cleaning up...  
  65.  

(责任编辑:IT)
------分隔线----------------------------