mmdc
mmdc

Reputation: 1746

"Nothing to do" when installing mysql devel

I'm using CentOS 6.4 and trying to install mysql-devel by "yum" It cannot be installed and there is no error message. I can use "yum search" to find a package but cannot install it.

/home/centos64/ce-installer:sudo yum install MySQL51-devel.x86_64
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
epel/metalink
epel-debuginfo/metalink
epel-source/metalink
 * epel: mirrors.ptd.net
 * epel-debuginfo: mirrors.servercentral.net
 * epel-source: mirrors.servercentral.net
 * webtatic: us-east.repo.webtatic.com
base
centosplus
epel-debuginfo
epel-source
extras
updates
webtatic
Setting up Install Process
Nothing to do

Thanks.

Upvotes: 1

Views: 4293

Answers (2)

user3029353
user3029353

Reputation: 143

You have the name of the package wrong. Yum returns "nothing to do" because there is no "MySQL51-devel.x86_64" package available. Try this:

sudo yum install mysql-devel.x86_64

Upvotes: 0

Jason Heo
Jason Heo

Reputation: 10246

check out whether already installed:

rpm -qa | grep -i mysql

Upvotes: 2

Related Questions