程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL essential版本和普通版本有什麼區別?

MySQL essential版本和普通版本有什麼區別?

編輯:MySQL綜合教程

MySQL 的官網下載地址:http://www.mysql.com/downloads/

在這個下載界面會有幾個版本的選擇。

1. MySQL Community Server 社區版本,開源免費,但不提供官方技術支持。
2. MySQL Enterprise Edition 企業版本,需付費,可以試用30天。
3. MySQL Cluster 集群版,開源免費。可將幾個MySQL Server封裝成一個Server。
4. MySQL Cluster CGE 高級集群版,需付費。
5. MySQL Workbench(GUI TOOL)一款專為MySQL設計的ER/數據庫建模工具。它是著名的數據庫設計工具DBDesigner4的繼任者。MySQL Workbench又分為兩個版本,分別是社區版(MySQL Workbench OSS)、商用版(MySQL Workbench SE)。

MySQL Community Server 是開源免費的,這也是我們通常用的MySQL的版本。根據不同的操作系統平台細分為多個版本,下面我們以windows平台為例來說明。

例如下載mysql 5.5.19的界面如下:

MySQL數據庫各個版本之間的區別

說明:
我們選擇Generally Available(GA)Release 去下載。GA 是指軟件的通用版本,一般指正式發布的版本。
mysql-5.5.19-win32.msi,windows安裝包,msi安裝包是用msiexec安裝完成的。windows下雙擊根據向導安裝即可,簡單方便。
mysql-5.5.19.zip,這個是windows源文件,需要編譯。
mysql-5.5.19-win32.zip,這個文件解包後即可使用,是編譯好的windows32位MySQL。需要手工配置。
帶 "winx64" 的則是對應的64位版本,在64位操作系統下使用。
一般做後台開發,我們就下載mysql-5.5.19-win32.msi。
 

例如下載mysql 5.1.60的界面如下:

MySQL數據庫各個版本之間的區別

說明:

選擇Generally Available(GA)Release 去下載。GA 是指軟件的通用版本,一般指正式發布的版本。
“essentials” 是指精簡版,不包含 embedded server and benchmark suite,有自動安裝程序和配置向導,沒有MySQL文檔。
“noinstall” 是指非安裝的壓縮包的。包含 embedded server and benchmark suite,沒有自動安裝程序和配置向導,需手動安裝配置,有MySQL文檔。
mysql-essential-5.1.60-win32.msi 是精簡版,如果只需要mysql服務,就選擇此版本。
mysql-5.1.60-win32.msi 是完整版,包含安裝程序和配置向導,有MySQL文檔。
mysql-noinstall-5.1.60-win32.zip 是非安裝的zip壓縮包,沒有自動安裝程序和配置向導,需手動安裝配置,有MySQL文檔。
mysql-5.1.60.zip 是用於windows的Mysql源碼壓縮包
帶 "winx64" 的則是對應的64位版本,在64位操作系統下使用。
一般做後台開發,我們就下載mysql-essential-5.1.60-win32.msi 即可。

【作者】:

The Essentials Package:
不包含 embedded server and benchmark suite,有自動安裝程序和配置向導,沒有MySQL Documentation。

The Complete Package:
包含 embedded server and benchmark suite,有自動安裝程序和配置向導,有MySQL Documentation。

The Noinstall Archive:
包含 embedded server and benchmark suite,沒有自動安裝程序和配置向導,有MySQL Documentation。

一般情況下我們會使用帶有有自動安裝程序和配置向導的安裝版本,方便配置mysql,當然高手也可以不用,手工配置即可。

參考:

For MySQL 5.0, there are three installation packages to choose from when installing MySQL on Windows:

The Essentials Package: This package has a filename similar to mysql-essential-5.0.40-win32.msi and contains the minimum set of files needed to install MySQL on Windows, including the Configuration Wizard. This package does not include optional components such as the embedded server and benchmark suite.

The Complete Package: This package has a filename similar to mysql-5.0.40-win32.zip and contains all files needed for a complete Windows installation, including the Configuration Wizard. This package includes optional components such as the embedded server and benchmark suite.

The Noinstall Archive: This package has a filename similar to mysql-noinstall-5.0.40-win32.zip and contains all the files found in the Complete install package, with the exception of the Configuration Wizard. This package does not include an automated installer, and must be manually installed and configured.

The Essentials package is recommended for most users. It is provided as an .msi file for use with the Windows Installer. The Complete and Noinstall distributions are packaged as Zip archives. To use them, you must have a tool that can unpack .zip files.

Your choice of install package affects the installation process you must follow. If you choose to install either the Essentials or Complete install packages, see Section 2.4.8.2, “Installing MySQL with the Automated Installer”. If you choose to install MySQL from the Noinstall archive, see Section 2.4.8.5, “Installing MySQL from a Noinstall Zip Archive”.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved