You should be able to get php-mysql from the same place that you got the php 5.3.6 RPMs that you have installed now. These are not CentOS supplied so trying to install the CentOS php-mysql or php53... [by TrevorH]
ok here's what I get when trying to install php53-mysqlIt basicly tells me "Package php53-mysql is obsoleted by php-mysql, trying to install php-mysql-5.3.8-1.el5.art.x86_64 i... [by subzero22]
Okay maybe this question has been asked before, I couldn't find the solution I searched both StackOverflow and Serverfault.
Fist of all I'm running
CentOS release 5.5 (Final)
I had by default PHP 5.1.6 and HTTPD (Apache/2.2.3)
Now I had to upgrade PHP 5.1.6 to PHP 5.3 to enable zip support.
I ran a few yum commands such as.
yum remove php php-*
Then I ran
yum install php53 php53-cli php53-d
Title says it all. I previously had mysql version 5.1 on my CENTOS 6 x86_64 OS.
I attempted to remove mysql 5.1 and replace it with an install of mysql 5.6.
Here is my uninstall process for mysql 5.1:
yum remove mysql
yum remove mysql-devel
yum remove mysql-client
rpm -qa | grep -i mysql
rpm -e mysql --nodeps
Here is my install process for mysql 5.6:
I got three rpm's for mysql 5.6.
I'm trying to update Mysql on debian without success, and all tutorial on internet just fails.
I got Debian 6.0.6 squeeze, my mysql version is mysql Ver 14.14 Distrib 5.1.63.
I did apt-get update and apt-get upgrade it says that nothing is to upgrade.
So I downloaded the last version wget --content-disposition http://www.mysql.com/get/Downloads/MySQL-5.5/mysql-5.5.28-debian6.0-x86_...
How I can install mysql in ubuntu 12.04(gnome 3). So that I will have my mysql installation in /usr/bin/mysql
It's library and header files in /usr/lib/mysql and /usr/include/mysql respectively.
Last time I tried sudo apt-get install mysql-server mysql-client mysql-common The mysql has been installed in /usr/bin/mysql.
I really did it this time.. I deleted a database named MySQL in my server. Shortly after MySQL went haywire and now I cannot login as a user to mysql, I cannot re-install mysql, I get an error for every solution I try.
So I decided hell with it I'll remove mysql, php and start again. I used rpm -qa | grep mysql but it returned nothing.
I installed apache and php from source and got them working together a month ago. Because I'm learning both of them this term.
Now I need mysql to do more works. And I installed mysql from source just now. However I don't know how to let it work with php.
I looked around and found some topics on setting up LAMP environment.
Right now it's almost certain that your Mysql data directory is the default /var/lib/mysql which is part of your root filesystem. If you have to import 1TB of xml into that as you stated in yo... [by TrevorH]