Guest User

Untitled

a guest
Sep 16th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 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
  14. datadir=/var/lib/mysql
  15. tmpdir=/tmp
  16. lc-messages-dir=/usr/share/mysql
  17. log_error=/var/log/mysql/error.log
  18.  
  19. symbolic-links=0
  20. local-infile=0
  21.  
  22. skip-external-locking
  23. key_buffer_size = 256M
  24. max_allowed_packet = 512M
  25. table_open_cache = 256
  26. sort_buffer_size = 1M
  27. read_buffer_size = 1M
  28. read_rnd_buffer_size = 4M
  29. myisam_sort_buffer_size = 64M
  30. thread_cache_size = 8
  31. query_cache_size= 16M
  32.  
  33. #innodb_use_native_aio = 0
  34. innodb_file_per_table
  35.  
  36. max_connections=200
  37. max_user_connections=50
  38. wait_timeout=3600
  39. interactive_timeout=50
  40. long_query_time=5
  41.  
  42. !includedir /etc/mysql/conf.d/
  43.  
Advertisement
Add Comment
Please, Sign In to add comment