简体   繁体   中英

yum install php-mysql unable to install Centos

I am having difficulty installing php-mysql, I do the following:

yum -y install php-mysql

but get the following:

Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
 * base: centos.escapemg.com
 * extras: mirror.chpc.utah.edu
 * updates: mirrors.xmission.com
Setting up Install Process
No package php-mysql available.
Error: Nothing to do

I did a yum repolist disabled and enabled yum-config-manager --enable C6.1-base but still keep getting the same No package php-mysql available.

I figured it out, it appeared that mysql in /etc/yum.conf there was a line exclude=mysql* php* once I commented it out, I was able to yum install mysqlnd . Thanks to everyone who

The obvious problem is that you don't have a repository with PHP installed. It's odd that base doesn't have one but you can fix this by installing the remi repository , which has PHP 5.4 through 5.6 (just enable the version you want)

I would highly suggest installing php-mysqlnd instead of php-mysql , as that is the native driver and does not require any mysqlclientXX libraries, which are a mess to maintain.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM