`
hai0378
  • 浏览: 515018 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Cent OS 6.5 安装源码 MYSQL

 
阅读更多

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

 

MySQL标准设置

1、    root帐户设置初始密码

# /usr/local/mysql/bin/mysqladmin -u root password 'new-password'

 

 

 

mysql> use mysql

mysql> UPDATE `user` SET `Host`='%' WHERE `User`='root' LIMIT 1;

mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'WITH GRANT OPTION;

 

mysql> FLUSH PRIVILEGES;

 

 

 

打开/etc/sysconfig/iptables

在“-A INPUT –m state --state NEW –m tcp –p –dport 22 –j ACCEPT”,下添加:

-A INPUT -m state --state NEW -m tcp -p -dport 3306 -j ACCEPT

然后保存,并关闭该文件,在终端内运行下面的命令,刷新防火墙配置:

service iptables restart
 

 

OK,一切配置完毕,你可以访问你的MySQL了~

 

------------让mysql不区分大小写------------------------

1、Linux下mysql安装完后是默认:区分表名的大小写,不区分列名的大小写;
2、用root帐号登录后,在/etc/my.cnf中的[mysqld]后添加添加lower_case_table_names=1,重启MYSQL服务,这时已设置成功:不区分表名的大小写;
lower_case_table_names参数详解:
lower_case_table_names=0
其中0:区分大小写,1:不区分大小写

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics