zoukankan      html  css  js  c++  java
  • 使用 mysqltuner 检测 mysql 稳定性

    github : https://github.com/major/MySQLTuner-perl 

    MySQLTuner是一个用Perl编写的脚本,它可以帮助您进行MySQL配置,并提出增强性能和稳定性的建议。

    installl:

    1,cd /usr/local/bin && curl -O https://raw.githubusercontent.com/major/MySQLTuner-perl/master/mysqltuner.pl

    2,chmod +x ./mysqltuner.pl && ./mysqltuner.pl --version && alias mysqltuner='perl /usr/local/bin/mysqltuner.pl' ;

    3-

    help:

    Usage:

    Name:
    MySQLTuner 1.7.15 - MySQL High Performance Tuning Script

    Important Usage Guidelines:
    To run the script with the default options, run the script without
    arguments Allow MySQL server to run for at least 24-48 hours before
    trusting suggestions Some routines may require root level privileges
    (script will provide warnings) You must provide the remote server's
    total memory when connecting to other servers

    Connection and Authentication: 连接和验证
    --host <hostname> Connect to a remote host to perform tests (default: localhost)
    --socket <socket> Use a different socket for a local connection
    --port <port> Port to use for connection (default: 3306)
    --user <username> Username to use for authentication
    --userenv <envvar> Name of env variable which contains username to use for authentication
    --pass <password> Password to use for authentication
    --passenv <envvar> Name of env variable which contains password to use for authentication
    --ssl-ca <path> Path to public key
    --mysqladmin <path> Path to a custom mysqladmin executable
    --mysqlcmd <path> Path to a custom mysql executable
    --defaults-file <path> Path to a custom .my.cnf

    Performance and Reporting Options:   绩效和报告选项
    --skipsize Don't enumerate tables and their types/sizes (default: on)
    (Recommended for servers with many tables)
    --skippassword Don't perform checks on user passwords(default: off)
    --checkversion Check for updates to MySQLTuner (default: don't check)
    --updateversion Check for updates to MySQLTuner and update when newer version is available (default: don't check)
    --forcemem <size> Amount of RAM installed in megabytes
    --forceswap <size> Amount of swap memory configured in megabytes
    --passwordfile <path> Path to a password file list(one password by line)

    Output Options: 输出选项
    --silent Don't output anything on screen
    --nogood Remove OK responses
    --nobad Remove negative/suggestion responses
    --noinfo Remove informational responses
    --debug Print debug information
    --noprocess Consider no other process is running
    --dbstat Print database information
    --nodbstat Don't Print database information
    --tbstat Print table information
    --notbstat Don't Print table information
    --idxstat Print index information
    --noidxstat Don't Print index information
    --sysstat Print system information
    --nosysstat Don't Print system information
    --pfstat Print Performance schema
    --nopfstat Don't Print Performance schema
    --verbose Prints out all options (default: no verbose, dbstat, idxstat, sysstat, tbstat, pfstat)
    --bannedports Ports banned separated by comma(,)
    --maxportallowed Number of ports opened allowed on this hosts
    --cvefile <path> CVE File for vulnerability checks
    --nocolor Don't print output in color
    --json Print result as JSON string
    --buffers Print global and per-thread buffer values
    --outputfile <path> Path to a output txt file
    --reportfile <path> Path to a report txt file
    --template <path> Path to a template file

    • Log file Recommendations 日志文件建议 -----
    • Storage Engine Statistics 存储引擎统计-----
    • Analysis Performance Metrics 分析性能指标 -----
    • Security Recommendations 安全建议-----
    • CVE Security Recommendations CVE安全建议-----
    • Performance schema 性能架构-----
    • ThreadPool Metrics 线程池度量标准-----
    • MyISAM Metrics-----
    • AriaDB Metrics -----
    • TokuDB Metrics-----
    • XtraDB Metrics -----
    • Galera Metrics -----
    • Replication Metrics 复制指标------
    • Recommendations 建议------

  • 相关阅读:
    理解 Delphi 的类(十) 深入方法[15] 调用其他单元的函数
    理解 Delphi 的类(十) 深入方法[13] 在 interface 区声明的方法
    理解 Delphi 的类(十) 深入方法[12] implementation 区中的方法
    理解 Delphi 的类(十) 深入方法[6] Result
    什么是B*树倒排索引技术 已解决 搜搜问问
    caoruntao的博客 数据结构及算法分类文章列表 ITeye技术网站
    PForDelta索引压缩算法的实现
    计算机词汇(融合了搜狗所有的计算机词库)_搜狗输入法词库
    一种由B+树实现的倒排索引《电脑知识与技术》2011年08期
    海量数据处理专题(九)——外排序
  • 原文地址:https://www.cnblogs.com/q1104460935/p/10623712.html
Copyright © 2011-2022 走看看