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

MySQL数据库

开发平台:

Visual C++

  1. # Example MySQL config file for medium systems.
  2. #
  3. # This is for a system with little memory (32M - 64M) where MySQL plays
  4. # an important part, or systems up to 128M where MySQL is used together with
  5. # other programs (such as a web server)
  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 = 16M
  28. max_allowed_packet = 1M
  29. table_cache = 64
  30. sort_buffer_size = 512K
  31. net_buffer_length = 8K
  32. read_buffer_size = 256K
  33. read_rnd_buffer_size = 512K
  34. myisam_sort_buffer_size = 8M
  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. # (via the "enable-named-pipe" option) will render mysqld useless!
  40. #skip-networking
  41. # Replication Master Server (default)
  42. # binary logging is required for replication
  43. log-bin
  44. # required unique id between 1 and 2^32 - 1
  45. # defaults to 1 if master-host is not set
  46. # but will not function as a master if omitted
  47. server-id = 1
  48. # Replication Slave (comment out master section to use this)
  49. #
  50. # To configure this host as a replication slave, you can choose between
  51. # two methods :
  52. #
  53. # 1) Use the CHANGE MASTER TO command (fully described in our manual) -
  54. #    the syntax is:
  55. #
  56. #    CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
  57. #    MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
  58. #
  59. #    where you replace <host>, <user>, <password> by quoted strings and
  60. #    <port> by the master's port number (3306 by default).
  61. #
  62. #    Example:
  63. #
  64. #    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
  65. #    MASTER_USER='joe', MASTER_PASSWORD='secret';
  66. #
  67. # OR
  68. #
  69. # 2) Set the variables below. However, in case you choose this method, then
  70. #    start replication for the first time (even unsuccessfully, for example
  71. #    if you mistyped the password in master-password and the slave fails to
  72. #    connect), the slave will create a master.info file, and any later
  73. #    change in this file to the variables' values below will be ignored and
  74. #    overridden by the content of the master.info file, unless you shutdown
  75. #    the slave server, delete master.info and restart the slaver server.
  76. #    For that reason, you may want to leave the lines below untouched
  77. #    (commented) and instead use CHANGE MASTER TO (see above)
  78. #
  79. # required unique id between 2 and 2^32 - 1
  80. # (and different from the master)
  81. # defaults to 2 if master-host is set
  82. # but will not function as a slave if omitted
  83. #server-id       = 2
  84. #
  85. # The replication master for this slave - required
  86. #master-host     =   <hostname>
  87. #
  88. # The username the slave will use for authentication when connecting
  89. # to the master - required
  90. #master-user     =   <username>
  91. #
  92. # The password the slave will authenticate with when connecting to
  93. # the master - required
  94. #master-password =   <password>
  95. #
  96. # The port the master is listening on.
  97. # optional - defaults to 3306
  98. #master-port     =  <port>
  99. #
  100. # binary logging - not required for slaves, but recommended
  101. #log-bin
  102. # Point the following paths to different dedicated disks
  103. #tmpdir = /tmp/
  104. #log-update  = /path-to-dedicated-directory/hostname
  105. # Uncomment the following if you are using BDB tables
  106. #bdb_cache_size = 4M
  107. #bdb_max_lock = 10000
  108. # Uncomment the following if you are using InnoDB tables
  109. #innodb_data_home_dir = /usr/local/var/
  110. #innodb_data_file_path = ibdata1:10M:autoextend
  111. #innodb_log_group_home_dir = /usr/local/var/
  112. #innodb_log_arch_dir = /usr/local/var/
  113. # You can set .._buffer_pool_size up to 50 - 80 %
  114. # of RAM but beware of setting memory usage too high
  115. #innodb_buffer_pool_size = 16M
  116. #innodb_additional_mem_pool_size = 2M
  117. # Set .._log_file_size to 25 % of buffer pool size
  118. #innodb_log_file_size = 5M
  119. #innodb_log_buffer_size = 8M
  120. #innodb_flush_log_at_trx_commit = 1
  121. #innodb_lock_wait_timeout = 50
  122. [mysqldump]
  123. quick
  124. max_allowed_packet = 16M
  125. [mysql]
  126. no-auto-rehash
  127. # Remove the next comment character if you are not familiar with SQL
  128. #safe-updates
  129. [isamchk]
  130. key_buffer = 20M
  131. sort_buffer_size = 20M
  132. read_buffer = 2M
  133. write_buffer = 2M
  134. [myisamchk]
  135. key_buffer = 20M
  136. sort_buffer_size = 20M
  137. read_buffer = 2M
  138. write_buffer = 2M
  139. [mysqlhotcopy]
  140. interactive-timeout