1.從官網下載mysql-5.7.21-windowx64.zip mysql下載頁面
2.解壓到合適的位置(E:/mysql) 這名字是我改過的
3.配置環境變量,將E:/mysql/bin 添加到PATH中
4.在mysql目錄下(E:/mysql) 創建 my.ini文件,內容如下:
[mysql] # 設置mysql客戶端默認字符集 default-character-set=utf8 [mysqld] #設置3306端口 port = 3306 # 設置mysql的安裝目錄 basedir=E:/mysql# 設置mysql數據庫的數據的存放目錄 datadir=E:/mysql/data# 允許最大連接數 max_connections=200 # 服務端使用的字符集默認為8比特編碼的latin1字符集 character-set-server=utf8 # 創建新表時將使用的默認存儲引擎 default-storage-engine=INNODB "#"為注釋
5.管理員身份運行cmd
切換目錄 cd E:/mysql/bin
生成mysql服務(就是安裝my.ini文件)
E:/mysql/bin> mysqld -install;Service successfully installed.
生成data目錄 E:/mysql/bin> mysqld --initialize-insecure --user=mysql
;
這里生成失敗的話看下面
E:/mysql/bin>cd ../E:/mysql> mysqld --initialize-insecure --user=mysql ;
啟動mysql服務
E:/mysql/bin> net start mysql;
MySQL 服務正在啟動 .
MySQL 服務已經啟動成功。
6.登錄數據庫,修改密碼(默認為空)
E:/mysql/bin> mysql -u root -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> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 4 rows in set (0.00 sec)mysql> use mysql; Database changed mysql> set password for 'root'@'localhost'=password('新密碼');mysql> flush privileges;
退出測試是否成功
mysql> quit;E:/mysql/bin> mysql -u root -p;Enter password:
注釋:
在mysql中一條語句結束加;號
開始mysql服務net start mysql;
停止mysql服務net stop mysql;
生成服務mysqld -install;
刪除服務mysqld -remove;
登錄數據庫mysql -u root -p;
退出mysql> quit;
總結
以上所述是小編給大家介紹的window環境配置Mysql 5.7.21 windowx64.zip免安裝版教程詳解,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對VeVb武林網網站的支持!
新聞熱點
疑難解答