Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 KB | None | 0 0
  1. -------- General Statistics --------------------------------------------------
  2. [--] Skipped version check for MySQLTuner script
  3. [OK] Currently running supported MySQL version 5.5.48-log
  4. [OK] Operating on 64-bit architecture
  5.  
  6. -------- Storage Engine Statistics -------------------------------------------
  7. [--] Status: +Archive -BDB -Federated +InnoDB -ISAM -NDBCluster
  8.  
  9. [--] Data in MyISAM tables: 1G (Tables: 134)
  10. [--] Data in InnoDB tables: 48K (Tables: 1)
  11. [--] Data in PERFORMANCE_SCHEMA tables: 0B (Tables: 17)
  12. [!!] Total fragmented tables: 48
  13.  
  14. -------- Security Recommendations -------------------------------------------
  15. [!!] User '@localhost' has no password set.
  16. [!!] User '@msdb' has no password set.
  17. [!!] User 'root@127.0.0.1' has no password set.
  18. [!!] User 'root@::1' has no password set.
  19. [!!] User 'root@msdb' has no password set.
  20.  
  21. -------- Performance Metrics -------------------------------------------------
  22. [--] Up for: 97d 11h 32m 17s (430M q [51.149 qps], 59K conn, TX: 348B, RX: 42B)
  23. [--] Reads / Writes: 95% / 5%
  24. [--] Total buffers: 27.2G global + 3.4M per thread (9999 max threads)
  25. [!!] Maximum possible memory usage: 60.1G (191% of installed RAM)
  26. [OK] Slow queries: 0% (181K/430M)
  27. [OK] Highest usage of available connections: 0% (77/9999)
  28. [OK] Key buffer size / total MyISAM indexes: 7.0G/892.2M
  29. [OK] Key buffer hit rate: 96.9% (13B cached / 413M reads)
  30. [!!] Query cache efficiency: 0.2% (5M cached / 3B selects)
  31. [!!] Query cache prunes per day: 122
  32. [OK] Sorts requiring temporary tables: 10% (1K temp sorts / 9K sorts)
  33. [OK] Temporary tables created on disk: 1% (24K on disk / 2M total)
  34. [OK] Thread cache hit rate: 99% (77 created / 59K connections)
  35. [!!] Table cache hit rate: 0% (128 open / 32M opened)
  36. [OK] Open file limit used: 0% (251/49K)
  37. [OK] Table locks acquired immediately: 97% (4B immediate / 4B locks)
  38. [!!] Connections aborted: 22%
  39. [OK] InnoDB data size / buffer pool: 48.0K/20.0G
  40.  
  41. -------- Recommendations -----------------------------------------------------
  42. General recommendations:
  43. Run OPTIMIZE TABLE to defragment tables for better performance
  44. Reduce your overall MySQL memory footprint for system stability
  45. Increase table_cache gradually to avoid file descriptor limits
  46. Your applications are not closing MySQL connections properly
  47. Variables to adjust:
  48. *** MySQL's maximum memory usage is dangerously high ***
  49. *** Add RAM before increasing MySQL buffer variables ***
  50. query_cache_limit (> 256M, or use smaller result sets)
  51. query_cache_size (> 128M)
  52. table_cache (> 128)
  53.  
  54. ============================================================
  55.  
  56. #innodb_buffer_pool_size = 16M
  57. #innodb_additional_mem_pool_size = 2M
  58. # Set .._log_file_size to 25 % of buffer pool size
  59. #innodb_log_file_size = 5M
  60. #innodb_log_buffer_size = 8M
  61. #innodb_flush_log_at_trx_commit = 1
  62. #innodb_lock_wait_timeout = 50
  63.  
  64.  
  65. #slave settings
  66. #server-id = 2
  67. #report-host=10.226.58.222
  68. #report-port=3306
  69. #report-user=root
  70. #report-password=KalsymSys@123987_
  71. #slave_skip_errors=1017, 1396, 1205, 1062, 1007, 1064, 1060, 1146,1032, 1051, 1050, 1213, 1146, 1049, 1054, 1236
  72.  
  73.  
  74. basedir=/usr/local/mysql
  75. datadir=/mysql/data
  76. tmpdir=/var/tmp
  77. #replicate-do-db=ms
  78. #replicate-do-db=ms_history
  79. #replicate-do-db=nm
  80. #replicate-do-db=nm_history
  81.  
  82. innodb_file_per_table=1
  83.  
  84. # SKIP replication Tables
  85. #replicate-ignore-table=mmp.incoming_prov_tab
  86.  
  87.  
  88.  
  89. #log-bin=mysql-bin
  90. relay-log-space-limit=8G
  91.  
  92. #innodb_data_file_path=/ibdata/ibdata1:10M:autoextend
  93. max_connections=9999
  94. innodb_lock_wait_timeout=300
  95. innodb_buffer_pool_size=20G
  96.  
  97. [mysqldump]
  98. quick
  99. max_allowed_packet = 16M
  100.  
  101. [mysql]
  102. no-auto-rehash
  103. # Remove the next comment character if you are not familiar with SQL
  104. #safe-updates
  105.  
  106. [myisamchk]
  107. key_buffer_size = 20M
  108. sort_buffer_size = 20M
  109. read_buffer = 2M
  110. write_buffer = 2M
  111. #here are the new lines
  112. [mysqladmin]
  113. user = root
  114. password = KalsymSys@123987_;
  115. [mysqlhotcopy]
  116. interactive-timeout
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement