1. 源代码包下载 

源代码包通常也採用tar.gz压缩。名称中仅仅包括版本号信息,大小也比RPM包、二进制包小非常多,解压后的文件里含有INSTALL-SOURCE文件。可从MySQL官网(http://www.mysql.com/downloads/)下载,如:mysql-5.5.17.tar.gz

2. CMake

在採用源代码包安装MySQL实例之前,先来介绍一下cmake这个编译工具。

在MySQL 5.5之前。是採用configure工具运行源代码编译的,到了MySQL 5.5,改用cmake进行编译。这是一个比make更高级的编译配置工具。可依据不同平台、不同编译器。生产对应的Makefile或者vcproj项目,所以须要首先从官网(http://www.cmake.org)下载cmake工具并安装之。

安装cmake之前安装gcc包

rpm -ivh kernel-headers-2.6.18-308.el5.x86_64.rpm

rpm -ivh glibc-headers-2.5-81.x86_64.rpm

rpm -ivh glibc-devel-2.5-81.x86_64.rpm

rpm -ivh gcc-4.1.2-52.el5.x86_64.rpm

rpm -ivh libstdc++-devel-4.1.2-52.el5.x86_64.rpm

rpm -ivh gcc-c++-4.1.2-52.el5.x86_64.rpm

安装cmake

/mysql/cmake-2.8.3

./configure

gmake && make install

 

 

3. 安装mysql 5.5.17

1. 创建mysql系统组及用户

 groupadd mysql

 useradd –g mysql mysql

 

2. 设置用户操作系统资源限制

 

vi /etc/security/limits.conf

        mysql    soft    nproc    2047

        mysql    hard    nproc    16384

        mysql    soft    nofile    1024

        mysql    hard    nofile    65536

安装须要包

# rpm -ivh ncurses-devel-5.5-24.20060715.x86_64.rpm

# rpm -ivh bison-2.3-2.1.x86_64.rpm

 

 

3. 安装MYSQL Server

#mkdir /opt/mysql

#chown -R mysql:mysql /opt/mysql

#gunzip mysql-5.5.17.tar.gz

#tar xvf mysql-5.5.17.tar

#cd mysql-5.5.17

        # cmake  -DCMAKE_INSTALL_PREFIX=/opt/mysql \

        > -DMYSQL_USER=mysql \

        > -DMYSQL_TCP_PORT=3306 \

        > -DMYSQL_DATADIR=/opt/mysql/data \

        > -DWITH_MYISAM_STORAGE_ENGINE=1 \

        > -DWITH_INNOBASE_STORAGE_ENGINE=1 \

        > -DWITH_ARCHIVE_STORAGE_ENGINE=1 \

        > -DWITH_MEMORY_STORAGE_ENGINE=1 \

        > -DWITH_BLACKHOLE_STORAGE_ENGINE=1 \

        > -DWITH_PARTITION_STORAGE_ENGINE=1 \

        > -DENABLED_LOCAL_INFILE=1 \

        > -DWITH_READLINE=1 \

        > -DWITH_SSL=yes \

        > -DDEFAULT_CHARSET=utf8 \

        > -DDEFAULT_COLLATION=utf8_general_ci \

        > -DEXTRA_CHARSETS=all

         

        #make

        #make install

         

        初始化DB

        # sh scripts/mysql_install_db --user=mysql --basedir=/opt/mysql --datadir=/opt/mysql/data

        Installing MySQL system tables...

        OK

        Filling help tables...

        OK

         

        To start mysqld at boot time you have to copy

        support-files/mysql.server to the right place for your system

         

        PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !

        To do so, start the server, then issue the following commands:

         

        /opt/mysql/bin/mysqladmin -u root password 'new-password'

        /opt/mysql/bin/mysqladmin -u root -h mysql password 'new-password'

         

        Alternatively you can run:

        /opt/mysql/bin/mysql_secure_installation

         

        which will also give you the option of removing the test

        databases and anonymous user created by default.  This is

        strongly recommended for production servers.

         

        See the manual for more instructions.

         

        You can start the MySQL daemon with:

        cd /opt/mysql ; /opt/mysql/bin/mysqld_safe &

         

        You can test the MySQL daemon with mysql-test-run.pl

        cd /opt/mysql/mysql-test ; perl mysql-test-run.pl

         

        Please report any problems with the /opt/mysql/scripts/mysqlbug script!

 

 

 

4. 启动Mysql Sever

配置service服务

# cp /opt/mysql/files/mysql.server  /etc/init.d/mysql   --配置basedir、datadir

配置mysql參数文件my.cnf

 

 

#vi /etc/my.cnf

[client]

#password       = your_password

port            = 3306

socket          = /opt/mysql/data/mysql.sock

 

[mysqld]

port            = 3306

server-id       = 24

datadir         = /opt/mysql/data

socket          = /opt/mysql/data/mysql.sock

pid-file        = /opt/mysql/data/mysql.pid

character-set-server   = utf8

default_storage_engine = InnoDB

log-bin          = /opt/mysql/data/mysql-bin

binlog_format    = row

sync-binlog      = 1

slow-query-log      = on

slow-query-log-file = /opt/mysql/data/mysql-slow.log

log_error        = /opt/mysql/data/mysql.err

max_connections         = 2000

back_log                = 50

skip-external-locking

skip-name-resolve

 

key_buffer_size         = 256M

max_allowed_packet      = 1M

table_open_cache        = 2000

sort_buffer_size        = 1M

read_buffer_size        = 1M

read_rnd_buffer_size    = 4M

myisam_sort_buffer_size = 64M

thread_cache_size       = 8

query_cache_size        = 16M

thread_concurrency      = 8

 

innodb_data_home_dir      = /opt/mysql/data

innodb_data_file_path     = ibdata1:10M:autoextend

innodb_log_group_home_dir = /opt/mysql/data

innodb_buffer_pool_size         = 256M

innodb_additional_mem_pool_size = 20M

innodb_log_file_size            = 64M

innodb_log_buffer_size          = 8M

innodb_flush_log_at_trx_commit  = 1

innodb_lock_wait_timeout        = 50

 

[mysqldump]

quick

max_allowed_packet = 16M

 

[mysql]

no-auto-rehash

#safe-updates

 

[myisamchk]

key_buffer_size = 128M

sort_buffer_size = 128M

read_buffer = 2M

write_buffer = 2M

 

[mysqlhotcopy]

interactive-timeout

 

"/etc/my.cnf" [New] 62L, 1531C written

[root@mysql support-files]# more /etc/my.cnf 

[client]

#password       = your_password

port            = 3306

socket          = /opt/data/mysql.sock

 

[mysqld]

port            = 3306 

server-id       = 24

datadir         = /opt/mysql/data

socket          = /opt/mysql/data/mysql.sock

pid-file        = /opt/mysql/data/mysql.pid

character-set-server   = utf8

default_storage_engine = InnoDB

log-bin          = /opt/mysql/data/mysql-bin

binlog_format    = row

sync-binlog      = 1 

slow-query-log      = on

slow-query-log-file = /opt/mysql/data/mysql-slow.log

log_error        = /opt/mysql/data/mysql.err

max_connections         = 2000

back_log                = 50

skip-external-locking

skip-name-resolve

 

key_buffer_size         = 256M

max_allowed_packet      = 1M

table_open_cache        = 2000

sort_buffer_size        = 1M

read_buffer_size        = 1M

read_rnd_buffer_size    = 4M

myisam_sort_buffer_size = 64M

thread_cache_size       = 8

query_cache_size        = 16M

thread_concurrency      = 8 

 

innodb_data_home_dir      = /opt/mysql/data

innodb_data_file_path     = ibdata1:10M:autoextend

innodb_log_group_home_dir = /opt/mysql/data

innodb_buffer_pool_size         = 256M

innodb_additional_mem_pool_size = 20M

innodb_log_file_size            = 64M

innodb_log_buffer_size          = 8M

innodb_flush_log_at_trx_commit  = 1

innodb_lock_wait_timeout        = 50

 

[mysqldump]

quick

max_allowed_packet = 16M

 

[mysql]

no-auto-rehash

#safe-updates

 

[myisamchk]

key_buffer_size = 128M

sort_buffer_size = 128M

read_buffer = 2M

write_buffer = 2M

 

[mysqlhotcopy]

interactive-timeout

 

 

# service mysql start

Starting MySQL....[  OK  ]

mysql5.5.17源代码安装的更多相关文章

  1. mysql-5.7.17.msi安装

    mysql-5.7.17.msi安装,跟着截图摩擦,一步一步是爪牙,是魔鬼的步伐 开始: 可以创建其他用户 我自己改了日志名

  2. mysql-5.6.17编译安装和常见问题

    mysql-5.6.17编译安装和常见问题 以前用的是MySQL的5.1版本,且使用的是免编译的包,安装简单.最近换了5.6版本的MySQL,安装过程出现了不少问题. 1. 卸载原来版本的MySQL ...

  3. 超详MySQL5.7.17压缩包安装图文教程

    靠吹风机暖手写完这篇教程...网络上关于MySQL 5.7.17的安装教程很少且不详细,所以总结了这样一篇文章,希望能帮到大家:(相较于Oracle的安装,MySQL还是简单得多) 1. 下载网址:h ...

  4. Mysql5.6.22源代码安装

    二:安装MySQL 安装编译代码需要的包 yum -y install make gcc-c++ cmake bison-devel ncurses-devel 下载MySQL 5.6.14 wget ...

  5. mysql5.7.17源码安装

    创建用户和目录 groupadd mysql useradd -r -g mysql mysql mkdir -p /data/mysql/standby/data mkdir -p /data/my ...

  6. centos编译安装php5.6.20+nginx1.8.1+mysql5.6.17

    LNMP 代表的就是:Linux系统下Nginx+MySQL+PHP这样的站点服务器架构. 本次实践需求: 实践centos6.5编译安装 LNMP生产环境 架构 web生产环境 使用 xcache ...

  7. linux下安装mysql5.7.17及简单配置

    原文:http://www.th7.cn/db/mysql/201612/218745.shtml 1.mysql5.7.17安装在/usr/local/mysql目录里面,也可以安装在其他地方 (安 ...

  8. centos6.7编译安装mysql5.7.17

    centos6.7编译安装mysql5.7.17 2017-03-24 09:57:15 提示:mysql5.7.17和之前5.56以前的版本安装不一样,需要用cmake 另外,看本文档的mysql编 ...

  9. Linux安装mysql-5.7.17

    一.检查系统是否有自带安装MySQL 1.检查 [root@centos ~]# rpm -qa | grep -i mysql mysql-libs-5.1.71-1.el6.x86_64 2.卸载 ...

随机推荐

  1. Excel.Application手册

    ----转载:http://blog.csdn.net/xxfigo/article/details/6618129 定制模块行为(1) Option Explicit '强制对模块内所有变量进行声明 ...

  2. Mac OS X 10.9 Mavericks 修改root密码

    Mac10.9忘记密码后有两种方式可以进去:  代码如下 复制代码 1.sudo passwd 重新输入密码即可,此方法修改了root的密码  代码如下 复制代码 2.sudo bash 输入当前用户 ...

  3. Android 巧妙实现图片和文字布局

    之前写过一个博客是关于实现图片和文字左右或者上下布局的方法, 下面是博客的主要内容: 布局文件很简单,用来展示RadioButton的使用方法. 1 <?xml version="1. ...

  4. UIView -> image & 本地时间获取

    //UIView 转换为图片 UIGraphicsBeginImageContext(self.rootsView.bounds.size); [_rootsView.layer renderInCo ...

  5. C#实现的异步Socket服务器

    介绍 我最近需要为一个.net项目准备一个内部线程通信机制. 项目有多个使用ASP.NET,Windows 表单和控制台应用程序的服务器和客户端构成. 考虑到实现的可能性,我下定决心要使用原生的soc ...

  6. uva 725 Division(除法)暴力法!

    uva 725  Division(除法) A - 暴力求解 Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & ...

  7. MVC中的过滤器

    authour: chenboyi updatetime: 2015-05-09 09:30:30 friendly link:   目录: 1,思维导图   2,过滤器种类(图示) 3,全局过滤器 ...

  8. SQL SERVER 数据库邮件配置

    1.简单了解数据库邮件的概念和使用的传输协议及系统体系: 数据库邮件是从 SQL Server 数据库引擎中发送电子邮件的企业解决方案.通过使用数据库邮件,数据库应用程序可以向用户发送电子邮件.邮件中 ...

  9. 初窥struts2(二)OGNL表达式

    Struts2总结 Struts2完整的处理流程: 1  客户端发送请求,交给struts2控制器(StrutsPrepareAndExecuteFilter). 2  Filter控制器进行请求过滤 ...

  10. 也谈 Python 的中文编码处理

    最近业务中需要用 Python 写一些脚本.尽管脚本的交互只是命令行 + 日志输出,但是为了让界面友好些,我还是决定用中文输出日志信息. 很快,我就遇到了异常: UnicodeEncodeError: ...