Guest User

Untitled

a guest
Jun 21st, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. client
  2. port=3306
  3. socket=/var/run/mysqld/mysqld.sock
  4.  
  5. mysqld_safe
  6. socket=/var/run/mysqld/mysqld.sock
  7.  
  8. mysqld
  9. user=mysql
  10. pid-file=/var/run/mysqld/mysqld.pid
  11. socket=/var/run/mysqld/mysqld.sock
  12. port=3306
  13. basedir=/usr:/home/admin/web
  14. datadir=/var/lib/mysql
  15. tmpdir=/tmp
  16. lc-messages-dir=/usr/share/mysql
  17. log_error=/var/log/mysql/error.log
  18. local-infile=1
  19.  
  20.  
  21. symbolic-links=0
  22.  
  23. skip-external-locking
  24. key_buffer_size = 256M
  25. max_allowed_packet = 512M
  26.  
  27. sort_buffer_size = 1M
  28. read_buffer_size = 1M
  29. read_rnd_buffer_size = 4M
  30. myisam_sort_buffer_size = 64M
  31.  
  32. thread_cache_size = 8
  33. query_cache_size= 32M
  34. query_cache_type=1
  35. query_cache_limit=4M
  36. thread_concurrency = 8
  37.  
  38. innodb_buffer_pool_size= 12
  39.  
  40. max_heap_table_size = 300M
  41. tmp_table_size = 300M
  42. table_open_cache = 15000
  43.  
  44. #innodb_use_native_aio = 0
  45. innodb_file_per_table
  46.  
  47. wait_timeout=300
  48. connect_timeout=300
  49. max_connect_errors=10
  50.  
  51. max_connections=200
  52. max_user_connections=50
  53. interactive_timeout=5000
  54. long_query_time = 2
  55.  
  56. !includedir /etc/mysql/conf.d/
Add Comment
Please, Sign In to add comment