Updating glibc to 2.21 on CentOS












0















I need to install MySQL 5.6 on a CentOS box. I found what seemed to be a simple tutorial, but the first command (sudo yum install my-sql-community-server) resulted in this group of errors:



enter image description here



I ran yum list glibc to see what version my box has, and it came up with glibc.x86_64 2.12-1.166.el6_7.7. I tried running yum -y update glibc, and it ran with no errors, but when I check the version again, it's still on the same one. How do I update my system to have the libraries that mysql requires?










share|improve this question

























  • Those instructions are for CentOS 7, you appear to be running Centos 6.

    – jordanm
    May 19 '16 at 14:50
















0















I need to install MySQL 5.6 on a CentOS box. I found what seemed to be a simple tutorial, but the first command (sudo yum install my-sql-community-server) resulted in this group of errors:



enter image description here



I ran yum list glibc to see what version my box has, and it came up with glibc.x86_64 2.12-1.166.el6_7.7. I tried running yum -y update glibc, and it ran with no errors, but when I check the version again, it's still on the same one. How do I update my system to have the libraries that mysql requires?










share|improve this question

























  • Those instructions are for CentOS 7, you appear to be running Centos 6.

    – jordanm
    May 19 '16 at 14:50














0












0








0








I need to install MySQL 5.6 on a CentOS box. I found what seemed to be a simple tutorial, but the first command (sudo yum install my-sql-community-server) resulted in this group of errors:



enter image description here



I ran yum list glibc to see what version my box has, and it came up with glibc.x86_64 2.12-1.166.el6_7.7. I tried running yum -y update glibc, and it ran with no errors, but when I check the version again, it's still on the same one. How do I update my system to have the libraries that mysql requires?










share|improve this question
















I need to install MySQL 5.6 on a CentOS box. I found what seemed to be a simple tutorial, but the first command (sudo yum install my-sql-community-server) resulted in this group of errors:



enter image description here



I ran yum list glibc to see what version my box has, and it came up with glibc.x86_64 2.12-1.166.el6_7.7. I tried running yum -y update glibc, and it ran with no errors, but when I check the version again, it's still on the same one. How do I update my system to have the libraries that mysql requires?







centos glibc






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 13 at 21:20









Rui F Ribeiro

39.5k1479133




39.5k1479133










asked May 19 '16 at 14:40









EmmySEmmyS

327148




327148













  • Those instructions are for CentOS 7, you appear to be running Centos 6.

    – jordanm
    May 19 '16 at 14:50



















  • Those instructions are for CentOS 7, you appear to be running Centos 6.

    – jordanm
    May 19 '16 at 14:50

















Those instructions are for CentOS 7, you appear to be running Centos 6.

– jordanm
May 19 '16 at 14:50





Those instructions are for CentOS 7, you appear to be running Centos 6.

– jordanm
May 19 '16 at 14:50










1 Answer
1






active

oldest

votes


















3














That tutorial is specific to RHEL 7 / CentOS 7. It will not work for CentOS 6, precisely because the OS packages in CentOS 6 are older than what you need for the MySQL packages for CentOS 7. You'll need to find a tutorial or instructions for installing on CentOS 6; there are lots of them out there. You'll first need to uninstall the repository package you installed as part of this tutorial, then you can start at the MySQL repository page, http://dev.mysql.com/downloads/repo/yum/.






share|improve this answer
























  • Thank you. I'm familiar enough with Ubuntu, but not at all with CentOS, so I didn't know what version was running.

    – EmmyS
    May 19 '16 at 18:54











  • To find the version, look at /etc/centos-release - /etc/redhat-release on RHEL. Most of your package files will tell you as well - the "el6" in the filename means it's for CentOS 6.

    – John
    May 19 '16 at 19:22











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f284198%2fupdating-glibc-to-2-21-on-centos%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









3














That tutorial is specific to RHEL 7 / CentOS 7. It will not work for CentOS 6, precisely because the OS packages in CentOS 6 are older than what you need for the MySQL packages for CentOS 7. You'll need to find a tutorial or instructions for installing on CentOS 6; there are lots of them out there. You'll first need to uninstall the repository package you installed as part of this tutorial, then you can start at the MySQL repository page, http://dev.mysql.com/downloads/repo/yum/.






