1 MySQL 基础知识
瑞典 MySQL AB 公司开发,由 SUN 收购,而后 SUN 被甲骨文并购,目前属于 Oracle 公司。
MySQL 是一种关联数据库管理系统 由于其体积小、速度快、总体拥有成本低、MySQL 软件采用了双授权政策,
分为社区版和企业版。
1.1 MySQL 版本及下载
MySQL 数据库版本相对比较繁杂。常见的有:Community 社区版、Enterprise 企业版。
Community 版是开源免费的,这也是我们通常用的 MySQL 的版本。可以满足绝大多数用户需求。
Enterprise 版,官方指出提供 30 天免费试用期。可进一步划分为 MySQL 标准版、MySQL 企业版、MySQL 集
群版。官方提供付费服务。
其中 Community Server 可以直接从 mysql 的官网下载。但 Enterprice Edition 只能从 Oracle edelivery 上下载,
而 Edelivery 有时会屏蔽中国 IP。
MySQL 各版本区别参见:
http://www.admin10000.com/Document/62.html
下载 mysql 时注意区分版本细节及所应用的系统平台:linux(32/64) 、win(32/64)
举例:MySQL Community Server 5.6.20 win 版本
GA 是指软件的通用版本,一般指正式发布的版本 (Generally Available (GA) Release)
mysql-essential-5.1.60-win32.msi 精简版,如果只需要 mysql 服务,就选择此版本。
mysql-5.1.60-win32.msi 是完整版,包含安装程序和配置向导,有 MySQL 文档。
mysql-noinstall-5.1.60-win32.zip 是非安装的 zip 压缩包,没有自动安装程序和配置向导,无安装向导
mysql-5.1.60.zip 是用于 windows 的 Mysql 源码压缩包
linux 版本
在 http://www.mysql.com/downloads/网站上下载不了
在 www.oracle.com/downloads 找 mysql 注册用户, 选择操作系统平台和 mysql 版本 进行下载
官方文档上有关 MySQL 安装,介绍了 3 种类型及其对应安装方式来安装 MySQL 数据库:
Linux supports a number of different solutions for installing MySQL. The recommended method is to use one of the
distributions from Oracle. If you choose this method, there are three options available:
(1) Installing from a generic binary package in .tar.gz format. See Section 2.2, “ Installing MySQL from Generic
Binaries on Unix/Linux”for more information.
(2) Extracting and compiling MySQL from a source distribution. For detailed instructions, see Section 2.9,
“Installing MySQL from Source”.