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

MySQL数据库

开发平台:

Visual C++

  1. # Example MySQL config file for very large systems.
  2. #
  3. # This is for a large system with memory of 1G-2G where the system runs mainly
  4. # MySQL.
  5. #
  6. # You can copy this file to
  7. # /etc/my.cnf to set global options,
  8. # mysql-data-dir/my.cnf to set server-specific options (in this
  9. # installation this directory is /usr/local/var) or
  10. # ~/.my.cnf to set user-specific options.
  11. #
  12. # In this file, you can use all long options that a program supports.
  13. # If you want to know which options a program supports, run the program
  14. # with the "--help" option.
  15. # The following options will be passed to all MySQL clients
  16. [client]
  17. #password = your_password
  18. port = 3306
  19. socket = /tmp/mysql.sock
  20. # Here follows entries for some specific programs
  21. # The MySQL server
  22. [mysqld]
  23. port = 3306
  24. socket = /tmp/mysql.sock
  25. skip-locking
  26. key_buffer = 384M
  27. max_allowed_packet = 1M
  28. table_cache = 512
  29. sort_buffer_size = 2M
  30. read_buffer_size = 2M
  31. read_rnd_buffer_size = 8M
  32. myisam_sort_buffer_size = 64M
  33. thread_cache_size = 8
  34. query_cache_size = 32M
  35. # Try number of CPU's*2 for thread_concurrency
  36. thread_concurrency = 8
  37. # Don't listen on a TCP/IP port at all. This can be a security enhancement,
  38. # if all processes that need to connect to mysqld run on the same host.
  39. # All interaction with mysqld must be made via Unix sockets or named pipes.
  40. # Note that using this option without enabling named pipes on Windows
  41. # (via the "enable-named-pipe" option) will render mysqld useless!
  42. #skip-networking
  43. # Replication Master Server (default)
  44. # binary logging is required for replication
  45. log-bin
  46. # required unique id between 1 and 2^32 - 1
  47. # defaults to 1 if master-host is not set
  48. # but will not function as a master if omitted
  49. server-id = 1
  50. # Replication Slave (comment out master section to use this)
  51. #
  52. # To configure this host as a replication slave, you can choose between
  53. # two methods :
  54. #
  55. # 1) Use the CHANGE MASTER TO command (fully described in our manual) -
  56. #    the syntax is:
  57. #
  58. #    CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
  59. #    MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
  60. #
  61. #    where you replace <host>, <user>, <password> by quoted strings and
  62. #    <port> by the master's port number (3306 by default).
  63. #
  64. #    Example:
  65. #
  66. #    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
  67. #    MASTER_USER='joe', MASTER_PASSWORD='secret';
  68. #
  69. # OR
  70. #
  71. # 2) Set the variables below. However, in case you choose this method, then
  72. #    start replication for the first time (even unsuccessfully, for example
  73. #    if you mistyped the password in master-password and the slave fails to
  74. #    connect), the slave will create a master.info file, and any later
  75. #    change in this file to the variables' values below will be ignored and
  76. #    overridden by the content of the master.info file, unless you shutdown
  77. #    the slave server, delete master.info and restart the slaver server.
  78. #    For that reason, you may want to leave the lines below untouched
  79. #    (commented) and instead use CHANGE MASTER TO (see above)
  80. #
  81. # required unique id between 2 and 2^32 - 1
  82. # (and different from the master)
  83. # defaults to 2 if master-host is set
  84. # but will not function as a slave if omitted
  85. #server-id       = 2
  86. #
  87. # The replication master for this slave - required
  88. #master-host     =   <hostname>
  89. #
  90. # The username the slave will use for authentication when connecting
  91. # to the master - required
  92. #master-user     =   <username>
  93. #
  94. # The password the slave will authenticate with when connecting to
  95. # the master - required
  96. #master-password =   <password>
  97. #
  98. # The port the master is listening on.
  99. # optional - defaults to 3306
  100. #master-port     =  <port>
  101. #
  102. # binary logging - not required for slaves, but recommended
  103. #log-bin
  104. # Point the following paths to different dedicated disks
  105. #tmpdir = /tmp/
  106. #log-update  = /path-to-dedicated-directory/hostname
  107. # Uncomment the following if you are using BDB tables
  108. #bdb_cache_size = 384M
  109. #bdb_max_lock = 100000
  110. # Uncomment the following if you are using InnoDB tables
  111. #innodb_data_home_dir = /usr/local/var/
  112. #innodb_data_file_path = ibdata1:2000M;ibdata2:10M:autoextend
  113. #innodb_log_group_home_dir = /usr/local/var/
  114. #innodb_log_arch_dir = /usr/local/var/
  115. # You can set .._buffer_pool_size up to 50 - 80 %
  116. # of RAM but beware of setting memory usage too high
  117. #innodb_buffer_pool_size = 384M
  118. #innodb_additional_mem_pool_size = 20M
  119. # Set .._log_file_size to 25 % of buffer pool size
  120. #innodb_log_file_size = 100M
  121. #innodb_log_buffer_size = 8M
  122. #innodb_flush_log_at_trx_commit = 1
  123. #innodb_lock_wait_timeout = 50
  124. [mysqldump]
  125. quick
  126. max_allowed_packet = 16M
  127. [mysql]
  128. no-auto-rehash
  129. # Remove the next comment character if you are not familiar with SQL
  130. #safe-updates
  131. [isamchk]
  132. key_buffer = 256M
  133. sort_buffer_size = 256M
  134. read_buffer = 2M
  135. write_buffer = 2M
  136. [myisamchk]
  137. key_buffer = 256M
  138. sort_buffer_size = 256M
  139. read_buffer = 2M
  140. write_buffer = 2M
  141. [mysqlhotcopy]
  142. interactive-timeout