I'm completely new to Munin, and trying to get munin-mysql running. I
have it set up now the way I thought it should work, but I keep
getting this error:
Missing dependency Cache::Cache at /etc/munin/plugins/mysql_ line 828.
I have installed Cache::Cache and this does not give an error:
perl -e "use Cache::Cache"
Any thoughts on what might be causing this?
Regards,
Magnus Enger
> [...] I keep getting this error:
>
> Missing dependency Cache::Cache at /etc/munin/plugins/mysql_ line 828.
>
> I have installed Cache::Cache and this does not give an error:
>
> perl -e "use Cache::Cache"
>
> Any thoughts on what might be causing this?
munin_mysql currently uses Cache::SharedMemoryCache which is a part of
the Cache::Cache distribution. Try 'perl -e "use
Cache::SharedMemoryCache"' to see if your system is compatible.
I'm planning to use something else as a cache though, so all hope is
not lost even if your system is incompatible ;-)
--
Kjell-Magne
perl -e "use Cache::SharedMemoryCache" told me that:
Can't locate IPC/ShareLite.pm in @INC...
So I installed IPC::ShareLite, and now it seems to run just fine.
Thanks for your help and thanks for creating the plugin!
Regards,
Magnus