DBMNG数据库管理与应用

才能是来自独创性。独创性是思维、观察、理解和判断的一种独特的方式。
当前位置:首页 > MySQL > 技术手册

CentOS6.3下MySQL5.6源码安装

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

本站文章内容,部分来自于互联网,若侵犯了您的权益,请致邮件chuanghui423#sohu.com(请将#换为@)联系,我们会尽快核实后删除。
Copyright © 2006-2023 DBMNG.COM All Rights Reserved. Powered by DEVSOARTECH            豫ICP备11002312号-2

豫公网安备 41010502002439号