程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 每天MySQL自動優化

每天MySQL自動優化

編輯:MySQL綜合教程

下面說下幾個參數的含義


-a, --analyze 分析 [Analyze given tables]
-o, --optimize 優化 [Optimize table]
-A, --all-databases 所有的數據庫 [Check all the database]
--auto-repair 自動修復 [If a checked table is corrupted, automatically fix it. Repairing will be done after all tables have been checked, if corrupted ones were found]

vi /opt/shell/mysql_opt.sh

/usr/local/mysql/bin/mysqlcheck -Aao -auto-repair -uroot -p


加入 crontab


* * */1 * *  /opt/shell/mysql_opt.sh

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved