Home > Database > Mysql Tutorial > centos 6.4从源码安装mysql 5.6笔记_MySQL

centos 6.4从源码安装mysql 5.6笔记_MySQL

WBOY
Release: 2016-06-01 13:28:27
Original
870 people have browsed it

CentOS

bitsCN.com

上周在安装mysql时遇到了些许麻烦,今天整理下。

  1. 在代码目录建立obj文件夹。
  2. 在obj目录下,执行cmake .. -DXXX  // XXX表示一些参数,详见http://dev.mysql.com/doc/refman/5.6/en/source-configuration-options.html
  3. 生成makefile之后,执行make。
  4. 之后执行make install,期间可能报错,我遇到的情况就是安装目录没有权限,由于是在自己电脑上装的,直接sudo make install就安装上了,如果没有root权限,需要通过在cmake时添加参数改变mysql的安装目录。
  5. 至此,mysql服务器已经安装成功了。 需要按照文档上指明的步骤进行一些设置http://dev.mysql.com/doc/refman/5.6/en/postinstallation.html
  6. 安装完成后,配置时,如果一些子目录没有写入权限,则会设置失败。比如log和mysql.sock所在的目录,至于怎么修改这些目录,在上边的超链接中都有详细的说明。
bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template