Is there any way to install MySQL 5.1 and PHP 5.3 on Centos 7
Is there any way to install MySQL 5.1 and PHP 5.3 on Centos 7. I researched a lot but could not find any link which gives step by step procedure. Can someone please give me steps to be followed to install these .
ubuntu centos rhel mysql php5
bumped to the homepage by Community♦ 24 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
Is there any way to install MySQL 5.1 and PHP 5.3 on Centos 7. I researched a lot but could not find any link which gives step by step procedure. Can someone please give me steps to be followed to install these .
ubuntu centos rhel mysql php5
bumped to the homepage by Community♦ 24 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
Is there any way to install MySQL 5.1 and PHP 5.3 on Centos 7. I researched a lot but could not find any link which gives step by step procedure. Can someone please give me steps to be followed to install these .
ubuntu centos rhel mysql php5
Is there any way to install MySQL 5.1 and PHP 5.3 on Centos 7. I researched a lot but could not find any link which gives step by step procedure. Can someone please give me steps to be followed to install these .
ubuntu centos rhel mysql php5
ubuntu centos rhel mysql php5
asked Feb 2 '15 at 8:36
Nikhil BabuNikhil Babu
12
12
bumped to the homepage by Community♦ 24 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 24 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
There are no RPMs of MySQL 5.1 for CentOS 7.
Your only chance is to take the "generic tar-ball", its installation is described in the manual.
At the top of my head, I see two potential points of trouble:
1) You may need to disable SElinux.
2) Some system library may have had an API change between the build platform of the binaries and CentOS 7.
I have no info on PHP.
add a comment |
Try using IUS Community Project repositories:
yum -y update
yum -y install epel-release
wget https://centos7.iuscommunity.org/ius-release.rpm
rpm -Uvh ius-release*.rpm
yum -y update
yum -y install php56u php56u-opcache php56u-xml php56u-mcrypt php56u-gd php56u-devel php56u-mysql php56u-intl php56u-mbstring php56u-bcmath
You can change php5X or 7x for versions you want.
Another way to run ANY PHP version over any linux distribution is compiling it from sources. Its simple. Look this manual that explain how to run any version of PHP: https://docs.google.com/document/d/1WSJ0LMIJW5syLCekyYTZALe4X_t_RI9umKwpM_2sO7g/preview
Regards.
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%2f182411%2fis-there-any-way-to-install-mysql-5-1-and-php-5-3-on-centos-7%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
There are no RPMs of MySQL 5.1 for CentOS 7.
Your only chance is to take the "generic tar-ball", its installation is described in the manual.
At the top of my head, I see two potential points of trouble:
1) You may need to disable SElinux.
2) Some system library may have had an API change between the build platform of the binaries and CentOS 7.
I have no info on PHP.
add a comment |
There are no RPMs of MySQL 5.1 for CentOS 7.
Your only chance is to take the "generic tar-ball", its installation is described in the manual.
At the top of my head, I see two potential points of trouble:
1) You may need to disable SElinux.
2) Some system library may have had an API change between the build platform of the binaries and CentOS 7.
I have no info on PHP.
add a comment |
There are no RPMs of MySQL 5.1 for CentOS 7.
Your only chance is to take the "generic tar-ball", its installation is described in the manual.
At the top of my head, I see two potential points of trouble:
1) You may need to disable SElinux.
2) Some system library may have had an API change between the build platform of the binaries and CentOS 7.
I have no info on PHP.
There are no RPMs of MySQL 5.1 for CentOS 7.
Your only chance is to take the "generic tar-ball", its installation is described in the manual.
At the top of my head, I see two potential points of trouble:
1) You may need to disable SElinux.
2) Some system library may have had an API change between the build platform of the binaries and CentOS 7.
I have no info on PHP.
answered Feb 26 '15 at 14:24
Jörg BrüheJörg Brühe
261
261
add a comment |
add a comment |
Try using IUS Community Project repositories:
yum -y update
yum -y install epel-release
wget https://centos7.iuscommunity.org/ius-release.rpm
rpm -Uvh ius-release*.rpm
yum -y update
yum -y install php56u php56u-opcache php56u-xml php56u-mcrypt php56u-gd php56u-devel php56u-mysql php56u-intl php56u-mbstring php56u-bcmath
You can change php5X or 7x for versions you want.
Another way to run ANY PHP version over any linux distribution is compiling it from sources. Its simple. Look this manual that explain how to run any version of PHP: https://docs.google.com/document/d/1WSJ0LMIJW5syLCekyYTZALe4X_t_RI9umKwpM_2sO7g/preview
Regards.
add a comment |
Try using IUS Community Project repositories:
yum -y update
yum -y install epel-release
wget https://centos7.iuscommunity.org/ius-release.rpm
rpm -Uvh ius-release*.rpm
yum -y update
yum -y install php56u php56u-opcache php56u-xml php56u-mcrypt php56u-gd php56u-devel php56u-mysql php56u-intl php56u-mbstring php56u-bcmath
You can change php5X or 7x for versions you want.
Another way to run ANY PHP version over any linux distribution is compiling it from sources. Its simple. Look this manual that explain how to run any version of PHP: https://docs.google.com/document/d/1WSJ0LMIJW5syLCekyYTZALe4X_t_RI9umKwpM_2sO7g/preview
Regards.
add a comment |
Try using IUS Community Project repositories:
yum -y update
yum -y install epel-release
wget https://centos7.iuscommunity.org/ius-release.rpm
rpm -Uvh ius-release*.rpm
yum -y update
yum -y install php56u php56u-opcache php56u-xml php56u-mcrypt php56u-gd php56u-devel php56u-mysql php56u-intl php56u-mbstring php56u-bcmath
You can change php5X or 7x for versions you want.
Another way to run ANY PHP version over any linux distribution is compiling it from sources. Its simple. Look this manual that explain how to run any version of PHP: https://docs.google.com/document/d/1WSJ0LMIJW5syLCekyYTZALe4X_t_RI9umKwpM_2sO7g/preview
Regards.
Try using IUS Community Project repositories:
yum -y update
yum -y install epel-release
wget https://centos7.iuscommunity.org/ius-release.rpm
rpm -Uvh ius-release*.rpm
yum -y update
yum -y install php56u php56u-opcache php56u-xml php56u-mcrypt php56u-gd php56u-devel php56u-mysql php56u-intl php56u-mbstring php56u-bcmath
You can change php5X or 7x for versions you want.
Another way to run ANY PHP version over any linux distribution is compiling it from sources. Its simple. Look this manual that explain how to run any version of PHP: https://docs.google.com/document/d/1WSJ0LMIJW5syLCekyYTZALe4X_t_RI9umKwpM_2sO7g/preview
Regards.
answered Feb 20 '17 at 15:41
user217050user217050
1
1
add a comment |
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%2f182411%2fis-there-any-way-to-install-mysql-5-1-and-php-5-3-on-centos-7%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