mysql 5.7.16 winx64安裝配置方法圖文教程
針對之前安裝mysql的筆記進行了總結,分享給大家。
版本:MySQL-5.7.16-winx64
平臺:Windows 7 x64
1、進入mysql主目錄(建議將其移到C或D盤的根目錄,并改名為mysql)
2、配置path環(huán)境變量(如D:\JAVA\mysql)添加到環(huán)境變量中。
3、mysql主目錄下的my-default.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. [mysqld] # Remove leading # and set to the amount of RAM for the most important data # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%. # innodb_buffer_pool_size = 128M # Remove leading # to turn on a very important data integrity option: logging # changes to the binary log between backups. # log_bin # These are commonly set, remove the # and set as required. basedir = D:\JAVA\mysql datadir = D:\JAVA\mysql\data port = 3306 max_connections = 20 character-set-server = utf8 # Remove leading # to set options mainly useful for reporting servers. # The server defaults are faster for transactions and fast SELECTs. # Adjust sizes as needed, experiment to find the optimal values. # join_buffer_size = 128M # sort_buffer_size = 2M # read_rnd_buffer_size = 2M sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
如下圖所示:

上圖可見,mysql沒有data目錄,接下來我們需要初始化data目錄
cmd下進入bin目錄
4、運行:mysqld --initialize

5、安裝mysql mysqld install mysql --defaults-file="D:\JAVA\mysql\my.ini"
6、啟動mysql net start mysql

后記:
在初始化時如果加上 –initial-insecure,則會創(chuàng)建空密碼的 root@localhost 賬號,否則會創(chuàng)建帶密碼的 root@localhost 賬號
密碼保存在:data文件夾下的*.err文件中
:2016-11-25T04:05:29.713660Z 1 [Note] A temporary password is generated for root@localhost: /lSEqHkou0x%
精彩專題分享:mysql不同版本安裝教程 mysql5.7各版本安裝教程 mysql5.6各版本安裝教程
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
- mysql 5.7.16 安裝配置方法圖文教程
- MySQL(win7x64 5.7.16版本)下載、安裝、配置與使用的詳細圖文教程
- 64位 win10系統(tǒng)安裝綠色版mysql-5.7.16-winx64的教程
- mysql installer community 5.7.16安裝詳細教程
- Linux 使用rpm方式安裝最新mysql(5.7.16)步驟及常見問題解決方法
- mysql 5.7.16 zip包安裝配置方法圖文教程
- 詳解CentOS 6.5中安裝mysql 5.7.16 linux glibc2.5 x86 64(推薦)
- linux下mysql 5.7.16 免安裝版本圖文教程
- MySQL5.7.16綠色版安裝教程詳解
- mysql 5.7.16 ZIP包安裝配置教程
相關文章
MySQL中獲取最大值MAX()函數(shù)和ORDER BY … LIMIT 1比較
mysql取最大值的的是max 和order by兩種方式,同時也大多數(shù)人人為max的效率更高,在本文中,我們將介紹MySQL中MAX()和ORDER BY … LIMIT 1兩種獲取最大值的方法以及它們性能上的差異,同時我們將探討這種性能差異的原因,并提供一些優(yōu)化建議2024-03-03
MySQL出現(xiàn)Waiting for table metadata lock異常
當MySQL使用時出行Waiting for table metadata lock異常時該怎么辦呢?這篇文章就來和大家講講解決辦法,感興趣的小伙伴可以了解一下2023-04-04
Mysql 5.7.17 winx64在win7上的安裝教程
本文給大家介紹Mysql 5.7.17 winx64在win7上的安裝教程,非常不錯,具有參考借鑒價值,需要的朋友參考下吧2017-04-04
Java連接mysql數(shù)據(jù)庫并進行內容查詢的方法
下面小編就為大家?guī)硪黄狫ava連接mysql數(shù)據(jù)庫并進行內容查詢的方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2016-10-10

