版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認(rèn)領(lǐng)
文檔簡介
1、MySQL Monitoring,ChinaUnix網(wǎng)友技術(shù)交流,MySQL Monitoring,一、如何有效監(jiān)控?監(jiān)控的目的 二、基本監(jiān)控解決方案(基礎(chǔ)數(shù)據(jù)收集) 三、高級解決方案(數(shù)據(jù)庫健康狀態(tài),優(yōu)化) 四、MySQL性能相關(guān)交互式監(jiān)控工具 五、相關(guān)資源參考,一 、如何有效監(jiān)控?,一、如何有效監(jiān)控?監(jiān)控的目的? 1 、服務(wù)健康監(jiān)測(存活,故障告警.) 2 、監(jiān)控系統(tǒng)采集數(shù)據(jù),依據(jù)數(shù)據(jù)進行調(diào)優(yōu),二、 基本監(jiān)控解決方案,二、基本監(jiān)控解決方案(收集系統(tǒng)信息) top 、vmstat 、iostat 、mpstat 、mytop 、dstata 、free 、/proc/. 、mstat 、mt
2、op .命令行工具分析系統(tǒng)資源使用狀況.,三、高級監(jiān)控解決方案,三、高級監(jiān)控解決方案 1、Nagios相關(guān):(收集數(shù)據(jù)庫信息及健康狀態(tài),對數(shù)據(jù)庫調(diào)整優(yōu)化) check_mysql 推薦 nagios-mysql-plugins-0.3 適當(dāng)選擇 check_mysql_health 重點介紹推薦 由于時間關(guān)系本PPT只重點介紹一下Nagios相關(guān)的插件腳本. 重點介紹一下check_mysql_health監(jiān)控數(shù)據(jù)庫調(diào)優(yōu)。 2、MySQL Activity Report 基于rrdtool *http:/gert.sos.be/en/projects/mysqlar/ *http:/gert.
3、sos.be/demo/mysqlar/ 演示網(wǎng)站,三、高級監(jiān)控解決方案,三、高級監(jiān)控解決方案 3、CACTI * MySQL模板: 4、RRD 參考資料: * http:/vvv.k6p.de/rrd/ * http:/oss.oetiker.ch/rrdtool/rrdworld/ * http:/www.fi.muni.cz/kas/mrtg-rrd/ * /internet/manage/rrdutil/faq/mysql.shtml 5、Munin * jects.linpro.no/ .,Nagios check_m
4、ysql,#cd /usr/local/nagios/libexec/ # ./check_mysql help /查看使用說明 . Usage: check_mysql -d database -H host -P port -s socket -u user -p password -S Options: -h, -help Print detailed help screen -V, -version Print version information -H, -hostname=ADDRESS Host name, IP Address, or unix socket (must be
5、 an absolute path) -P, -port=INTEGER Port number (default: 3306) -s, -socket=STRING Use the specified socket (has no effect if -H is used) -d, -database=STRING Check database with indicated name -u, -username=STRING Connect using the indicated username -p, -password=STRING Use the indicated password
6、 to authenticate the connection = IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE! = Your clear-text password could be visible as a process table entry -S, -check-slave /檢測Slave狀態(tài). Check if the slave thread is running properly. -w, -warning Exit with WARNING status if slave server is more than
7、INTEGER seconds behind master -c, -critical Exit with CRITICAL status if slave server is more then INTEGER seconds behind master,Nagios check_mysql,示例: Nagios 監(jiān)控服務(wù)器:38 如要監(jiān)控DB服務(wù)器04和Slave DB服務(wù)器23 數(shù)據(jù)庫授權(quán):(登陸DB服務(wù)器,進行授權(quán)用戶名netseek,密碼linuxtone) mysql grant all privileg
8、es - on *.* - to netseek38 identified by linuxtone; Query OK, 0 rows affected (0.00 sec) mysql flush privileges; Query OK, 0 rows affected (0.00 sec),Nagios check_mysql,示例: 在監(jiān)控機上. #cd /usr/local/nagios/libexec/ 連接204查看數(shù)據(jù)庫狀態(tài): #./check_mysql -H 04 -u netseek -p linuxtone Upti
9、me: 2146510 Threads: 1 Questions: 61155591 Slow queries: 325 Opens: 1273 Flush tables: 1 Open tables: 767 Queries per second avg: 28.491 連接數(shù)據(jù)庫123查看 ./check_mysql -H 23 -u netseek -p linuxtone -S -w 60 -c 600 Uptime: 35349 Threads: 1 Questions: 4022 Slow queries: 0 Opens: 38 Flush tables
10、: 1 Open tables: 32 Queries per second avg: 0.114 Slave IO: Yes Slave SQL: Yes Seconds Behind Master: 0 OK,在命令行下都能正常連接數(shù)據(jù)庫:,Check_mysql Nagios配置,# vi commands.cfg 添加如下: #check_mysql define command command_name check_mysql command_line $USER1$/check_mysql -H $ARG1$ -P $ARG2$ -u $ARG3$ -p $ARG4$ /仔細看參數(shù)
11、傳遞與上面的命令行對應(yīng). #check_slave define command command_name check_slave command_line $USER1$/check_mysql -H $ARG1$ -P $ARG2$ -u $ARG3$ -p $ARG4$ -S -w $ARG5$ -c $ARG6$ ,Check_mysql Nagios配置, #vi sh-wt-www-db.cfg 給上海網(wǎng)通兩臺DB服務(wù)器配置上mysql數(shù)據(jù)庫檢測: . 在自己定的的配置文件里,添加如下服務(wù)段. #check_mysql define service host_name dbss-m
12、aster service_description check_mysql check_command check_mysql!22!3306!netseek!linuxtone . #check slave define service host_name dbss-slave service_description check_slave check_command check_slave!23!3306!netseek!linuxtone!60!600 . ,Nagios check_mysql,check_mysql監(jiān)控演示效果 Ch
13、eck_mysql S 模塊可以很好的檢測mysql replication slave的健康狀態(tài). mysqlshow slave stautsG *是否工作 Slave_IO_running: YES Slave_SQL_running: YES *延遲情況 Sencodes_behind_master,nagios-mysql-plugins,選擇性的使用此插件來配合監(jiān)控工作 # wget http:/www.shinguz.ch/MySQL/nagios-mysql-plugins-0.3.tar.gz # tar zxvf nagios-mysql-plugins-0.3.tar.g
14、z # cd nagios-mysql-plugins-0.3 # chmod a+x * # mv * /usr/local/nagios/libexec 插件解釋: check_db_mysql.pl 檢測mysql是否運行. check_errorlog_mysql.pl 檢測數(shù)據(jù)庫下的錯誤日志 perf_mysql.pl 收集性能數(shù)據(jù),類似后面要講的check_mysql_health replication相關(guān). check_repl_mysql_cnt_slave_hosts.pl /檢測復(fù)制相關(guān)。 check_repl_mysql_hearbeat.pl check_repl_m
15、ysql_io_thread.pl check_repl_mysql_read_exec_pos.pl check_repl_mysql_readonly.pl check_repl_mysql_seconds_behind_master.pl check_repl_mysql_sql_thread.pl -,nagios-mysql-plugins,./check_db_mysql.pl -h 04 -u netseek -p linuxtone -port 3306 編寫command define command command_name check_db_my
16、sql command_line $USER1$/check_db_mysql.pl -h $ARG1$ -u $ARG2$ -p $ARG3$ -port $ARG4$ . 服務(wù)端配置: . check_command check_db_mysql!04!netseek!linuxtone!3306 .,check_mysql_health,一、安裝check_mysql_health 官方網(wǎng)站:http:/www.consol.de/opensource/nagios/check-mysql-health/ # wget http:/www.consol.de/f
17、ileadmin/opensource/Nagios/check_mysql_health-2.0.3.tar.gz # tar zxvf check_mysql_health-2.0.3.tar.gz # cd check_mysql_health-2.0.3 # ./configure -prefix=/usr/local/nagios -with-nagios-user=nagios - with-nagios-group=nagios -with-perl -with-statefiles-dir=/tmp # make Query OK, 0 rows affected (0.00
18、sec) mysql flush privileges; Query OK, 0 rows affected (0.00 sec) OK - 2 client connection threads | threads_connected=2;10;20,check_mysql_health,三、示例: 在監(jiān)控機上. #cd /usr/local/nagios/libexec/ 連接123查看數(shù)據(jù)庫查詢線程緩存命中率狀態(tài): # ./check_mysql_health -hostname 23 -port 3306 -username netseek -password
19、 linuxtone -mode threadcache-hitrate OK - thread cache hitrate 91.30% | thread_cache_hitrate=91.30%;90:;80: thread_cache_hitrate_now=91.30% connections_per_sec=0.00 90: 表示小于90 warning, 80 表示小于80 則critical 查詢命中率 # ./check_mysql_health -hostname 22 -port 3306 -username netseek -password l
20、inuxtone -mode qcache-hitrate WARNING - query cache hitrate 88.19% | qcache_hitrate=88.19%;90:;80: qcache_hitrate_now=78.57% selects_per_sec=0.75,check_mysql_health,三、示例: 在監(jiān)控機上. 調(diào)整告警閥值: # ./check_mysql_health -hostname 22 -port 3306 -username netseek -password linuxtone -w 80: -c 70: -m
21、ode qcache-hitrate OK - query cache hitrate 88.19% | qcache_hitrate=88.19%;80:;70: qcache_hitrate_now=85.63% selects_per_sec=0.52 連接123數(shù)據(jù)庫查看鎖表率. # ./check_mysql_health -hostname 23 -port 3306 -username netseek -password linuxtone -mode table-lock-contention OK - table lock contention 0.
22、00% | tablelock_contention=0.00%;1;2 tablelock_contention_now=0.00% 連接123數(shù)據(jù)庫查看數(shù)據(jù)庫服務(wù)器當(dāng)前連接數(shù)量: # ./check_mysql_health -hostname 23 -port 3306 -username netseek -password linuxtone -mode threads-connected OK - 2 client connection threads | threads_connected=2;10;20,check_mysql_health,Nagios
23、相關(guān)配置 # vi commands.cfg 添加如下: #check_health_mysql define command command_name check_mysql_health command_line $USER1$/check_mysql_health -hostname $ARG1$ -port $ARG2$ -username $ARG3$ -password $ARG4$ -mode $ARG5$ #vi sh-wt-www-db.cfg 給上海網(wǎng)通兩臺DB服務(wù)器配置上mysql數(shù)據(jù)庫檢測: . 在自己定的的配置文件里,添加如下服務(wù)段. define service host_name dbss-slave service_description threads-connected check_command check_mysql_health!23!3306!netseek!linuxtone!threads-connected,check_mysql_health,. define service host_name dbss-slave service_descrip
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024網(wǎng)絡(luò)安全防護與監(jiān)測服務(wù)合同
- 2024離婚雙方的特殊財產(chǎn)(如古董、藝術(shù)品)分配合同
- 2025年度住宅小區(qū)蟲鼠害預(yù)防與治理專項服務(wù)合同模板4篇
- 2025年度安全生產(chǎn)應(yīng)急預(yù)案編制合同規(guī)范3篇
- 2025年度新能源汽車銷售代理及售后服務(wù)合同3篇
- 2025年度智慧停車系統(tǒng)車位租賃管理合同樣本4篇
- 2025年度出租車公司車輛更新改造升級合同3篇
- 2025年度現(xiàn)代農(nóng)業(yè)示范區(qū)場地平整與灌溉系統(tǒng)建設(shè)合同3篇
- 2025年度特色菜肴研發(fā)及廚師團隊聘用協(xié)議4篇
- 2025年度數(shù)據(jù)中心專用電纜供應(yīng)與安裝服務(wù)合同范本4篇
- 商場電氣設(shè)備維護勞務(wù)合同
- 油氣田智能優(yōu)化設(shè)計-洞察分析
- 陜西2020-2024年中考英語五年真題匯編學(xué)生版-專題09 閱讀七選五
- 磚混結(jié)構(gòu)基礎(chǔ)加固技術(shù)方案
- 助產(chǎn)專業(yè)的職業(yè)生涯規(guī)劃
- 2023年國家公務(wù)員錄用考試《行測》真題(行政執(zhí)法)及答案解析
- 新《國有企業(yè)管理人員處分條例》知識競賽考試題庫500題(含答案)
- 骨質(zhì)疏松護理
- 《聞泰科技并購安世半導(dǎo)體的風(fēng)險應(yīng)對案例探析》8200字(論文)
- 肝斷面引流管護理
- 醫(yī)療器械銷售合同模板
評論
0/150
提交評論