1753678 Members
5639 Online
108799 Solutions
New Discussion

Checking database connectivity... Not Passed

 
SOLVED
Go to solution
horiz0n
Occasional Advisor

Checking database connectivity... Not Passed

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 REPLIES 2
LindsayHill
Honored Contributor
Solution

Re: Checking database connectivity... Not Passed

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.

horiz0n
Occasional Advisor

Re: Checking database connectivity... Not Passed

Thanks, it was that.