What is the correct way to install openconnect(ocserv-0.12.3-1.el7) package on CentOs 7

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








-1















Take a look at all openconnect versions & this.



What is the correct way to install openconnect(ocserv-0.12.3) package on CentOs 7?



I tried these commands :



sudo yum -y install epel-release
sudo yum repolist enabled
sudo yum info ocserv


But it shows me version 0.12.2, not version 0.12.3!

Now how can i install version 0.12.3?










share|improve this question






























    -1















    Take a look at all openconnect versions & this.



    What is the correct way to install openconnect(ocserv-0.12.3) package on CentOs 7?



    I tried these commands :



    sudo yum -y install epel-release
    sudo yum repolist enabled
    sudo yum info ocserv


    But it shows me version 0.12.2, not version 0.12.3!

    Now how can i install version 0.12.3?










    share|improve this question


























      -1












      -1








      -1








      Take a look at all openconnect versions & this.



      What is the correct way to install openconnect(ocserv-0.12.3) package on CentOs 7?



      I tried these commands :



      sudo yum -y install epel-release
      sudo yum repolist enabled
      sudo yum info ocserv


      But it shows me version 0.12.2, not version 0.12.3!

      Now how can i install version 0.12.3?










      share|improve this question
















      Take a look at all openconnect versions & this.



      What is the correct way to install openconnect(ocserv-0.12.3) package on CentOs 7?



      I tried these commands :



      sudo yum -y install epel-release
      sudo yum repolist enabled
      sudo yum info ocserv


      But it shows me version 0.12.2, not version 0.12.3!

      Now how can i install version 0.12.3?







      centos openconnect






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 6 at 17:36









      Rui F Ribeiro

      42k1483142




      42k1483142










      asked Mar 13 at 5:36









      SilverLightSilverLight

      1551211




      1551211




















          1 Answer
          1






          active

          oldest

          votes


















          2














          As version 0.12.3 is EPEL candidate you can install it via downloading the package (RPM) and install it. Or compile it from source. But I will recommend you to install available in EPEL package and do not hurry up. The command you can use is:



          wget https://kojipkgs.fedoraproject.org//packages/ocserv/0.12.3/1.el7/x86_64/ocserv-0.12.3-1.el7.x86_64.rpm
          yum localinstall ocserv-0.12.3-1.el7.x86_64.rpm


          OF course you can install it directly via rpm but this will bring warning messages later when you use again yum



          rpm -i wget https://kojipkgs.fedoraproject.org//packages/ocserv/0.12.3/1.el7/x86_64/ocserv-0.12.3-1.el7.x86_64.rpm





          share|improve this answer























          • Thanks, teach me how did you find that rpm?

            – SilverLight
            Mar 13 at 6:03











          • @SilverLight, check you second link. And you will see RPM's there (for different platforms) And for each there is download link

            – Romeo Ninov
            Mar 13 at 6:08







          • 1





            Thanks man / I installed it like a charm...

            – SilverLight
            Mar 13 at 6:12











          • @SilverLight, in such case feel free to accept my answer :)

            – Romeo Ninov
            Mar 13 at 6:13











          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%2f506014%2fwhat-is-the-correct-way-to-install-openconnectocserv-0-12-3-1-el7-package-on-c%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









          2














          As version 0.12.3 is EPEL candidate you can install it via downloading the package (RPM) and install it. Or compile it from source. But I will recommend you to install available in EPEL package and do not hurry up. The command you can use is:



          wget https://kojipkgs.fedoraproject.org//packages/ocserv/0.12.3/1.el7/x86_64/ocserv-0.12.3-1.el7.x86_64.rpm
          yum localinstall ocserv-0.12.3-1.el7.x86_64.rpm


          OF course you can install it directly via rpm but this will bring warning messages later when you use again yum



          rpm -i wget https://kojipkgs.fedoraproject.org//packages/ocserv/0.12.3/1.el7/x86_64/ocserv-0.12.3-1.el7.x86_64.rpm





          share|improve this answer























          • Thanks, teach me how did you find that rpm?

            – SilverLight
            Mar 13 at 6:03











          • @SilverLight, check you second link. And you will see RPM's there (for different platforms) And for each there is download link

            – Romeo Ninov
            Mar 13 at 6:08







          • 1





            Thanks man / I installed it like a charm...

            – SilverLight
            Mar 13 at 6:12











          • @SilverLight, in such case feel free to accept my answer :)

            – Romeo Ninov
            Mar 13 at 6:13















          2














          As version 0.12.3 is EPEL candidate you can install it via downloading the package (RPM) and install it. Or compile it from source. But I will recommend you to install available in EPEL package and do not hurry up. The command you can use is:



          wget https://kojipkgs.fedoraproject.org//packages/ocserv/0.12.3/1.el7/x86_64/ocserv-0.12.3-1.el7.x86_64.rpm
          yum localinstall ocserv-0.12.3-1.el7.x86_64.rpm


          OF course you can install it directly via rpm but this will bring warning messages later when you use again yum



          rpm -i wget https://kojipkgs.fedoraproject.org//packages/ocserv/0.12.3/1.el7/x86_64/ocserv-0.12.3-1.el7.x86_64.rpm





          share|improve this answer























          • Thanks, teach me how did you find that rpm?

            – SilverLight
            Mar 13 at 6:03











          • @SilverLight, check you second link. And you will see RPM's there (for different platforms) And for each there is download link

            – Romeo Ninov
            Mar 13 at 6:08







          • 1





            Thanks man / I installed it like a charm...

            – SilverLight
            Mar 13 at 6:12











          • @SilverLight, in such case feel free to accept my answer :)

            – Romeo Ninov
            Mar 13 at 6:13













          2












          2








          2







          As version 0.12.3 is EPEL candidate you can install it via downloading the package (RPM) and install it. Or compile it from source. But I will recommend you to install available in EPEL package and do not hurry up. The command you can use is:



          wget https://kojipkgs.fedoraproject.org//packages/ocserv/0.12.3/1.el7/x86_64/ocserv-0.12.3-1.el7.x86_64.rpm
          yum localinstall ocserv-0.12.3-1.el7.x86_64.rpm


          OF course you can install it directly via rpm but this will bring warning messages later when you use again yum



          rpm -i wget https://kojipkgs.fedoraproject.org//packages/ocserv/0.12.3/1.el7/x86_64/ocserv-0.12.3-1.el7.x86_64.rpm





          share|improve this answer













          As version 0.12.3 is EPEL candidate you can install it via downloading the package (RPM) and install it. Or compile it from source. But I will recommend you to install available in EPEL package and do not hurry up. The command you can use is:



          wget https://kojipkgs.fedoraproject.org//packages/ocserv/0.12.3/1.el7/x86_64/ocserv-0.12.3-1.el7.x86_64.rpm
          yum localinstall ocserv-0.12.3-1.el7.x86_64.rpm


          OF course you can install it directly via rpm but this will bring warning messages later when you use again yum



          rpm -i wget https://kojipkgs.fedoraproject.org//packages/ocserv/0.12.3/1.el7/x86_64/ocserv-0.12.3-1.el7.x86_64.rpm






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 13 at 5:44









          Romeo NinovRomeo Ninov

          7,00732129




          7,00732129












          • Thanks, teach me how did you find that rpm?

            – SilverLight
            Mar 13 at 6:03











          • @SilverLight, check you second link. And you will see RPM's there (for different platforms) And for each there is download link

            – Romeo Ninov
            Mar 13 at 6:08







          • 1





            Thanks man / I installed it like a charm...

            – SilverLight
            Mar 13 at 6:12











          • @SilverLight, in such case feel free to accept my answer :)

            – Romeo Ninov
            Mar 13 at 6:13

















          • Thanks, teach me how did you find that rpm?

            – SilverLight
            Mar 13 at 6:03











          • @SilverLight, check you second link. And you will see RPM's there (for different platforms) And for each there is download link

            – Romeo Ninov
            Mar 13 at 6:08







          • 1





            Thanks man / I installed it like a charm...

            – SilverLight
            Mar 13 at 6:12











          • @SilverLight, in such case feel free to accept my answer :)

            – Romeo Ninov
            Mar 13 at 6:13
















          Thanks, teach me how did you find that rpm?

          – SilverLight
          Mar 13 at 6:03





          Thanks, teach me how did you find that rpm?

          – SilverLight
          Mar 13 at 6:03













          @SilverLight, check you second link. And you will see RPM's there (for different platforms) And for each there is download link

          – Romeo Ninov
          Mar 13 at 6:08






          @SilverLight, check you second link. And you will see RPM's there (for different platforms) And for each there is download link

          – Romeo Ninov
          Mar 13 at 6:08





          1




          1





          Thanks man / I installed it like a charm...

          – SilverLight
          Mar 13 at 6:12





          Thanks man / I installed it like a charm...

          – SilverLight
          Mar 13 at 6:12













          @SilverLight, in such case feel free to accept my answer :)

          – Romeo Ninov
          Mar 13 at 6:13





          @SilverLight, in such case feel free to accept my answer :)

          – Romeo Ninov
          Mar 13 at 6:13

















          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%2f506014%2fwhat-is-the-correct-way-to-install-openconnectocserv-0-12-3-1-el7-package-on-c%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 check contact read email or not when send email to Individual?

          Bahrain

          Postfix configuration issue with fips on centos 7; mailgun relay