安裝和配置MySql數(shù)據(jù)庫系統(tǒng)。
1、下載
2.解壓縮zip包
1
|
D:Program Filesmysql-5.7.11-winx64 |
3.配置環(huán)境變量
3.1 添加path路徑,
1
|
D:Program Filesmysql-5.7.11-winx64in |
3.2.修改mysql-default.ini配置文件,
原
1
2
3
4
5
|
# These are commonly set, remove the # and set as required. # basedir = ..... # datadir = ..... # port = ..... # server_id = ..... |
改為
1
2
3
4
5
|
# These are commonly set, remove the # and set as required. basedir = D:Program Filesmysql-5.7.11-winx64 datadir = D:Program Filesmysql-5.7.11-winx64Data port = 3306 # server_id = ..... |
4.以管理員身份進入命令提示符 cmd
進入mysql的bin目錄下,
1
2
3
4
5
6
7
8
9
10
11
|
Microsoft Windows [版本 6.3.9600] (c) 2013 Microsoft Corporation。保留所有權(quán)利。 C:UsersAdministrator> cd D: D: C:UsersAdministrator> cd D:Program Filesmysql-5.7.11-winx64in C:UsersAdministrator>d: D:Program Filesmysql-5.7.11-winx64in> |
執(zhí)行mysqld.exe --initialize 命令,
1
2
|
D:Program Filesmysql-5.7.11-winx64in>mysqld.exe --initialize D:Program Filesmysql-5.7.11-winx64in> |
創(chuàng)建了data目錄
5.執(zhí)行 mysqld -install命令
1
2
|
D:Program Filesmysql-5.7.11-winx64in>mysqld - install Service successfully installed. // 成功安裝服務(wù) |
6.執(zhí)行mysqld.exe -nt --skip-grant-tables
注意:窗口無反應(yīng)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Microsoft Windows [版本 6.3.9600] (c) 2013 Microsoft Corporation。保留所有權(quán)利。 C:UsersAdministrator> cd D: D: C:UsersAdministrator> cd D:Program Filesmysql-5.7.11-winx64in C:UsersAdministrator>d: D:Program Filesmysql-5.7.11-winx64in>mysqld.exe --initialize D:Program Filesmysql-5.7.11-winx64in>mysqld - install Service successfully installed. // 服務(wù)安裝成功 D:Program Filesmysql-5.7.11-winx64in>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 復(fù)制代碼
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Microsoft Windows [版本 6.3.9600] (c) 2013 Microsoft Corporation。保留所有權(quán)利。 C:UsersAdministrator>mysqld.exe -nt --skip-grant-tables C:UsersAdministrator>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進程,開啟mysql服務(wù)。
安裝完成。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持服務(wù)器之家。