RHEL6.2编译安装MySQL 5.6.16过程分享

一、环境说明:

代码如下:

[root@beanvm ~]# cat /etc/redhat-release
Red Hat Enterprise Linux Server release 6.2 (Santiago)
[root@beanvm ~]# uname -a
Linux beanvm 2.6.32-220.el6.i686 #1 SMP Wed Nov 9 08:02:18 EST 2011 i686 i686 i386 GNU/Linux

二、准备工作与系统配置

1.下载安装包

这里下载的是较新的MySQL 5.6.16版本,更新迭代的太快了,文件为:mysql-5.6.16.tar.gz

下载地址:http://dev.mysql.com/downloads/mysql/

2. 安装编译必须的包

代码如下:

[root@beanvm ~]# rpm -ivh bison-devel-2.4.1-5.el6.i686.rpm
warning: bison-devel-2.4.1-5.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID c105b9de: NOKEY
Preparing...                ########################################### [100%]
   1:bison-devel            ########################################### [100%]
[root@beanvm ~]# rpm -ivh ncurses-devel-5.7-3.20090208.el6.i686.rpm
warning: ncurses-devel-5.7-3.20090208.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing...                ########################################### [100%]
   1:ncurses-devel          ########################################### [100%]

个人经验上面两个包是比较容易缺失,像gcc,make,cmake则是必备的了,也建议检查一下:

代码如下:

[root@beanvm ~]# rpm -qa |grep gcc-c++
gcc-c++-4.4.6-3.el6.i686
[root@beanvm ~]# rpm -qa |grep make
imake-1.0.2-11.el6.i686
automake-1.11.1-1.2.el6.noarch
cmake-2.6.4-5.el6.i686
make-3.81-19.el6.i686

3.创建MySQL用户和组

代码如下:

[root@beanvm ~]# groupadd mysql
[root@beanvm ~]# useradd -g mysql mysql
[root@beanvm ~]# passwd mysql

4.配置环境变量

代码如下:

[root@beanvm ~]# su – mysql

在.bash_profile文件中为PATH变量追加mysql路径:

代码如下:

export PATH=/sbin:$HOME/bin:/usr/local/mysql/bin:$PATH

三、安装MySQL

解压安装包:

代码如下:

[root@beanvm ~]# tar -xvf mysql-5.6.16.tar.gz
[root@beanvm ~]# cd mysql-5.6.16

编译脚本如下:

代码如下:

cmake \
# MySQL根目录
-DCMAKE_INSTALL_PREFIX=/usr/local/mysql \
# 数据文件目录
-DMYSQL_DATADIR=/usr/local/mysql/data \
-DSYSCONFDIR=/etc \
-DWITH_MYISAM_STORAGE_ENGINE=1 \
-DWITH_INNOBASE_STORAGE_ENGINE=1 \
-DWITH_MEMORY_STORAGE_ENGINE=1 \
-DWITH_READLINE=1 \
-DMYSQL_UNIX_ADDR=/var/lib/mysql/mysql.sock \
-DMYSQL_TCP_PORT=3306 \
-DENABLED_LOCAL_INFILE=1 \
-DWITH_PARTITION_STORAGE_ENGINE=1 \
-DEXTRA_CHARSETS=all \
-DDEFAULT_CHARSET=utf8 \
-DDEFAULT_COLLATION=utf8_general_ci

make && make install

基本上安装的选项还是一目了然的,更多的选项示意参见:

http://dev.mysql.com/doc/refman/5.6/en/source-configuration-options.html

编译时间是机器而定,我的有20多分钟的样子。

安装完成后要给根目录指定为mysql用户和组,也可以在这时候进行mysql用户和组的创建工作:

代码如下:

[root@beanvm ~]# chown -R mysql:mysql /usr/local/mysql

安装完成的MySQL根目录如下:

代码如下:

