mysql 5.7.11 winx64.zip安裝配置方法圖文教程
安裝和配置MySql數(shù)據(jù)庫系統(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.以管理員身份進入命令提示符 cmd
進入mysql的bin目錄下,
Microsoft Windows [版本 6.3.9600] (c) 2013 Microsoft Corporation。保留所有權利。 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. //成功安裝服務
6.執(zhí)行mysqld.exe -nt --skip-grant-tables
注意:窗口無反應
Microsoft Windows [版本 6.3.9600] (c) 2013 Microsoft Corporation。保留所有權利。 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. //服務安裝成功 D:\Program Files\mysql-5.7.11-winx64\bin>mysqld.exe -nt --skip-grant-tables
7.重新打開dos窗口,執(zhí)行mysql -u root
進入mysql命令行,執(zhí)行命令use mysql; update user set authtication_string=Password('123456') where user="root"; set password=Password('123456');
按 Ctrl+C 復制代碼
Microsoft Windows [版本 6.3.9600] (c) 2013 Microsoft Corporation。保留所有權利。 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 復制代碼
8.在任務管理器中終止mysqld進程,開啟mysql服務。
安裝完成。
精彩專題分享:mysql不同版本安裝教程 mysql5.7各版本安裝教程 mysql5.6各版本安裝教程
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
Windows Server 2003 下配置 MySQL 集群(Cluster)教程
這篇文章主要介紹了Windows Server 2003 下配置 MySQL 集群(Cluster)教程,本文先是講解了原理知識,然后給出詳細配置步驟和操作方法,需要的朋友可以參考下2015-06-06MySQL存儲過程中的基本函數(shù)和觸發(fā)器的相關學習教程
這篇文章主要介紹了MySQL存儲過程中的基本函數(shù)和觸發(fā)器的相關學習教程,包括觸發(fā)器的創(chuàng)建和刪除等基本操作,需要的朋友可以參考下2015-11-11通過實例解析MySql CURRENT_TIMESTAMP函數(shù)
這篇文章主要介紹了通過實例解析MySql CURRENT_TIMESTAMP函數(shù),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下2020-09-09Mysql 5.7從節(jié)點配置多線程主從復制的方法詳解
這篇文章主要介紹了Mysql 5.7從節(jié)點配置多線程主從復制的相關資料,文中介紹的非常詳細,對大家具有一定的參考價值,需要的朋友們下面來一起看看吧。2017-03-03CentOS 7中MySQL連接數(shù)被限制為214個的解決方法
這篇文章主要給大家介紹了關于CentOS 7中MySQL連接數(shù)被限制為214個的解決方法,文中通過示例代碼介紹的非常詳細,對大家具有一定的參考學習價值,需要的朋友們下面跟著小編來一起看看吧。2017-06-06MySQL Flink Watermark實現(xiàn)事件時間處理的關鍵技術
Flink Watermark是Flink流處理框架中實現(xiàn)事件時間處理的關鍵技術之一。它是通過一種機制來解決數(shù)據(jù)亂序和延遲的問題,使得Flink可以在處理遲到的數(shù)據(jù)時保證結果的準確性。Flink Watermark可以在數(shù)據(jù)流中插入一個時間戳,將數(shù)據(jù)流轉化為具有時間維度的數(shù)據(jù)集合2023-05-05