Updating glibc to 2.21 on CentOS
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:
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
add a comment |
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:
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
Those instructions are for CentOS 7, you appear to be running Centos 6.
– jordanm
May 19 '16 at 14:50
add a comment |
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:
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
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:
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
centos glibc
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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/.
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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/.
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
add a comment |
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/.
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
add a comment |
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/.
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/.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Those instructions are for CentOS 7, you appear to be running Centos 6.
– jordanm
May 19 '16 at 14:50