Ad Widget

Collapse

Checking system zabbix??

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jalankaki
    Junior Member
    • Apr 2012
    • 5

    #1

    Checking system zabbix??

    I am still a beginner on zabbix ..
    I currently assigned to be an administrator of the system zabbix. zabbix already in the system, which is currently dormant because no one care. employee who do have resigned, so at this time I requested to take care ..
    when i look at Monitoring> dashboard> status of zabbix ..
    there is a parameter = zabbix is running, but with value = No. ..
    Is this mean the system zabbix is not running ?? how to reactivate it?

    whether this is due to be automatically or there is damage to the system? how do I check whether the agents still active at this time?

    Thank for your help..
  • Zaniwoop
    Senior Member
    • Jan 2010
    • 232

    #2
    yes, the service is not started.
    what version of Linux are you running?

    Comment

    • jalankaki
      Junior Member
      • Apr 2012
      • 5

      #3
      Ubuntu server

      Comment

      • Davidus
        Senior Member
        • Dec 2010
        • 281

        #4
        Code:
        sudo /etc/init.d/zabbix-server start
        than make sure that server was started
        Code:
        ps -aux | grep zabbix

        Comment

        • jalankaki
          Junior Member
          • Apr 2012
          • 5

          #5
          Originally posted by Davidus
          Code:
          sudo /etc/init.d/zabbix-server start
          than make sure that server was started
          Code:
          ps -aux | grep zabbix

          thank you..it works..

          Comment

          • Davidus
            Senior Member
            • Dec 2010
            • 281

            #6
            you are welcome

            Comment

            • Zaniwoop
              Senior Member
              • Jan 2010
              • 232

              #7
              you need to ensure that it starts automatically when Linux boots.
              Redhat (et al) use:

              Code:
              chkconfig --add zabbix_server
              chkconfig zabbix_server on
              I think the Ubuntu equivalent is:

              Code:
              sudo update-rc.d zabbix-server defaults

              Comment

              Working...