MySQL是一款流行的開源數據庫,被廣泛應用于各種開發項目。這里將介紹在Windows10系統上安裝MySQL8.0.19的方法。
1. 下載安裝包
在MySQL官網上下載最新版的MySQL8.0.19安裝包。選擇適合你系統的版本(Windows-x86-64bit 或Windows-x86-32bit),并下載安裝程序。
2. 安裝MySQL
雙擊安裝程序,打開MySQL 安裝向導。按照提示一步步安裝MySQL。安裝過程中需要設置root用戶的密碼。
3. 配置MySQL
打開MySQL安裝目錄的bin文件夾,在此目錄下新建my.ini文件。
在my.ini文件中加入以下內容:
# Path to installation directory. All paths are usually resolved relative to this.
basedir="C:/Program Files/MySQL/MySQL Server 8.0/"
# Path to the database root
datadir="C:/ProgramData/MySQL/MySQL Server 8.0/Data/"
# Set the default character set.
default-character-set=utf8mb4
# The default storage engine that will be used when create new tables.
default-storage-engine=INNODB
# Set the server id.
server-id=1
# Enable the log-bin
log-bin=mysql-bin
# Set the binary logging format to MIXED.
binlog_format=mixed
# To configure and set default options for the MySQL server.
sql_mode="STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION"
# Set the maximum allowed packet size to 256M(Maximum size of single file)
max_allowed_packet=256M
4. 啟動MySQL服務
打開Windows服務,找到MySQL80服務并啟動。啟動成功后,通過MySQL客戶端連接MySQL數據庫。
至此,在Windows10系統上安裝MySQL8.0.19的過程已完成。
上一篇mysql8.0.1.1
下一篇zoom+css3