window環(huán)境安裝mysql5.7.21,具體內(nèi)容如下
1. 從MySQL官網(wǎng)下載免安裝的壓縮包mysql-5.7.21-winx64.zip
2. 解壓到相應(yīng)的目錄(此處解壓到F:\mysql-5.7.21-winx64)
3. 配置環(huán)境變量,將MySQL的啟動(dòng)目錄(F:\mysql-5.7.21-winx64\bin)添加到Path中
4. 在MySQL目錄下(F:\mysql-5.7.21-winx64)創(chuàng)建my.ini文件,內(nèi)容如下:
[mysql]
# 設(shè)置mysql客戶端默認(rèn)字符集
default-character-set=utf8
[mysqld]
#設(shè)置3306端口
port = 3306
# 設(shè)置mysql的安裝目錄
basedir=F:\mysql-5.7.21-winx64
# 設(shè)置mysql數(shù)據(jù)庫(kù)的數(shù)據(jù)的存放目錄
datadir=F:\mysql-5.7.21-winx64\data
# 允許最大連接數(shù)
max_connections=200
# 服務(wù)端使用的字符集默認(rèn)為8比特編碼的latin1字符集
character-set-server=utf8
# 創(chuàng)建新表時(shí)將使用的默認(rèn)存儲(chǔ)引擎
default-storage-engine=INNODB
5. 管理員身份運(yùn)行cmd
切換目錄:C:\Windows\system32>cd F:\mysql-5.7.21-winx64\bin
生成MySQL服務(wù):
F:\mysql-5.7.21-winx64\bin>mysqld -install
Service successfully installed.
生成data目錄:F:\mysql-5.7.21-winx64\bin>mysqld --initialize-insecure --user=mysql
啟動(dòng)MySQL服務(wù):
C:\Windows\system32>net start mysql
MySQL 服務(wù)正在啟動(dòng) .
MySQL 服務(wù)已經(jīng)啟動(dòng)成功。
6. 登錄數(shù)據(jù)庫(kù),修改密碼(默認(rèn)密碼為空)
登錄數(shù)據(jù)庫(kù):
C:\Windows\system32>mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.21 MySQL Community Server (GPL)
Copyright (c) 2000, 2018, 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>
修改密碼:
mysql>
mysql>
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
+--------------------+
4 rows in set (0.00 sec)
mysql> use mysql;
Database changed
mysql> update user set authentication_string=password("新密碼") where User="root";
Query OK, 1 row affected, 1 warning (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 1
mysql>
mysql>FLUSH PRIVILEGES;
精彩專題分享:mysql不同版本安裝教程 mysql5.7各版本安裝教程
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:- Windows系統(tǒng)下mysql5.7.21安裝詳細(xì)教程
- mysql 5.7.21 winx64安裝配置方法圖文教程
- MySQL5.7.21安裝與密碼圖文配置教程
- mysql 5.7.21 解壓版安裝配置方法圖文教程
- mysql installer web community 5.7.21.0.msi安裝圖文教程
- mysql 5.7.21 winx64免安裝版配置方法圖文教程
- mysql5.7.21安裝配置教程
- mysql 5.7.21解壓版安裝配置方法圖文教程(win10)
- mysql 5.7.20\5.7.21 免安裝版安裝配置教程
- mysql 5.7.21 解壓版安裝配置圖文教程