我笔记本上开发用的 MariaDB 数据库配置 my.ini

发布于 2022-09-05 00:00:58 字数 2026 浏览 9 评论 0

这个文件是我笔记本上的MariaDB数据库的配置文件,基本上是安装时生成的,没做多大改动。

  1. # The following options will be passed to all MySQL clients
  2. [client]
  3. #password        = your_password
  4. port                = 3306
  5. socket                = /tmp/mysql.sock
  6. [mysql]
  7. default-character-set=utf8
  8. # Here follows entries for some specific programs
  9. # The MySQL server
  10. [mysqld]
  11. default-character-set=utf8
  12. basedir=D:\MariaDB
  13. # set datadir to the location of your data directory
  14. datadir=D:\MariaDB\data
  15. port                = 3306
  16. socket                = /tmp/mysql.sock
  17. skip-locking
  18. key_buffer_size = 256M
  19. max_allowed_packet = 1M
  20. table_open_cache = 256
  21. sort_buffer_size = 1M
  22. read_buffer_size = 1M
  23. read_rnd_buffer_size = 4M
  24. myisam_sort_buffer_size = 64M
  25. thread_cache_size = 8
  26. query_cache_size= 16M
  27. # Try number of CPU's*2 for thread_concurrency
  28. thread_concurrency = 8
  29. # Replication Master Server (default)
  30. # binary logging is required for replication
  31. log-bin=mysql-bin
  32. # binary logging format - mixed recommended
  33. binlog_format=mixed
  34. server-id        = 1
  35. [mysqldump]
  36. quick
  37. max_allowed_packet = 16M
  38. [mysql]
  39. no-auto-rehash
  40. # Remove the next comment character if you are not familiar with SQL
  41. #safe-updates
  42. [myisamchk]
  43. key_buffer_size = 128M
  44. sort_buffer_size = 128M
  45. read_buffer = 2M
  46. write_buffer = 2M
  47. [mysqlhotcopy]
  48. interactive-timeout

复制代码

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文