mysql 5.7.11 winx64.zip安裝配置方法圖文教程
安裝和配置MySql數(shù)據(jù)庫(kù)系統(tǒng)。
1、下載
http://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.11-winx64.zip
2.解壓縮zip包
D:\Program Files\mysql-5.7.11-winx64
3.配置環(huán)境變量
3.1 添加path路徑,
D:\Program Files\mysql-5.7.11-winx64\bin
3.2.修改mysql-default.ini配置文件,
原
# These are commonly set, remove the # and set as required. # basedir = ..... # datadir = ..... # port = ..... # server_id = .....
改為
# These are commonly set, remove the # and set as required. basedir = D:\Program Files\mysql-5.7.11-winx64 datadir = D:\Program Files\mysql-5.7.11-winx64\Data port = 3306 # server_id = .....
4.以管理員身份進(jìn)入命令提示符 cmd
進(jìn)入mysql的bin目錄下,
Microsoft Windows [版本 6.3.9600] (c) 2013 Microsoft Corporation。保留所有權(quán)利。 C:\Users\Administrator>cd D: D:\ C:\Users\Administrator>cd D:\Program Files\mysql-5.7.11-winx64\bin C:\Users\Administrator>d: D:\Program Files\mysql-5.7.11-winx64\bin>
執(zhí)行mysqld.exe --initialize 命令,
D:\Program Files\mysql-5.7.11-winx64\bin>mysqld.exe --initialize D:\Program Files\mysql-5.7.11-winx64\bin>
創(chuàng)建了data目錄
5.執(zhí)行 mysqld -install命令
D:\Program Files\mysql-5.7.11-winx64\bin>mysqld -install Service successfully installed. //成功安裝服務(wù)
6.執(zhí)行mysqld.exe -nt --skip-grant-tables
注意:窗口無(wú)反應(yīng)
Microsoft Windows [版本 6.3.9600] (c) 2013 Microsoft Corporation。保留所有權(quán)利。 C:\Users\Administrator>cd D: D:\ C:\Users\Administrator>cd D:\Program Files\mysql-5.7.11-winx64\bin C:\Users\Administrator>d: D:\Program Files\mysql-5.7.11-winx64\bin>mysqld.exe --initialize D:\Program Files\mysql-5.7.11-winx64\bin>mysqld -install Service successfully installed. //服務(wù)安裝成功 D:\Program Files\mysql-5.7.11-winx64\bin>mysqld.exe -nt --skip-grant-tables
7.重新打開(kāi)dos窗口,執(zhí)行mysql -u root
進(jìn)入mysql命令行,執(zhí)行命令use mysql; update user set authtication_string=Password('123456') where user="root"; set password=Password('123456');
按 Ctrl+C 復(fù)制代碼
Microsoft Windows [版本 6.3.9600] (c) 2013 Microsoft Corporation。保留所有權(quán)利。 C:\Users\Administrator>mysqld.exe -nt --skip-grant-tables C:\Users\Administrator>mysql -u root Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.7.11 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('123456') where user="root" -> set password=Password('123456') ->
按 Ctrl+C 復(fù)制代碼
8.在任務(wù)管理器中終止mysqld進(jìn)程,開(kāi)啟mysql服務(wù)。
安裝完成。
精彩專(zhuān)題分享:mysql不同版本安裝教程 mysql5.7各版本安裝教程 mysql5.6各版本安裝教程
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
MYSQL數(shù)據(jù)庫(kù)中cmd命令操作詳解
今天我們就來(lái)看一下數(shù)據(jù)庫(kù)的各種命令,以下命令全部是從CMD命令窗口下的命令行輸入指令,首先如果如果輸入mysql,系統(tǒng)提示“mysql不是內(nèi)部命 令或外部命令2016-04-04Windows Server 2003 下配置 MySQL 集群(Cluster)教程
這篇文章主要介紹了Windows Server 2003 下配置 MySQL 集群(Cluster)教程,本文先是講解了原理知識(shí),然后給出詳細(xì)配置步驟和操作方法,需要的朋友可以參考下2015-06-06MySQL存儲(chǔ)過(guò)程中的基本函數(shù)和觸發(fā)器的相關(guān)學(xué)習(xí)教程
這篇文章主要介紹了MySQL存儲(chǔ)過(guò)程中的基本函數(shù)和觸發(fā)器的相關(guān)學(xué)習(xí)教程,包括觸發(fā)器的創(chuàng)建和刪除等基本操作,需要的朋友可以參考下2015-11-11mysql下mysql-udf-http效率測(cè)試小記
看到張宴的博客上關(guān)于"http/rest客戶(hù)端的文章",怎樣安裝啥的直接都跳過(guò),下面直接進(jìn)入測(cè)試階段。2011-08-08通過(guò)實(shí)例解析MySql CURRENT_TIMESTAMP函數(shù)
這篇文章主要介紹了通過(guò)實(shí)例解析MySql CURRENT_TIMESTAMP函數(shù),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-09-09Mysql 5.7從節(jié)點(diǎn)配置多線程主從復(fù)制的方法詳解
這篇文章主要介紹了Mysql 5.7從節(jié)點(diǎn)配置多線程主從復(fù)制的相關(guān)資料,文中介紹的非常詳細(xì),對(duì)大家具有一定的參考價(jià)值,需要的朋友們下面來(lái)一起看看吧。2017-03-03CentOS 7中MySQL連接數(shù)被限制為214個(gè)的解決方法
這篇文章主要給大家介紹了關(guān)于CentOS 7中MySQL連接數(shù)被限制為214個(gè)的解決方法,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面跟著小編來(lái)一起看看吧。2017-06-06MySQL Flink Watermark實(shí)現(xiàn)事件時(shí)間處理的關(guān)鍵技術(shù)
Flink Watermark是Flink流處理框架中實(shí)現(xiàn)事件時(shí)間處理的關(guān)鍵技術(shù)之一。它是通過(guò)一種機(jī)制來(lái)解決數(shù)據(jù)亂序和延遲的問(wèn)題,使得Flink可以在處理遲到的數(shù)據(jù)時(shí)保證結(jié)果的準(zhǔn)確性。Flink Watermark可以在數(shù)據(jù)流中插入一個(gè)時(shí)間戳,將數(shù)據(jù)流轉(zhuǎn)化為具有時(shí)間維度的數(shù)據(jù)集合2023-05-05