這篇文章主要介紹了MySQL 5.7 zip版本(zip版)安裝設定步驟詳解,非常不錯,具有參考借鑒價值,需要的朋友可以參考下
前言:重裝win10順帶整理文件,然而裝個MySQL用了我一下午,真是不值,所以寫這篇來幫助大家。
一、下載
二、解壓縮zip套件
三、設定環境變數
(1)設定Path
#(2)修改mysql-default.ini設定檔
原先的:
# These are commonly set, remove the # and set as required.# basedir = .....# datadir = .....# port = .....# server_id = .....
修改後的:
#四、以管理員身分進入命令提示字元cmd
#注意:先mysqld -install,再mysqld –initialize
(1)執行mysqld -install
C:\Users\donald>cd D:\tools\developer\MySQL\mysql-5.7.17-winx64\binC:\Users\donald>d:D:\tools\developer\MySQL\mysql-5.7.17-winx64\bin> mysqld -installService successfully installed. //成功安装服务
#(2)執行mysqld –initialize
D:\tools\developer\MySQL\mysql-5.7.17-winx64\bin>mysqld --initializeD:\tools\developer\MySQL\mysql-5.7.17-winx64\bin>
會自動建立data資料夾
#
(3)mysqld.exe -nt –skip-grant-tables(注意:視窗無反應)
D:\tools\developer\MySQL\mysql-5.7.17-winx64\bin>mysqld.exe -nt --skip-grant-tables
(4)直接關閉窗口,再重新開啟dos(同樣管理員身份方式開啟)
C:\Users\donald>mysql -u root Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.7.17 MySQL Community Server (GPL) Copyright (c) 2000, 2016, 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> use mysql Database changed mysql> update user set authtication_string=Password('admin') where user="root"; //这时候会提示修改成功等,或者waring 什么的。 mysql>flush privileges; 0 rows affected (0.01 sec)
五、校驗成功
(1)在工作管理員中終止mysqld進程,開啟mysql服務
C:\Users\donald>net start mysql
#若出現:
開啟工作管理員,找到mysqld,結束該進程。
然後重新啟動mysql,就可以了。
(2)輸入mysql -u root -p
C:\Users\donald>mysql -u root -p//输入admin
以上是詳細介紹MySQL5.7 zip版本安裝設定圖文教學的詳細內容。更多資訊請關注PHP中文網其他相關文章!