mysql 源码安装-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 65135
  • 博文数量: 4
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 94
  • 用 户 组: 普通用户
  • 注册时间: 2012-11-23 15:13
个人简介

小小dba一枚

文章分类

全部博文(4)

文章存档

2015年(4)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: mysql/postgresql

2015-03-06 06:07:24

  1. 编译安装前的准备工作

安装编译源码所需要的工具包

shell >> yum install gcc gcc-c ncurses-devel perl

安装编译工具cmake

shell >> wget

shell >> tar -zxvf cmake-2.8.10.2.tar.gz

shell >> cd cmake-2.8.10.2

shell >> ./bootstrap;make;make install

 

  1. 设置用户、用户组

创建mysql 用户、用户组

shell >> groupadd mysql

shell >> useradd -g mysql mysql

  1. 创建mysql  安装目录

shell >> mkdir /usr/local/mysql

  1. 下载mysql 源码包

 

  1. 编译安装

cmake \
-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

 

  1. 修改mysql 目录权限

chown -r mysql.mysql /opt/mysql/mysql56

  1. 修改mysql 配置文件

             根据自己需求修改配置文件

  1. 初始化数据库

./scripts/mysql_install_db --defaults-file=/etc/my.cnf

  1. 复制mysql 的启动脚本到/etc/init.d

cp support-files/mysql.server /etc/init.d/mysql

  1. 将mysql 的命令添加到path目录中

shell >> vim /etc/profile

添加 path=/usr/local/mysql/bin:$path

export path

shell >> source /etc/profile

  1. 启动mysql

shell >> mysqld_safe --defaults-file=/etc/my.cnf --start

  1. 制定mysql 开机启动规则

shell >> chkconfig list |grep mysql

shell >> chkconfig mysql off

  1. 检查mysql 是否启动

shell >> ps aux|grep mysql

  1. 修改mysql root用户密码

shell >> mysql -uroot

mysql >> set password = password(****);

阅读(2840) | 评论(0) | 转发(1) |
0

上一篇:没有了

下一篇:redis cluster 介绍与使用

给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图