歡迎您光臨本站 註冊首頁

Win10下mysql 8.0.20 安裝配置方法教程

←手機掃碼閱讀     sl_ivan @ 2020-05-12 , reply:0

Win10系統下MySQL 8.0.20安裝和配置超詳細教程
MySQL下載
MySQL直接去官網下載就行,選擇community版本(免費)下載,鏈接。
在select operating system中選擇Microsoft Windows,下方對應出現最新版本的MySQL,目前是MySQL 8.0.20,有兩個zip文件,選擇第一個Windows (x86, 64-bit), ZIP Archive點擊右側的Download按鈕進行下載
官網下載有時速度比較慢,直接點擊鏈接也可以下載:mysql 8.0.20
安裝與配置
將下載好的壓縮包解壓縮到全英文目錄下,比如我在D盤新建了MySQL文件夾,解壓到該文件夾下,D:/MySQL
然後把mysql 8.0.20所在的路徑D:MySQLmysql-8.0.20-winx64添加到環境變量Path中
接下來正式安裝和配置MySQL:
(一)首先在D:MySQLmysql-8.0.20-winx64路徑下創建一個my.ini文件,直接新建文本文檔,然後重命名為my.ini即可。
在文檔中添加以下內容:
(注意修改basedir和datadir的路徑)
[mysqld] # 設置3306端口 port=3306 # 設置mysql的安裝目錄 basedir=D:\MySQL\mysql-8.0.20-winx64 # 此處為mysql的解壓縮路徑 # 設置mysql數據庫的數據的存放目錄 datadir=D:\MySQL\mysql-8.0.20-winx64\Data # 此處同上,先不要在路徑中創建Data目錄,後面初始化時會自動生成 # 允許最大連接數 max_connections=200 # 允許連接失敗的次數。這是為了防止有人從該主機試圖攻擊數據庫系統 max_connect_errors=10 # 服務端使用的字符集默認為UTF8 character-set-server=utf8 # 創建新表時將使用的默認存儲引擎 default-storage-engine=INNODB # 默認使用“mysql_native_password”插件認證 default_authentication_plugin=mysql_native_password [mysql] # 設置mysql客戶端默認字符集 default-character-set=utf8 [client] # 設置mysql客戶端連接服務端時默認使用的端口 port=3306 default-character-set=utf8
(二)以管理員權限打開cmd(注意要以管理員權限打開),並將路徑切換到D:MySQLmysql-8.0.20-winx64in
Microsoft Windows [Version 10.0.18363.815] (c) 2019 Microsoft Corporation。保留所有權利。 C:Windowssystem32>D: D:>cd MySQL D:MySQL>cd mysql-8.0.20-winx64 D:MySQLmysql-8.0.20-winx64>cd bin D:MySQLmysql-8.0.20-winx64in>
輸入mysqld --initialize --console,進行初始化。該步可以得到mysql的初始密碼,root@localhost後面那一串就是初始密碼,先記錄下來,待會要用到
D:MySQLmysql-8.0.20-winx64in>mysqld --initialize --console 2020-05-10T11:26:21.895908Z 0 [System] [MY-013169] [Server] D:MySQLmysql-8.0.20-winx64inmysqld.exe (mysqld 8.0.20) initializing of server in progress as process 9764 2020-05-10T11:26:21.897278Z 0 [Warning] [MY-013242] [Server] --character-set-server: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous. 2020-05-10T11:26:21.915225Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started. 2020-05-10T11:26:22.619057Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended. 2020-05-10T11:26:24.265774Z 6 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: 9Zh31zk-@mof
輸入mysqld --install(如果需要安裝多個mysql服務,這步輸入mysqld --install [服務名])
D:MySQLmysql-8.0.20-winx64in>mysqld --install Service successfully installed.
顯示Service successfully installed則說明安裝成功
輸入net start mysql,啟動MySQL服務
D:MySQLmysql-8.0.20-winx64in>net start mysql The MySQL service is starting. The MySQL service was started successfully.
輸入mysql -u root -p,使用初始密碼登錄mysql,在Enter password後輸入初始密碼
D:MySQLmysql-8.0.20-winx64in>mysql -u root -p Enter password: ************ Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 8 Server version: 8.0.20 Copyright (c) 2000, 2020, 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.
登錄後,把初始密碼修改掉,可以設置成自己容易記住的密碼。
輸入ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '自己定義的密碼'; (分號一定要帶)
mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '自己定義的密碼; Query OK, 0 rows affected (0.02 sec)
到這一步就完成了
輸入show database; ,可以查看包含哪些數據表
mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 4 rows in set (0.01 sec) 


[sl_ivan ] Win10下mysql 8.0.20 安裝配置方法教程已經有281次圍觀

http://coctec.com/docs/mysql/show-post-234088.html