MySQL 是一個由 Oracle 公司開發(fā)和維護(hù)的關(guān)系型數(shù)據(jù)庫管理系統(tǒng),擁有很多特性,并且易于使用。本文將介紹如何在 Windows 64 位系統(tǒng)上下載和安裝 MySQL。
首先,我們需要到 MySQL 的官方網(wǎng)站去下載相應(yīng)的安裝包:https://dev.mysql.com/downloads/mysql/
在下載頁面中,我們需要選擇要下載的 MySQL 版本和適用于 Windows 的操作系統(tǒng)版本。為了下載 64 位版本的 MySQL,我們需要在“Select Operating system”下拉菜單中選擇“Microsoft Windows”并在“Select OS Version”下拉菜單中選擇“Windows (x86, 64-bit), MSI Installer”。
<select name="os" title="Select Operating System">
<option value="2">Microsoft Windows</option>
...
</select>
<select name="osversion" title="Select OS Version">
<option value="10.0">Windows (x86, 64-bit), MSI Installer</option>
...
</select>
然后我們點(diǎn)擊下載按鈕,即可開始下載 MySQL 的安裝包。
下載完成后,我們需要運(yùn)行安裝程序,并根據(jù)提示進(jìn)行 MySQL 的安裝。安裝程序中會要求我們設(shè)置 MySQL 的 root 用戶的密碼,我們需要設(shè)置一個強(qiáng)密碼并進(jìn)行妥善保管。
安裝完成后,我們可以在命令行中驗(yàn)證 MySQL 是否能夠正常運(yùn)行。
C:\>mysql -u root -p
Enter password: ********
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 8.0.12 MySQL Community Server - GPL
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
如果我們能夠成功進(jìn)入 MySQL 的命令行,說明我們已經(jīng)成功地在 Windows 64 位系統(tǒng)上下載并安裝了 MySQL。