从源码安装mysql

WBOY
WBOY원래의
2016-06-07 15:40:421260검색

首先参考iteye上的一篇博文: http://haiouc.iteye.com/blog/1779771 从这个台湾的源下载源码包比较快: http://ftp.nchu.edu.tw/Unix/Database/MySQL/Downloads/MySQL-5.1/ 其中编译前的配置命令: ./configure --prefix=/usr/local/mysql --with-charset=g

首先参考iteye上的一篇博文:

    http://haiouc.iteye.com/blog/1779771

从这个台湾的源下载源码包比较快:

    http://ftp.nchu.edu.tw/Unix/Database/MySQL/Downloads/MySQL-5.1/

其中编译前的配置命令:

    ./configure --prefix=/usr/local/mysql --with-charset=gbk --with-extral-charsets=all --enable-thread-safe-client

中的extra误打成了extral。


另外参考官方的资料:

    http://dev.mysql.com/doc/refman/5.1/zh/installing.html#linux-rpm

见第2.8.1节(源码安装概述)和2.8.2节(典型配置选项)


安装完之后开启mysql服务:

    systemctl  enable mysqld.service

    systemctl start mysqld.service

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.