[root@beanvm ~]# ls -l /usr/local/mysql/
total 164
drwxr-xr-x.  2 mysql mysql  4096 Feb 15 14:40 bin
-rw-r--r--.  1 mysql mysql 17987 Jan 14 23:38 COPYING
drwxr-xr-x.  6 mysql mysql  4096 Feb 18 16:32 data
drwxr-xr-x.  2 mysql mysql  4096 Feb 15 14:39 docs
drwxr-xr-x.  3 mysql mysql  4096 Feb 15 14:39 include
-rw-r--r--.  1 mysql mysql 88109 Jan 14 23:38 INSTALL-BINARY
drwxr-xr-x.  3 mysql mysql  4096 Feb 15 14:39 lib
drwxr-xr-x.  4 mysql mysql  4096 Feb 15 14:40 man
-rw-r--r--.  1 mysql mysql   943 Feb 15 14:56 my.cnf
-rw-r--r--.  1 mysql mysql   943 Feb 18 16:26 my-new.cnf
drwxr-xr-x. 10 mysql mysql  4096 Feb 15 14:40 mysql-test
-rw-r--r--.  1 mysql mysql  2496 Jan 14 23:38 README
drwxr-xr-x.  2 mysql mysql  4096 Feb 15 14:40 scripts
drwxr-xr-x. 28 mysql mysql  4096 Feb 15 14:40 share
drwxr-xr-x.  4 mysql mysql  4096 Feb 15 14:40 sql-bench
drwxr-xr-x.  3 mysql mysql  4096 Feb 15 14:40 support-files

可以看到已经创建一个默认的配置文件my.cnf。

四、MySQL初始化

执行初始化脚本来创建数据库:

代码如下:

[root@beanvm ~]# cd /usr/local/mysql/scripts/
[root@beanvm scripts]# ./mysql_install_db --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data

创建MySQL服务并启动:

代码如下:

[root@beanvm ~]# cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql
[root@beanvm ~]# service mysql start
Starting MySQL.. SUCCESS!

接下来就是配置数据库了,在新版的MySQL安装过程中提供了一个脚本用于自动完成数据库使用前的配置工作,这个脚本位于/usr/local/mysql/bin/mysql_secure_installation,它会完成以下任务:

1.指定root用户密码(默认是没有密码的)
2.删除匿名用户
3.设置root用户的远程访问(对应的要在防火墙中开启3306端口)
4.是否删除测试数据库
5.重载权限表

这里建议使用这个脚本,执行过程如下:

代码如下:

[mysql@beanvm ~]$ /usr/local/mysql/bin/mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

In order to log into MySQL to secure it, we'll need the current
password for the root user.  If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.

You already have a root password set, so you can safely answer 'n'.

Change the root password? [Y/n] Y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
 ... Success!

By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] Y
 ... Success!

Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] n
 ... skipping.

By default, MySQL comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] n
 ... skipping.

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] Y
 ... Success!

All done!  If you've completed all of the above steps, your MySQL
installation should now be secure.

Thanks for using MySQL!

Cleaning up...

当然也可以手动完成这些操作:

代码如下:

[mysql@beanvm ~]$ mysqladmin -u root password 'new-password'
[mysql@beanvm ~]$ mysqladmin -u root -h beanvm password 'new-password'
[mysql@beanvm ~]$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 19
Server version: 5.6.16 Source distribution

Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> delete from mysql.user where user='';
Query OK, 2 rows affected (0.01 sec)

mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'mypasswd' WITH GRANT OPTION;
Query OK, 0 rows affected (0.01 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

(0)

相关推荐

  • Centos6.5 编译安装mysql 5.6.16 详细教程

    一.编译安装MySQL前的准备工作 安装编译源码所需的工具和库  yum install gcc gcc-c++ ncurses-devel perl 安装cmake,从http://www.cmake.org下载源码并编译安装 wget http://www.cmake.org/files/v2.8/cmake-2.8.10.2.tar.gz tar -xzvf cmake-2.8.10.2.tar.gz cd cmake-2.8.10.2 ./bootstrap ; make ; make

  • MySQL绿色版(zip解压版)的安装图文教程(mysql-5.6.22-win32.zip)

    1.数据库下载 Mysql官方网站:http://www.mysql.com/,数据库下载地址:http://www.mysql.com/downloads/.从官方网站可以找到两种文件包,一种是exe安装程序,另一种是zip压缩包.本人喜欢清爽的方式,所以下载的是ZIP压缩包.最新的5.6.22大概350M,下载还需要oracle帐号,自己注册一个好了. 2.数据库安装 解压出下载的文件mysql-5.6.22-win32.zip(有x86和x64两个版本)到任一目录,防止出现未知问题,最好放

  • Linux下安装mysql-5.6.4 的图文教程

    在开始安装前,先说明一下mysql-5.6.4与较低的版本在安装上的区别,从mysql-5.5起,mysql源码安装开始使用cmake了,因此当我们配置安装目录./configure --perfix=/.....的时候和以前的会有些区别,这点我们稍后会提到. 一:解压缩mysql-5.6.4-m7-tar.zip 1>  unzip mysql-5.6.4-m7-tar.zip   会生成mysql-5.6.4-m7-tar.gz的压缩文件 2> tar -zxvf mysql-5.6.4-

  • Windows版Mysql5.6.11的安装与配置教程

    注册了oracle的登录名:10402852@qq.com 密码:dsideal********  后面的*号是王卓常用的密码,但是是大写的,因为ORACLE的密码机制要求严格. WINDOWS版下载地址: 真实下载地址:http://cdn.mysql.com/Downloads/MySQLInstaller/mysql-installer-community-5.6.11.0.msi LINUX下载地址: 源码安装选择"Source Code"下拉菜单,在出来的列表里选最后一个&q

  • mysql 5.7.13 winx64安装配置方法图文教程

    针对之前安装mysql的笔记进行了总结,分享给大家. 1.下载 下载地址:http://dev.mysql.com/downloads/mysql/ 根据电脑配置来选,我选了 windows(x86,64-bit),ZIP Archive这个,点击Download,页面跳转到如下图 点击最下面的No thanks,just start my download,开始下载. 我的mysql安装路径是D:\Mysql\mysql-5.7.13-winx64 2.配置my.ini文件,新增data文件夹

  • 分享CentOS下MySQL最新版本5.6.13源码安装过程

    2个月前公司给DBA的测试服务器被收回去了,一直跟开发用一组DB,有些需要测试的小功能,需要不断重启db,为了不影响开发同事,自己又申请了一个虚拟机,准备安装最新的5.6.13版本的MySQL社区版. 1 download the tar.gzwget http://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.13.tar.gz/from/http://cdn.mysql.com/ 2 安装cmake软件包yum install cmake 3

  • win2008 R2 WEB环境配置之MYSQL 5.6.22安装版安装配置方法

    版本选择 因为MySql的版本越来越多,而作为中小网站者可能没有足够的经济去购买商业版本,所以一般选择免费版,而且功能也是足够使用的. 有钱任性就下载企业版,哈哈. 目前使用最多的版本是mysql installer community,属称社区版,也是免费版本. 下载MySql 1.去mysql官网下载,可以选择相应版本下载.推荐 2.通过搜索引挚搜索下载,找可信的资源站下载相应版本. 我这里选择的最新的社区版,mysql installer community-5.6.22.0,以下教程都是

  • mysql 5.6.17 绿色版(免安装)安装配置教程

    最近在做项目开发时用到了MySql数据库,在看了一些有关MySql的文章后,很快就上手使用了.在使用的过程中还是出现了一些问题,因为使用的是绿色免安装版的MySql所以在配置的时候出现了一些问题,该篇文章就主要针对MySql绿色版的配置及其使用进行讨论. 一.MySql概述        MySql数据库是有瑞典MySql AB公司开发,现在该公司被Oracle收购属于Oracle所有.同SQL Server类似,它也是基于关系型数据库的数据库管理系统,在Web应用方面MySQL是最好的RDBM

  • RHEL6.5编译安装MySQL5.6.26教程

    一.准备编译环境,安装所需依赖包 yum groupinstall 'Development' -y yum install openssl openssl-devel zlib zlib-devel -y yum install readline-devel pcre-devel ncurses-devel bison-devel cmake -y 二.编译安装 1.使用cmake编译,cmake编译方式不同于make,对比如下: make: ./configure  ./configure

  • MySQL 5.6.13 解压版(zip版)安装配置方法

    [下载MySQL 5.6.13] 从MySQL官方网站mysql.com找到MySQL Community Server 5.6.13的下载地址为http://dev.mysql.com/downloads/mysql/,在这里可以选择操作系统平台.洪哥选择的是Microsoft Windows平台.下面有三个可选的下载文件,第一个是MySQL Installer 5.6 for Windows,这将下载下来一个.msi可执行安装文件.另外有两个解压版(Zip版)分别是Windows (x86,

随机推荐