MySQL是一種常用的關系型數據庫管理系統,而my.ini則是MySQL用來配置參數的一個文件。MySQL 5.7.19版本對my.ini的配置進行了一些改變,下面將介紹一些常用參數的配置。
[mysqld] port=3306 max_connections=200 innodb_buffer_pool_size=128M character_set_server=utf8mb4 collation_server=utf8mb4_unicode_ci default_authentication_plugin=mysql_native_password
以上內容是my.ini中[mysqld]下的幾個常用參數的配置。其中,port用來設置MySQL服務的端口;max_connections用來設置最大連接數,默認為151;innodb_buffer_pool_size用來設置InnoDB存儲引擎使用的內存池大小,建議設置為機器內存的70%;character_set_server和collation_server用來設置字符集和排序方式;default_authentication_plugin用來設置默認的身份驗證方式,可選項為mysql_native_password和sha256_password。
[client] port=3306 default-character-set=utf8mb4
以上則是[client]下常用參數的配置。其中,port同樣用來設置MySQL服務的端口;default-character-set用來設置客戶端連接的默認字符集。
上一篇html5行間距代碼
下一篇js的css()