Please take the following steps to determine if this is the issue and see what package the probe is looking for:
1. De-activate mysql probe.
2. On the Linux machine, go to the probe mysql folder on the system and provide the output of the following ldd command:
ldd mysql_monitor
In this instance, this is the missing library:
libstdc++.so.5 => not found3.Research the particular version for your particular Linux version to find a correct install command:
Example:# yum install compat-libstdc++-[particular version... such as 33.x86_64]
# yum provides */ANY_FILENAME_GOES_HERE
Make note of the rpm that results from that output and consider installing it.
# yum provides */libstdc++.so.5
4. Run the command and install the package.
5. Recheck ldd for the mysql_monitor binary if failing on the shared lib dependency
6. Activate the mysql probe or redeploy again from the local archive and it should now work.