溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

windows如何安裝mysql

發(fā)布時間:2021-09-15 16:00:30 來源:億速云 閱讀:176 作者:小新 欄目:MySQL數(shù)據(jù)庫

小編給大家分享一下windows如何安裝mysql,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

1.首先在mysql官網(wǎng)下載最新版mysql, 附上鏈接點(diǎn)擊打開鏈接,根據(jù)你的系統(tǒng)型號選擇對應(yīng)的包下載,大約300多兆,版本號為5.7.19

下載完之后,解壓縮,是一個標(biāo)準(zhǔn)的mysql文件,如圖

windows如何安裝mysql

2.第二步,配置系統(tǒng)環(huán)境變量,桌面→我的電腦→右鍵"屬性"→高級系統(tǒng)設(shè)置→環(huán)境變量→系統(tǒng)變量→新建

變量名可以根據(jù)喜好隨便取,我這里叫做MYSQL_HOME,變量值是你剛剛下載的mysql文件夾所在的目錄,我們指向其中的bin目錄,然后一路確定返回

windows如何安裝mysql

3.我們的mysql文件中沒有默認(rèn)的配置文件,我們新建一個.ini的配置文件,名字為my-default.ini,里邊內(nèi)容如下:

# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html
# *** DO NOT EDIT THIS FILE. It's a template which will be copied to the
# *** default location during install, and will be replaced if you
# *** upgrade to a newer version of MySQL.
[mysqld]
# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# innodb_buffer_pool_size = 128M
# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin
# These are commonly set, remove the # and set as required.
# basedir = D:\mysql-server
# datadir = D:\mysql-server\data
# port = .....
# server_id = .....
#設(shè)置服務(wù)器字符集為utf8
character_set_server=utf8
collation-server=utf8_general_ci
#設(shè)置mysql的安裝目錄
basedir = D:\mysql-server
#設(shè)置mysql的數(shù)據(jù)文件存放目錄
datadir = D:\mysql-server\data
#設(shè)置mysql服務(wù)所綁定的端口
port = 3306
#設(shè)置mysql允許的最大連接數(shù)
max_connections=15
# Remove leading # to set options mainly useful for reporting servers.
# The server defaults are faster for transactions and fast SELECTs.
# Adjust sizes as needed, experiment to find the optimal values.
# join_buffer_size = 128M
# sort_buffer_size = 2M
# read_rnd_buffer_size = 2M 
[client]  
#設(shè)置客戶端字符集
default-character-set=utf8
[WinMySQLadmin]
Server = D:\mysql-server\bin\mysqld.exe
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES

注意里面的幾個路徑,一定要修改為你的mysql文件夾所在的路徑,由于我放的目錄是D:\mysql-server,所以上面的配置路徑都為這個

4.準(zhǔn)備安裝mysql,通過命令行工具安裝

首先以管理員身份啟動cmd             !!!注意!!!,一定要以管理員身份啟動,否則后面會報錯,提示權(quán)限不夠

命令如下:  mysqld -install  如果出現(xiàn)以下提示,說明安裝成功

windows如何安裝mysql

然后開始啟動服務(wù),命令: net start mysql

windows如何安裝mysql

這時候報錯了,提示無法啟動,3534 ,我們通過 mysqld --console命令來查看錯誤日志

windows如何安裝mysql

這里提示,mysql文件夾下沒有\(zhòng)data這個文件或者路徑,這時我們新建一個

我們用命令進(jìn)入到mysql文件夾的路徑,輸入以下命令:

  mysqld --initialize-insecure --user=mysql

執(zhí)行完上面命令后,MySQL會自建一個data文件夾,并且建好默認(rèn)數(shù)據(jù)庫,登錄的用戶名為root,密碼為空

這時我們再重新啟動mysql,發(fā)現(xiàn)就能正常啟動了

windows如何安裝mysql

以上是“windows如何安裝mysql”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI