home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / mysql / bin / my.cnf < prev    next >
Text File  |  2008-07-02  |  5KB  |  166 lines

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