-
設定mysql的環境變數
本人設定安裝的路徑是:E:\WebApplication\webMySQL\mysql-5.7.13-winx64
我的電腦 ---> 高階系統配置 ---> 環境變數
2. 配置mysql配置檔案
用記事本開啟目錄下的my-default.ini檔案
注意:去掉前面的#號
3. 新建配置檔案my.ini
My.ini新建在E:\WebApplication\webMySQL\mysql-5.7.13-winx64目錄下
my.ini內容為:(裡面路徑修改為自己安裝包所在路徑)
****************** my.ini內容開始 **********************
# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.7/en/server-configuration-defaults.html
# *** DO NOT EDIT THIS FILE. It's a template which will be copied to the
# *** default location during install, and will be replaced if you
# *** upgrade to a newer version of MySQL.
[client]
default-character-set=utf8
[mysqld]
port=3306
basedir ="E:/WebApplication/webMySQL/mysql-5.7.13-winx64/"
datadir ="E:/WebApplication/webMySQL/mysql-5.7.13-winx64/data/"
tmpdir ="E:/WebApplication/webMySQL/mysql-5.7.13-winx64/data/"
socket ="E:/WebApplication/webMySQL/mysql-5.7.13-winx64/data/mysql.sock"
log-error="E:/WebApplication/webMySQL/mysql-5.7.13-winx64/data/mysql_error.log"
#server_id = 2
#skip-locking
max_connections=100
table_open_cache=256
query_cache_size=1M
tmp_table_size=32M
thread_cache_size=8
innodb_data_home_dir="E:/WebApplication/webMySQL/mysql-5.7.13-winx64/data/"
innodb_flush_log_at_trx_commit =1
innodb_log_buffer_size=128M
innodb_buffer_pool_size=128M
innodb_log_file_size=10M
innodb_thread_concurrency=16
innodb-autoextend-increment=1000
join_buffer_size = 128M
sort_buffer_size = 32M
read_rnd_buffer_size = 32M
max_allowed_packet = 32M
explicit_defaults_for_timestamp=true
sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
skip-grant-tables
#sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
****************** my.ini內容結束 ********************** |
4.開啟命令列視窗
開啟命令列視窗,並用管理員許可權執行(必須使用管理員許可權執行),將目錄切換到你的解壓檔案bin目錄下
4.1 初始化data資料,這一步很重要不然mysql不能啟動
輸入:mysqld –install
提示:Service successfully installed
4.2 啟動MySQL
輸入:mysqld –initialize
輸入:net start mysql
提示:MySql服務正在啟動
MySQL服務已經啟動成功
這時我們就可以看到我們的MySQL已經啟動
4.3 進入MySQL
因為我們剛初始化過mysql,mysql預設給我們一個初始密碼,但是我沒有設定儲存到哪裡,因此我們找不到這個密碼。我們剛才新建的my.ini這時就派上用場了,在檔案中,skip-grant-tables可以讓我們跳過驗證進入MySQL(注意:有時需要重啟mysql配置才會生效)
在命令列視窗中
輸入: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.13 MySQL Community Server (GPL)
……
進入mysql
輸入:update mysql.user set authentication_string=password('123456') where user='root' and Host = 'localhost';
(密碼password可自行修改)
提示:
這樣我們就可以用我們設定的密碼登入mysql
參考文章:http://www.jianshu.com/p/832f348064cd