「muninでMySQLの値を正常に取得できないとき」の版間の差分
提供: Wikiducca
(ページの作成:「CentOS 6.4 で動かしている munin-node で mysql の値が正常に取れていなかった。 エラーはこれ。 Missing dependency Cache::Cache # yum inst...」) |
|||
| 行11: | 行11: | ||
以上。 | 以上。 | ||
| + | |||
| + | == メモ == | ||
| + | そもそもシンボリックリンクがなかったら。 | ||
| + | |||
| + | /etc/munin/plugins/ | ||
| + | |||
| + | にて以下を実行し munin-node を再起動しておく。 | ||
| + | <pre> | ||
| + | ln -s /usr/share/munin/plugins/mysql_bytes ./mysql_bytes | ||
| + | ln -s /usr/share/munin/plugins/mysql_queries ./mysql_queries | ||
| + | ln -s /usr/share/munin/plugins/mysql_slowqueries ./mysql_slowqueries | ||
| + | ln -s /usr/share/munin/plugins/mysql_threads ./mysql_threads | ||
| + | ln -s /usr/share/munin/plugins/mysql_ ./mysql_commands | ||
| + | ln -s /usr/share/munin/plugins/mysql_ ./mysql_connections | ||
| + | ln -s /usr/share/munin/plugins/mysql_ ./mysql_innodb_bpool | ||
| + | ln -s /usr/share/munin/plugins/mysql_ ./mysql_innodb_io | ||
| + | ln -s /usr/share/munin/plugins/mysql_ ./mysql_innodb_log | ||
| + | ln -s /usr/share/munin/plugins/mysql_ ./mysql_innodb_tnx | ||
| + | ln -s /usr/share/munin/plugins/mysql_ ./mysql_network_traffic | ||
| + | ln -s /usr/share/munin/plugins/mysql_ ./mysql_qcache | ||
| + | ln -s /usr/share/munin/plugins/mysql_ ./mysql_qcache_mem | ||
| + | ln -s /usr/share/munin/plugins/mysql_ ./mysql_table_locks | ||
| + | ln -s /usr/share/munin/plugins/mysql_ ./mysql_select_types | ||
| + | ln -s /usr/share/munin/plugins/mysql_ ./mysql_slow | ||
| + | </pre> | ||
[[Category:munin]][[Category:MySQL]] | [[Category:munin]][[Category:MySQL]] | ||
2013年10月2日 (水) 14:18時点における版
CentOS 6.4 で動かしている munin-node で mysql の値が正常に取れていなかった。
エラーはこれ。
Missing dependency Cache::Cache
# yum install perl-Cache-Cache
すると解決するという情報があったので入れてみたけどやっぱりダメだった。
これを入れたら正常に取得できるようになった。
# yum install perl-IPC-ShareLite.x86_64
以上。
メモ
そもそもシンボリックリンクがなかったら。
/etc/munin/plugins/
にて以下を実行し munin-node を再起動しておく。
ln -s /usr/share/munin/plugins/mysql_bytes ./mysql_bytes ln -s /usr/share/munin/plugins/mysql_queries ./mysql_queries ln -s /usr/share/munin/plugins/mysql_slowqueries ./mysql_slowqueries ln -s /usr/share/munin/plugins/mysql_threads ./mysql_threads ln -s /usr/share/munin/plugins/mysql_ ./mysql_commands ln -s /usr/share/munin/plugins/mysql_ ./mysql_connections ln -s /usr/share/munin/plugins/mysql_ ./mysql_innodb_bpool ln -s /usr/share/munin/plugins/mysql_ ./mysql_innodb_io ln -s /usr/share/munin/plugins/mysql_ ./mysql_innodb_log ln -s /usr/share/munin/plugins/mysql_ ./mysql_innodb_tnx ln -s /usr/share/munin/plugins/mysql_ ./mysql_network_traffic ln -s /usr/share/munin/plugins/mysql_ ./mysql_qcache ln -s /usr/share/munin/plugins/mysql_ ./mysql_qcache_mem ln -s /usr/share/munin/plugins/mysql_ ./mysql_table_locks ln -s /usr/share/munin/plugins/mysql_ ./mysql_select_types ln -s /usr/share/munin/plugins/mysql_ ./mysql_slow