Setup problems with script on Centos 6.8 and cPanel

mmeachm

Registered
Jan 28, 2008
3
0
51
OPENEMR is one of the strongest open source systems for EMR record keeping. It performs best when it self-installs using its own scripts. It will not set up on my server. The OPENEMR and Centos communities believe it is because cPanel doesn't use php-mysql. My version of Centos and cPanel would require php56_mysql, which I have been totally unable to find. I also searched for cpanel-php56-mysql and am unable to find that packages as well. Any suggestions on where I can find these packages to install?
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,268
463
Hello @mmeachm,

The specific RPM for the MySQL extension with PHP 5.6 is found using the following command:

Code:
# repoquery -q --whatprovides 'ea-php56-php-mysql' | sort -V | tail -1
ea-php56-php-mysqlnd-0:5.6.28-1.1.2.cpanel.x86_64
With this output, it shows the RPM you require is named ea-php56-php-mysqlnd. You can install the package if it's not already installed with the following command:

Code:
yum install ea-php56-php-mysqlnd
Information on the MySQL native driver is available at:

PHP: Mysqlnd - Manual

Thank you.