標籤:character windows 登陸 企業版 啟動服務 upd 資料 com NPU
一、環境描述作業系統:windows 2012資料庫:mysql 5.7.12 企業版二、操作步驟1、規劃MySQL安裝檔案存放在D:\mysql,資料目錄為E:mysqldata2、設定檔位置為d:\mysql\my.ini 內容如下:[mysqld] port = 3306 basedir= D:\mysqldatadir= E:\mysqldatamax_connections=500 character-set-server=utf8 default-storage-engine=INNODB sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES [mysql] default-character-set=utf83、安裝服務C:\Users\admin>d:D:\>cd mysql\binD:\mysql\bin>.\mysqld -install 4、初始化mysql.\mysqld --initialize-insecure --user=mysql5、啟動服務D:\mysql\bin>net start mysqlMySQL 服務正在啟動 .MySQL 服務已經啟動成功。6、登陸資料庫D:\mysql\bin>mysql -uroot -pEnter password:Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 2Server 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 itsaffiliates. Other names may be trademarks of their respectiveowners.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 mysqlMySQL 服務正在停止.MySQL 服務已成功停止。
Windows 2012安裝mysql 5.7.22 企業版