Windows 2012安裝mysql 5.7.22 企業版

一、環境描述
操作系統:windows 2012
數據庫:mysql 5.7.12 企業版

二、操作步驟
1、規劃
MySQL安裝文件存放在D:\mysql,數據目錄爲E:mysqldata
2、配置文件位置爲d:\mysql\my.ini  內容如下:
[mysqld]  
port = 3306  
basedir= D:\mysql
datadir= E:\mysqldata
max_connections=500  
character-set-server=utf8  
default-storage-engine=INNODB  
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES  
[mysql]  
default-character-set=utf8

3、安裝服務
C:\Users\admin>d:
D:\>cd mysql\bin
D:\mysql\bin>.\mysqld -install 
4、初始化mysql
.\mysqld --initialize-insecure --user=mysql
5、啓動服務
D:\mysql\bin>net start mysql
MySQL 服務正在啓動 .
MySQL 服務已經啓動成功。
6、登陸數據庫
D:\mysql\bin>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.22 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>
7、修改密碼
use mysql;
update mysql.user set authentication_string=password('qwe12345') where user='root' and Host ='localhost';
flush privileges;
8、關閉服務
D:\mysql\bin>net stop mysql
MySQL 服務正在停止.
MySQL 服務已成功停止。
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章