Ubuntu 16.0.4 has Apache 2.4.18 in the cache but 2.4.29 is the latest release. Is it necessary to get latest...
Step 1) Checked the version of Ubuntu with lsb_release -a
. My server has 16.04.3 LTS.
Step 2) Installed Apache with apt-get install apache2
.
Step 3) Checked the version of Apache with apache2 -v
. I have 2.4.18.
However according to the Apache website the latest version is 2.4.29.
Is it common practice or generally safe to upgrade to the latest version of Apache or other packages? If so how would I do that? Is there an obvious reason why I shouldn't update to the latest?
upgrade apache2
add a comment |
Step 1) Checked the version of Ubuntu with lsb_release -a
. My server has 16.04.3 LTS.
Step 2) Installed Apache with apt-get install apache2
.
Step 3) Checked the version of Apache with apache2 -v
. I have 2.4.18.
However according to the Apache website the latest version is 2.4.29.
Is it common practice or generally safe to upgrade to the latest version of Apache or other packages? If so how would I do that? Is there an obvious reason why I shouldn't update to the latest?
upgrade apache2
add a comment |
Step 1) Checked the version of Ubuntu with lsb_release -a
. My server has 16.04.3 LTS.
Step 2) Installed Apache with apt-get install apache2
.
Step 3) Checked the version of Apache with apache2 -v
. I have 2.4.18.
However according to the Apache website the latest version is 2.4.29.
Is it common practice or generally safe to upgrade to the latest version of Apache or other packages? If so how would I do that? Is there an obvious reason why I shouldn't update to the latest?
upgrade apache2
Step 1) Checked the version of Ubuntu with lsb_release -a
. My server has 16.04.3 LTS.
Step 2) Installed Apache with apt-get install apache2
.
Step 3) Checked the version of Apache with apache2 -v
. I have 2.4.18.
However according to the Apache website the latest version is 2.4.29.
Is it common practice or generally safe to upgrade to the latest version of Apache or other packages? If so how would I do that? Is there an obvious reason why I shouldn't update to the latest?
upgrade apache2
upgrade apache2
asked Nov 29 '17 at 17:23
DR01DDR01D
11517
11517
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can use the ppa https://launchpad.net/~ondrej/+archive/ubuntu/apache2 to get the latest version.
There's always some risk involved in using a ppa but this one is popular; I myself have used it for a long time without issue.
Since you already have Apache installed, you can get the update by
sudo add-apt-repository ppa:ondrej/apache2
sudo apt update
sudo apt upgrade
Thanks so much! I'll use the ondrej ppa. One question, how often does Ubuntu update it's repository? By that I mean if I use the PPA am I typically weeks, months or years ahead of when Ubuntu updates a package?
– DR01D
Nov 29 '17 at 18:32
I couldn't answer that without some research; when I first set up my website, I looked for the newest version as you are doing, found this ppa, and I've never paid any attention to what's in the official repos since then.
– Organic Marble
Nov 29 '17 at 18:51
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2faskubuntu.com%2fquestions%2f981535%2fubuntu-16-0-4-has-apache-2-4-18-in-the-cache-but-2-4-29-is-the-latest-release-i%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
You can use the ppa https://launchpad.net/~ondrej/+archive/ubuntu/apache2 to get the latest version.
There's always some risk involved in using a ppa but this one is popular; I myself have used it for a long time without issue.
Since you already have Apache installed, you can get the update by
sudo add-apt-repository ppa:ondrej/apache2
sudo apt update
sudo apt upgrade
Thanks so much! I'll use the ondrej ppa. One question, how often does Ubuntu update it's repository? By that I mean if I use the PPA am I typically weeks, months or years ahead of when Ubuntu updates a package?
– DR01D
Nov 29 '17 at 18:32
I couldn't answer that without some research; when I first set up my website, I looked for the newest version as you are doing, found this ppa, and I've never paid any attention to what's in the official repos since then.
– Organic Marble
Nov 29 '17 at 18:51
add a comment |
You can use the ppa https://launchpad.net/~ondrej/+archive/ubuntu/apache2 to get the latest version.
There's always some risk involved in using a ppa but this one is popular; I myself have used it for a long time without issue.
Since you already have Apache installed, you can get the update by
sudo add-apt-repository ppa:ondrej/apache2
sudo apt update
sudo apt upgrade
Thanks so much! I'll use the ondrej ppa. One question, how often does Ubuntu update it's repository? By that I mean if I use the PPA am I typically weeks, months or years ahead of when Ubuntu updates a package?
– DR01D
Nov 29 '17 at 18:32
I couldn't answer that without some research; when I first set up my website, I looked for the newest version as you are doing, found this ppa, and I've never paid any attention to what's in the official repos since then.
– Organic Marble
Nov 29 '17 at 18:51
add a comment |
You can use the ppa https://launchpad.net/~ondrej/+archive/ubuntu/apache2 to get the latest version.
There's always some risk involved in using a ppa but this one is popular; I myself have used it for a long time without issue.
Since you already have Apache installed, you can get the update by
sudo add-apt-repository ppa:ondrej/apache2
sudo apt update
sudo apt upgrade
You can use the ppa https://launchpad.net/~ondrej/+archive/ubuntu/apache2 to get the latest version.
There's always some risk involved in using a ppa but this one is popular; I myself have used it for a long time without issue.
Since you already have Apache installed, you can get the update by
sudo add-apt-repository ppa:ondrej/apache2
sudo apt update
sudo apt upgrade
answered Nov 29 '17 at 18:19
Organic MarbleOrganic Marble
10.7k63358
10.7k63358
Thanks so much! I'll use the ondrej ppa. One question, how often does Ubuntu update it's repository? By that I mean if I use the PPA am I typically weeks, months or years ahead of when Ubuntu updates a package?
– DR01D
Nov 29 '17 at 18:32
I couldn't answer that without some research; when I first set up my website, I looked for the newest version as you are doing, found this ppa, and I've never paid any attention to what's in the official repos since then.
– Organic Marble
Nov 29 '17 at 18:51
add a comment |
Thanks so much! I'll use the ondrej ppa. One question, how often does Ubuntu update it's repository? By that I mean if I use the PPA am I typically weeks, months or years ahead of when Ubuntu updates a package?
– DR01D
Nov 29 '17 at 18:32
I couldn't answer that without some research; when I first set up my website, I looked for the newest version as you are doing, found this ppa, and I've never paid any attention to what's in the official repos since then.
– Organic Marble
Nov 29 '17 at 18:51
Thanks so much! I'll use the ondrej ppa. One question, how often does Ubuntu update it's repository? By that I mean if I use the PPA am I typically weeks, months or years ahead of when Ubuntu updates a package?
– DR01D
Nov 29 '17 at 18:32
Thanks so much! I'll use the ondrej ppa. One question, how often does Ubuntu update it's repository? By that I mean if I use the PPA am I typically weeks, months or years ahead of when Ubuntu updates a package?
– DR01D
Nov 29 '17 at 18:32
I couldn't answer that without some research; when I first set up my website, I looked for the newest version as you are doing, found this ppa, and I've never paid any attention to what's in the official repos since then.
– Organic Marble
Nov 29 '17 at 18:51
I couldn't answer that without some research; when I first set up my website, I looked for the newest version as you are doing, found this ppa, and I've never paid any attention to what's in the official repos since then.
– Organic Marble
Nov 29 '17 at 18:51
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f981535%2fubuntu-16-0-4-has-apache-2-4-18-in-the-cache-but-2-4-29-is-the-latest-release-i%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