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...












1














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?










share|improve this question



























    1














    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?










    share|improve this question

























      1












      1








      1







      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?










      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 29 '17 at 17:23









      DR01DDR01D

      11517




      11517






















          1 Answer
          1






          active

          oldest

          votes


















          7














          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





          share|improve this answer





















          • 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











          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
          });


          }
          });














          draft saved

          draft discarded


















          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









          7














          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





          share|improve this answer





















          • 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
















          7














          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





          share|improve this answer





















          • 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














          7












          7








          7






          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





          share|improve this answer












          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






          share|improve this answer












          share|improve this answer



          share|improve this answer










          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


















          • 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


















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          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





















































          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

          Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

          How to change which sound is reproduced for terminal bell?

          Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents