CentOS 6.3下MySQL 5.6源码安装

数据库 MySQL
本文将为您介绍CentOS 6.3下如何安装MySQL 5.6.10,这一版本是Oracle时隔两年后发布的又一重大版本。

Linux操作系统:CentOS 6.3

1:下载:当前mysql版本到了5.6.10
 
下载地址:http://dev.mysql.com/downloads/mysql/5.6.html#downloads
 
选择“Source Code”
 
CentOS 6.3下MySQL 5.6源码安装

CentOS 6.3下MySQL 5.6源码安装

在此之前最好注册一个Oracle账号
 
2:必要软件包

  1. yum -y install  gcc gcc-c++ gcc-g77 autoconf automake zlib* fiex* libxml* ncurses-devel libmcrypt* libtool-ltdl-devel* make cmake 

3:编译安装

  1. [root@server182 ~]# groupadd mysql 
  2. [root@server182 ~]# useradd -r -g mysql mysql 
  3. [root@server182 ~]# tar -zxvf mysql-5.6.10.tar.gz 
  4. [root@server182 ~]# cd mysql-5.6.10 
  5. [root@server182 mysql-5.6.10]# cmake . 
  6. [root@server182 mysql-5.6.10]# make && make install 
  7. -------------------------默认情况下是安装在/usr/local/mysql 
  8. [root@server182 ~]# chown -R mysql.mysql /usr/local/mysql 
  9. [root@server182 ~]# cd /usr/local/mysql/scripts 
  10. [root@server182 ~]# ./mysql_install_db --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data 
  11. [root@server182 ~]# cd /usr/local/mysql/support-files 
  12. [root@server182 support-files]# cp mysql.server /etc/rc.d/init.d/mysql 
  13. [root@server182 support-files]# cp my-default.cnf /etc/my.cnf 
  14. [root@server182 ~]# chkconfig -add mysql 
  15. [root@server182 ~]# chkconfig mysql on 
  16. [root@server182 ~]# service mysql start 
  17. Starting MySQL SUCCESS!  
  18. [root@server182 support-files]# mysql 
  19. Welcome to the MySQL monitor.  Commands end with ; or \g. 
  20. Your MySQL connection id is 1 
  21. Server version: 5.6.10 Source distribution 
  22. Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. 
  23.   
  24. Oracle is a registered trademark of Oracle Corporation and/or its 
  25. affiliates. Other names may be trademarks of their respective 
  26. owners. 
  27. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. 
  28.  
  29. mysql>  
  30. mysql> status; 
  31. -------------- 
  32. mysql  Ver 14.14 Distrib 5.6.10, for Linux (i686) using  EditLine wrapper 
  33. Connection id:  1 
  34. Current database:  
  35. Current user:  root@localhost 
  36. SSL:    Not in use 
  37. Current pager:  stdout 
  38. Using outfile:  '' 
  39. Using delimiter:  ; 
  40. Server version:  5.6.10 Source distribution 
  41. Protocol version:  10 
  42. Connection:  Localhost via UNIX socket 
  43. Server characterset:  utf8 
  44. Db    characterset:  utf8 
  45. Client characterset:  utf8 
  46. Conn.  characterset:  utf8 
  47. UNIX socket:  /tmp/mysql.sock 
  48. Uptime:    5 min 45 sec 
  49.   
  50. Threads: 1  Questions: 5  Slow queries: 0  Opens: 70  Flush tables: 1  Open tables: 63  Queries per second avg: 0.014 
  51. ------------- 
  52. mysql>  

安装完毕。

原文链接:http://www.linuxidc.com/Linux/2013-02/79791.htm

 

责任编辑:彭凡 来源: ChinaUnix
相关推荐

2012-03-19 20:39:08

centosvirtualbox

2013-06-26 15:58:33

CentOS 5.6Memcached

2012-03-21 09:04:10

MySQL

2012-09-06 09:21:46

Centos5.6HeartbeatMySQL

2013-04-01 15:42:10

MySQL 5.6Windows

2012-03-18 22:33:15

centosxen

2011-05-05 09:32:59

CentOS 5.6KVM

2013-04-11 13:32:06

CentOS 6.3Nagios

2011-07-04 11:45:59

XenCentOS 5.6

2021-06-29 12:10:48

CentOSMySQL工具

2011-10-28 16:05:56

Node.js

2020-11-03 14:50:18

CentOSMySQL 8.0数去库

2011-09-09 16:22:21

centosHandlerSock

2011-03-02 09:52:03

2017-07-05 15:00:51

CentosLinuxMysql

2011-07-28 10:56:55

CentOS 5.6CentOS 6.0升级

2010-06-01 17:07:01

MySQL源码

2010-03-30 18:21:38

CentOS系统

2011-03-10 15:44:18

CentOSLAMP安装

2011-03-10 15:44:18

CentOSLAMP安装
点赞
收藏

51CTO技术栈公众号