my-small.ini
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # Example MySQL config file for small systems.
  2. #
  3. # This is for a system with little memory (<= 64M) where MySQL is only used
  4. # from time to time and it's important that the mysqld daemon
  5. # doesn't use much resources.
  6. #
  7. # You can copy this file to
  8. # /etc/my.cnf to set global options,
  9. # mysql-data-dir/my.cnf to set server-specific options (in this
  10. # installation this directory is /usr/local/var) or
  11. # ~/.my.cnf to set user-specific options.
  12. #
  13. # In this file, you can use all long options that a program supports.
  14. # If you want to know which options a program supports, run the program
  15. # with the "--help" option.
  16. # The following options will be passed to all MySQL clients
  17. [client]
  18. #password = your_password
  19. port = 3306
  20. socket = /tmp/mysql.sock
  21. # Here follows entries for some specific programs
  22. # The MySQL server
  23. [mysqld]
  24. port = 3306
  25. socket = /tmp/mysql.sock
  26. skip-locking
  27. key_buffer = 16K
  28. max_allowed_packet = 1M
  29. table_cache = 4
  30. sort_buffer_size = 64K
  31. read_buffer_size = 256K
  32. read_rnd_buffer_size = 256K
  33. net_buffer_length = 2K
  34. thread_stack = 64K
  35. # Don't listen on a TCP/IP port at all. This can be a security enhancement,
  36. # if all processes that need to connect to mysqld run on the same host.
  37. # All interaction with mysqld must be made via Unix sockets or named pipes.
  38. # Note that using this option without enabling named pipes on Windows
  39. # (using the "enable-named-pipe" option) will render mysqld useless!
  40. #skip-networking
  41. server-id = 1
  42. # Uncomment the following if you want to log updates
  43. #log-bin
  44. # Uncomment the following if you are NOT using BDB tables
  45. #skip-bdb
  46. # Uncomment the following if you are using InnoDB tables
  47. #innodb_data_home_dir = /usr/local/var/
  48. #innodb_data_file_path = ibdata1:10M:autoextend
  49. #innodb_log_group_home_dir = /usr/local/var/
  50. #innodb_log_arch_dir = /usr/local/var/
  51. # You can set .._buffer_pool_size up to 50 - 80 %
  52. # of RAM but beware of setting memory usage too high
  53. #innodb_buffer_pool_size = 16M
  54. #innodb_additional_mem_pool_size = 2M
  55. # Set .._log_file_size to 25 % of buffer pool size
  56. #innodb_log_file_size = 5M
  57. #innodb_log_buffer_size = 8M
  58. #innodb_flush_log_at_trx_commit = 1
  59. #innodb_lock_wait_timeout = 50
  60. [mysqldump]
  61. quick
  62. max_allowed_packet = 16M
  63. [mysql]
  64. no-auto-rehash
  65. # Remove the next comment character if you are not familiar with SQL
  66. #safe-updates
  67. [isamchk]
  68. key_buffer = 8M
  69. sort_buffer_size = 8M
  70. [myisamchk]
  71. key_buffer = 8M
  72. sort_buffer_size = 8M
  73. [mysqlhotcopy]
  74. interactive-timeout