share|improve this answer
























  • Thank you. I'm familiar enough with Ubuntu, but not at all with CentOS, so I didn't know what version was running.

    – EmmyS
    May 19 '16 at 18:54











  • To find the version, look at /etc/centos-release - /etc/redhat-release on RHEL. Most of your package files will tell you as well - the "el6" in the filename means it's for CentOS 6.

    – John
    May 19 '16 at 19:22
















3














That tutorial is specific to RHEL 7 / CentOS 7. It will not work for CentOS 6, precisely because the OS packages in CentOS 6 are older than what you need for the MySQL packages for CentOS 7. You'll need to find a tutorial or instructions for installing on CentOS 6; there are lots of them out there. You'll first need to uninstall the repository package you installed as part of this tutorial, then you can start at the MySQL repository page, http://dev.mysql.com/downloads/repo/yum/.






share|improve this answer
























  • Thank you. I'm familiar enough with Ubuntu, but not at all with CentOS, so I didn't know what version was running.

    – EmmyS
    May 19 '16 at 18:54











  • To find the version, look at /etc/centos-release - /etc/redhat-release on RHEL. Most of your package files will tell you as well - the "el6" in the filename means it's for CentOS 6.

    – John
    May 19 '16 at 19:22














3












3








3







That tutorial is specific to RHEL 7 / CentOS 7. It will not work for CentOS 6, precisely because the OS packages in CentOS 6 are older than what you need for the MySQL packages for CentOS 7. You'll need to find a tutorial or instructions for installing on CentOS 6; there are lots of them out there. You'll first need to uninstall the repository package you installed as part of this tutorial, then you can start at the MySQL repository page, http://dev.mysql.com/downloads/repo/yum/.






share|improve this answer













That tutorial is specific to RHEL 7 / CentOS 7. It will not work for CentOS 6, precisely because the OS packages in CentOS 6 are older than what you need for the MySQL packages for CentOS 7. You'll need to find a tutorial or instructions for installing on CentOS 6; there are lots of them out there. You'll first need to uninstall the repository package you installed as part of this tutorial, then you can start at the MySQL repository page, http://dev.mysql.com/downloads/repo/yum/.







share|improve this answer












share|improve this answer



share|improve this answer










answered May 19 '16 at 14:50









JohnJohn

11.6k11730




11.6k11730













  • Thank you. I'm familiar enough with Ubuntu, but not at all with CentOS, so I didn't know what version was running.

    – EmmyS
    May 19 '16 at 18:54











  • To find the version, look at /etc/centos-release - /etc/redhat-release on RHEL. Most of your package files will tell you as well - the "el6" in the filename means it's for CentOS 6.

    – John
    May 19 '16 at 19:22



















  • Thank you. I'm familiar enough with Ubuntu, but not at all with CentOS, so I didn't know what version was running.

    – EmmyS
    May 19 '16 at 18:54











  • To find the version, look at /etc/centos-release - /etc/redhat-release on RHEL. Most of your package files will tell you as well - the "el6" in the filename means it's for CentOS 6.

    – John
    May 19 '16 at 19:22

















Thank you. I'm familiar enough with Ubuntu, but not at all with CentOS, so I didn't know what version was running.

– EmmyS
May 19 '16 at 18:54





Thank you. I'm familiar enough with Ubuntu, but not at all with CentOS, so I didn't know what version was running.

– EmmyS
May 19 '16 at 18:54













To find the version, look at /etc/centos-release - /etc/redhat-release on RHEL. Most of your package files will tell you as well - the "el6" in the filename means it's for CentOS 6.

– John
May 19 '16 at 19:22





To find the version, look at /etc/centos-release - /etc/redhat-release on RHEL. Most of your package files will tell you as well - the "el6" in the filename means it's for CentOS 6.

– John
May 19 '16 at 19:22


















draft saved

draft discarded




















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f284198%2fupdating-glibc-to-2-21-on-centos%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

is 'sed' thread safe

How to make a Squid Proxy server?