Network Management

 View Only
Expand all | Collapse all

Checking database connectivity... Not Passed

This thread has been viewed 1 times
  • 1.  Checking database connectivity... Not Passed

    Posted Sep 07, 2015 08:47 AM

    Hi,

    I just installed RedHat 6.4 as mentioned in setup guide for iMC (instead of CentOS7). I upgraded and configured MySQL 5.1 to 5.5 as mentioned in http://h20565.www2.hpe.com/hpsc/doc/public/display?sp4ts.oid=4176535&sp4ts.pn=JG747AAE&sp4ts.sn=JG747AAE&docId=emr_na-c04465180&docLocale=en_US

     

    Now I am trying to install iMC but unfortunately got this:

     

    Checking database connectivity... Not Passed Some required packages were not found on your operating system. Please install them by following the instructions in the Red Hat Enterprise Linux Server 6.x Installation Guide.

     

    I got the same error in MySQL 5.1. MySQL is working fine itself (I am able to login and create/delete db's/tables)

     

    what is wrong?



  • 2.  RE: Checking database connectivity... Not Passed

    Posted Sep 07, 2015 11:09 PM

    I have MySQL 5.6 working with RHEL 6.7. You should be able to get MySQL 5.5 working. 

     

    That message about "Some required packages were not found" concerns me. Quick guess is that you're missing some compatibility packages. 

     

    I have Ansible playbooks for doing a base IMC + local MySQL install. Looking through those, you might want to check you've got these packages installed:

    - glibc.i686
    - libaio.i686
    - libgcc.i686
    - libstdc++.i686
    - ftp
    - telnet
    - ksh

     

    (Note that several of them include ".i686" - it's not enough to just install libaio, you must install libaio.i686, so that it installs the 32-bit versions, not just the default 64-bit versions.)

     

    Are you using a local MySQL install, or remote? If you're using local, you need to make sure MySQL is using a password for connecting from localhost. IMC won't work otherwise. It's a confusing thing to debug because when you run basic mysql queries yourself everything seems to work as expected.



  • 3.  RE: Checking database connectivity... Not Passed

    Posted Sep 15, 2015 10:30 AM

    Thanks, it was that.