in reply to Re: DBD::Sybase error
in thread DBD::Sybase error

Thank you for your suggestion on installing the module via apt-get; the module was indeed installed after I added the '--force-yes' flag

Yet, I now have a different error that seems to me like some kind of conflict:

root@server:# ./check_mssql_health --hostname <MSSQL_Server_IP> --user +name <MSSQL_user> --password <MSSQL_pass> --mode connection-time CRITICAL - cannot connect to <MSSQL_Server_IP>. install_driver(Sybase) + failed: DBD::Sybase object version 1.14 does not match bootstrap par +ameter 1.15 at /usr/lib/perl/5.14/DynaLoader.pm line 207. Compilation failed in require at (eval 10) line 3. at ./check_mssql_health line 3192

Replies are listed 'Best First'.
Re^3: DBD::Sybase error
by edimusrex (Monk) on Apr 29, 2015 at 18:22 UTC

    I suppose it's possible that the version under apt is 1.14 and the version that cpan partially installed was 1.15. What I would do is remove the package from cpan and apt and try reinstalling just the apt version.

    After that try

    sudo apt-get autoremove && sudo apt-get install libdbd-sybase-perl -y

    Basically try to clean up some of the mess.