zoukankan      html  css  js  c++  java
  • CentOS 6.3下MySQL 5.6源码安装

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

    AD:2013云计算架构师峰会课程资料下载

    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账号
     http://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.15.tar.gz
    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

  • 相关阅读:
    Dbzoj#3188. [Coci 2011]Upit
    P1903 [国家集训队]数颜色 带修改莫队板子
    P2045 方格取数加强版
    P1402 酒店之王
    P4151 [WC2011]最大XOR和路径
    Orz YYB!
    Atcoder2167 Blackout
    P2939 [USACO09FEB]改造路Revamping Trails
    博弈论简单入门sb总结
    P3592 [POI2015]MYJ
  • 原文地址:https://www.cnblogs.com/cnsanshao/p/3476257.html
Copyright © 2011-2022 走看看