mysql 5.7.17 winx64.zip安裝配置方法圖文教程
前言:重裝win10順帶整理文件,然而裝個(gè)MySQL用了我一下午,真是不值,所以寫(xiě)這篇來(lái)幫助大家。
參考鏈接:mysql 5.7.11 winx64.zip安裝配置方法圖文教程;
里面有些步驟在我這弄完,一直是錯(cuò)的,我會(huì)適當(dāng)點(diǎn)出,希望對(duì)你有幫助。
一、下載
https://dev.mysql.com/downloads/mysql/
二、解壓縮zip包
三、配置環(huán)境變量
(1)配置Path
(2)修改mysql-default.ini配置文件原先的:
# These are commonly set, remove the # and set as required. # basedir = ..... # datadir = ..... # port = ..... # server_id = .....
修改后的:
四、以管理員身份進(jìn)入命令提示符 cmd
注意:先mysqld -install,再mysqld –initialize
(1)執(zhí)行mysqld -install
C:\Users\donald>cd D:\tools\developer\MySQL\mysql-5.7.17-winx64\bin C:\Users\donald>d: D:\tools\developer\MySQL\mysql-5.7.17-winx64\bin>mysqld -install Service successfully installed. //成功安裝服務(wù)
(2)執(zhí)行mysqld –initialize
D:\tools\developer\MySQL\mysql-5.7.17-winx64\bin>mysqld --initialize D:\tools\developer\MySQL\mysql-5.7.17-winx64\bin>
會(huì)自動(dòng)創(chuàng)建data文件夾
(3)mysqld.exe -nt –skip-grant-tables(注意:窗口無(wú)反應(yīng))
D:\tools\developer\MySQL\mysql-5.7.17-winx64\bin>mysqld.exe -nt --skip-grant-tables
(4)直接關(guān)閉窗口,再重新打開(kāi)dos(同樣管理員身份方式打開(kāi))
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"; //這時(shí)候會(huì)提示修改成功等,或者waring 什么的。 mysql>flush privileges; 0 rows affected (0.01 sec)
五、校驗(yàn)成功
(1)在任務(wù)管理器中終止mysqld進(jìn)程,開(kāi)啟mysql服務(wù)
C:\Users\donald>net start mysql
若出現(xiàn):
打開(kāi)任務(wù)管理器,找到mysqld,結(jié)束該進(jìn)程。然后重新啟動(dòng)mysql,就可以了。
(2)輸入mysql -u root -p
C:\Users\donald>mysql -u root -p //輸入admin
精彩專(zhuān)題分享:mysql不同版本安裝教程 mysql5.7各版本安裝教程 mysql5.6各版本安裝教程
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
MySQL 4G內(nèi)存服務(wù)器配置優(yōu)化
MySQL對(duì)于web架構(gòu)性能的影響最大,也是關(guān)鍵的核心部分。下面我們了解一下MySQL優(yōu)化的一些基礎(chǔ),MySQL自身(my.cnf)的優(yōu)化2017-07-07mysql數(shù)據(jù)庫(kù) 主從復(fù)制的配置方法
本文主要介紹 mysql數(shù)據(jù)庫(kù) 主從負(fù)責(zé)的配置方法,在做數(shù)據(jù)庫(kù)開(kāi)發(fā)的時(shí)候有時(shí)候會(huì)遇到,這里做出詳細(xì)流程,大家可以參考下2016-07-07MySQL查詢(xún)重復(fù)數(shù)據(jù)(刪除重復(fù)數(shù)據(jù)保留id最小的一條為唯一數(shù)據(jù))
查重是我們?cè)诠ぷ髦薪?jīng)常會(huì)遇到的一個(gè)需求,下面這篇文章主要給大家介紹了關(guān)于MySQL查詢(xún)重復(fù)數(shù)據(jù)(刪除重復(fù)數(shù)據(jù)保留id最小的一條為唯一數(shù)據(jù))的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2019-03-03