Guest User

Untitled

a guest
Jan 21st, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. [client]
  2. port=33067
  3. user=drupaluser
  4.  
  5. [mysql]
  6. max_allowed_packet = 128M
  7.  
  8. [mysqldump]
  9. max_allowed_packet = 128M
  10.  
  11.  
  12. [mysqladmin]
  13. user=root
  14. port=33067
  15.  
  16. [mysqld]
  17. pid-file="C:/Program Files (x86)/DevDesktop/mysql/data/mysql.pid"
  18. log-error="C:/Program Files (x86)/DevDesktop/mysql/data/mysql.err"
  19.  
  20. # The TCP/IP Port the MySQL Server will listen on
  21. port=33067
  22.  
  23. #Path to installation directory. All paths are usually resolved relative to this.
  24. basedir="C:/Program Files (x86)/DevDesktop/mysql"
  25.  
  26. #Path to the database root
  27. datadir="C:/Program Files (x86)/DevDesktop/mysql/data"
  28.  
  29. #set innodb as default
  30. default-storage-engine=InnoDB
  31.  
  32. innodb_log_buffer_size=32M
  33. innodb_buffer_pool_size=512M
  34. innodb_log_file_size=32M
  35.  
  36. innodb_file_per_table=1
  37.  
  38. #Max open files
  39. open_files_limit=10000
  40.  
  41. #Max packets
  42. max_allowed_packet = 128M
  43.  
  44. #The log buffer is written out to the file at each commit. Flushing on the log file takes place once per second
  45. innodb_flush_log_at_trx_commit=2
  46.  
  47. #Enable slow query log
  48. long_query_time=1
  49. slow_query_log=1
  50. slow_query_log_file=slow.log
Add Comment
Please, Sign In to add comment