Installation Zabbix











up vote
3
down vote

favorite
1












I am trying to install a Zabbix monitoring system on my Ubuntu. But when I try to install it. I get this error:



The following have unmet dependencies:
zabbix-server-mysql : Depends: libsnmp15 (>= 5.4.3~dfsg) but it is no installable
Reccomends snmptt but it is not going to be installed
Unable to correct problems, you have held broken packages.


I already tried:



apt-get update -f
apt-get install snmpd -f


but nothing seems to work, anyone has a solution for me?
Thanks










share|improve this question






















  • Were you able to find a solution? I'm also wrestling with this issue...
    – Scot
    Dec 31 '13 at 17:55










  • No I am sorry, didn't find any solution :s
    – Black Magic
    Dec 31 '13 at 17:59










  • I found a solution that may work for you...this issue arises in Ubuntu 13.10, but Zabbix 2.2 is supported in Ubuntu 12.04. If you try installing in a stock Ubuntu 12.04, you will not have this error (I just verified this).
    – Scot
    Dec 31 '13 at 23:59















up vote
3
down vote

favorite
1












I am trying to install a Zabbix monitoring system on my Ubuntu. But when I try to install it. I get this error:



The following have unmet dependencies:
zabbix-server-mysql : Depends: libsnmp15 (>= 5.4.3~dfsg) but it is no installable
Reccomends snmptt but it is not going to be installed
Unable to correct problems, you have held broken packages.


I already tried:



apt-get update -f
apt-get install snmpd -f


but nothing seems to work, anyone has a solution for me?
Thanks










share|improve this question






















  • Were you able to find a solution? I'm also wrestling with this issue...
    – Scot
    Dec 31 '13 at 17:55










  • No I am sorry, didn't find any solution :s
    – Black Magic
    Dec 31 '13 at 17:59










  • I found a solution that may work for you...this issue arises in Ubuntu 13.10, but Zabbix 2.2 is supported in Ubuntu 12.04. If you try installing in a stock Ubuntu 12.04, you will not have this error (I just verified this).
    – Scot
    Dec 31 '13 at 23:59













up vote
3
down vote

favorite
1









up vote
3
down vote

favorite
1






1





I am trying to install a Zabbix monitoring system on my Ubuntu. But when I try to install it. I get this error:



The following have unmet dependencies:
zabbix-server-mysql : Depends: libsnmp15 (>= 5.4.3~dfsg) but it is no installable
Reccomends snmptt but it is not going to be installed
Unable to correct problems, you have held broken packages.


I already tried:



apt-get update -f
apt-get install snmpd -f


but nothing seems to work, anyone has a solution for me?
Thanks










share|improve this question













I am trying to install a Zabbix monitoring system on my Ubuntu. But when I try to install it. I get this error:



The following have unmet dependencies:
zabbix-server-mysql : Depends: libsnmp15 (>= 5.4.3~dfsg) but it is no installable
Reccomends snmptt but it is not going to be installed
Unable to correct problems, you have held broken packages.


I already tried:



apt-get update -f
apt-get install snmpd -f


but nothing seems to work, anyone has a solution for me?
Thanks







monitoring snmp






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Oct 31 '13 at 7:47









Black Magic

11616




11616












  • Were you able to find a solution? I'm also wrestling with this issue...
    – Scot
    Dec 31 '13 at 17:55










  • No I am sorry, didn't find any solution :s
    – Black Magic
    Dec 31 '13 at 17:59










  • I found a solution that may work for you...this issue arises in Ubuntu 13.10, but Zabbix 2.2 is supported in Ubuntu 12.04. If you try installing in a stock Ubuntu 12.04, you will not have this error (I just verified this).
    – Scot
    Dec 31 '13 at 23:59


















  • Were you able to find a solution? I'm also wrestling with this issue...
    – Scot
    Dec 31 '13 at 17:55










  • No I am sorry, didn't find any solution :s
    – Black Magic
    Dec 31 '13 at 17:59










  • I found a solution that may work for you...this issue arises in Ubuntu 13.10, but Zabbix 2.2 is supported in Ubuntu 12.04. If you try installing in a stock Ubuntu 12.04, you will not have this error (I just verified this).
    – Scot
    Dec 31 '13 at 23:59
















Were you able to find a solution? I'm also wrestling with this issue...
– Scot
Dec 31 '13 at 17:55




Were you able to find a solution? I'm also wrestling with this issue...
– Scot
Dec 31 '13 at 17:55












No I am sorry, didn't find any solution :s
– Black Magic
Dec 31 '13 at 17:59




No I am sorry, didn't find any solution :s
– Black Magic
Dec 31 '13 at 17:59












I found a solution that may work for you...this issue arises in Ubuntu 13.10, but Zabbix 2.2 is supported in Ubuntu 12.04. If you try installing in a stock Ubuntu 12.04, you will not have this error (I just verified this).
– Scot
Dec 31 '13 at 23:59




I found a solution that may work for you...this issue arises in Ubuntu 13.10, but Zabbix 2.2 is supported in Ubuntu 12.04. If you try installing in a stock Ubuntu 12.04, you will not have this error (I just verified this).
– Scot
Dec 31 '13 at 23:59










2 Answers
2






active

oldest

votes

















up vote
0
down vote













Starting from a stock Ubuntu 12.04.3 LTS install, Zabbix can be installed in the following way:



From the Zabbix 2.2 documentation:



wget http://repo.zabbix.com/zabbix/2.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_2.2-1+precise_all.deb
dpkg -i zabbix-release_2.2-1+precise_all.deb
apt-get update


then, to install the server and web frontend:



apt-get install zabbix-server-mysql zabbix-frontend-php


to install the Zabbix agent only:



apt-get install zabbix-agent





share|improve this answer






























    up vote
    0
    down vote













    at first delete zabbix.list



    sudo rm /etc/apt/sources.list.d/zabbix.list


    and then run commands from in documentation (Answer Y or I when you run dpkg -i .....):



    # wget http://repo.zabbix.com/zabbix/2.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_2.2-1+precise_all.deb
    # sudo dpkg -i zabbix-release_2.2-1+precise_all.deb
    # sudo apt-get update





    share|improve this answer

















    • 2




      If you are going to answer an old question, you might go so far as to edit and update the answer with the current version, rather than simply copying a previous answer.
      – Elder Geek
      Apr 22 '15 at 13:32











    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',
    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%2f368906%2finstallation-zabbix%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








    up vote
    0
    down vote













    Starting from a stock Ubuntu 12.04.3 LTS install, Zabbix can be installed in the following way:



    From the Zabbix 2.2 documentation:



    wget http://repo.zabbix.com/zabbix/2.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_2.2-1+precise_all.deb
    dpkg -i zabbix-release_2.2-1+precise_all.deb
    apt-get update


    then, to install the server and web frontend:



    apt-get install zabbix-server-mysql zabbix-frontend-php


    to install the Zabbix agent only:



    apt-get install zabbix-agent





    share|improve this answer



























      up vote
      0
      down vote













      Starting from a stock Ubuntu 12.04.3 LTS install, Zabbix can be installed in the following way:



      From the Zabbix 2.2 documentation:



      wget http://repo.zabbix.com/zabbix/2.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_2.2-1+precise_all.deb
      dpkg -i zabbix-release_2.2-1+precise_all.deb
      apt-get update


      then, to install the server and web frontend:



      apt-get install zabbix-server-mysql zabbix-frontend-php


      to install the Zabbix agent only:



      apt-get install zabbix-agent





      share|improve this answer

























        up vote
        0
        down vote










        up vote
        0
        down vote









        Starting from a stock Ubuntu 12.04.3 LTS install, Zabbix can be installed in the following way:



        From the Zabbix 2.2 documentation:



        wget http://repo.zabbix.com/zabbix/2.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_2.2-1+precise_all.deb
        dpkg -i zabbix-release_2.2-1+precise_all.deb
        apt-get update


        then, to install the server and web frontend:



        apt-get install zabbix-server-mysql zabbix-frontend-php


        to install the Zabbix agent only:



        apt-get install zabbix-agent





        share|improve this answer














        Starting from a stock Ubuntu 12.04.3 LTS install, Zabbix can be installed in the following way:



        From the Zabbix 2.2 documentation:



        wget http://repo.zabbix.com/zabbix/2.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_2.2-1+precise_all.deb
        dpkg -i zabbix-release_2.2-1+precise_all.deb
        apt-get update


        then, to install the server and web frontend:



        apt-get install zabbix-server-mysql zabbix-frontend-php


        to install the Zabbix agent only:



        apt-get install zabbix-agent






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Jan 1 '14 at 5:45

























        answered Jan 1 '14 at 0:53









        Scot

        1113




        1113
























            up vote
            0
            down vote













            at first delete zabbix.list



            sudo rm /etc/apt/sources.list.d/zabbix.list


            and then run commands from in documentation (Answer Y or I when you run dpkg -i .....):



            # wget http://repo.zabbix.com/zabbix/2.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_2.2-1+precise_all.deb
            # sudo dpkg -i zabbix-release_2.2-1+precise_all.deb
            # sudo apt-get update





            share|improve this answer

















            • 2




              If you are going to answer an old question, you might go so far as to edit and update the answer with the current version, rather than simply copying a previous answer.
              – Elder Geek
              Apr 22 '15 at 13:32















            up vote
            0
            down vote













            at first delete zabbix.list



            sudo rm /etc/apt/sources.list.d/zabbix.list


            and then run commands from in documentation (Answer Y or I when you run dpkg -i .....):



            # wget http://repo.zabbix.com/zabbix/2.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_2.2-1+precise_all.deb
            # sudo dpkg -i zabbix-release_2.2-1+precise_all.deb
            # sudo apt-get update





            share|improve this answer

















            • 2




              If you are going to answer an old question, you might go so far as to edit and update the answer with the current version, rather than simply copying a previous answer.
              – Elder Geek
              Apr 22 '15 at 13:32













            up vote
            0
            down vote










            up vote
            0
            down vote









            at first delete zabbix.list



            sudo rm /etc/apt/sources.list.d/zabbix.list


            and then run commands from in documentation (Answer Y or I when you run dpkg -i .....):



            # wget http://repo.zabbix.com/zabbix/2.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_2.2-1+precise_all.deb
            # sudo dpkg -i zabbix-release_2.2-1+precise_all.deb
            # sudo apt-get update





            share|improve this answer












            at first delete zabbix.list



            sudo rm /etc/apt/sources.list.d/zabbix.list


            and then run commands from in documentation (Answer Y or I when you run dpkg -i .....):



            # wget http://repo.zabbix.com/zabbix/2.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_2.2-1+precise_all.deb
            # sudo dpkg -i zabbix-release_2.2-1+precise_all.deb
            # sudo apt-get update






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Apr 22 '15 at 13:04









            RomKazanova

            101




            101








            • 2




              If you are going to answer an old question, you might go so far as to edit and update the answer with the current version, rather than simply copying a previous answer.
              – Elder Geek
              Apr 22 '15 at 13:32














            • 2




              If you are going to answer an old question, you might go so far as to edit and update the answer with the current version, rather than simply copying a previous answer.
              – Elder Geek
              Apr 22 '15 at 13:32








            2




            2




            If you are going to answer an old question, you might go so far as to edit and update the answer with the current version, rather than simply copying a previous answer.
            – Elder Geek
            Apr 22 '15 at 13:32




            If you are going to answer an old question, you might go so far as to edit and update the answer with the current version, rather than simply copying a previous answer.
            – Elder Geek
            Apr 22 '15 at 13:32


















            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.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • 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%2f368906%2finstallation-zabbix%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

            flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

            Mangá

             ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