Ad Widget

Collapse

Accessing Zabbix server in windows server

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Faizan Rasool
    Junior Member
    • Sep 2022
    • 1

    #1

    Accessing Zabbix server in windows server

    How can I access Zabbix server on windows server ?
    I'm trying through the IP address that is given at the time of installation but couldn't succeed​
  • Bartosz Mickiewicz
    Junior Member
    • Oct 2022
    • 27

    #2
    Can you be more specific about what you are trying to do? What error you are getting when trying to access Zabbix frontend?

    Comment

    • Bartosz Mickiewicz
      Junior Member
      • Oct 2022
      • 27

      #3
      To give you some basic troubleshooting steps:
      Check on the Zabbix server is fall necessary services are running:
      Code:
      service  zabbix-serverstatus
      service zabbix-agent status
      service apache2 status <- if you are using apache as you frontend
      service mysql status <- if you are using MySQL as your backend
      Check if your frontend server is listening on HTTP or HTTPS port
      Code:
      netstat -lnp | grep -E ':80|:443'
      Last check if all previous are fine, check if the frontend works and serves content
      Code:
      curl -kL http://127.0.0.1/zabbix | grep -i zabbix
      You should get something similar to this if everything works fine.
      Click image for larger version

Name:	image.png
Views:	227
Size:	45.0 KB
ID:	452415

      Get back with the results of those checks. ​

      Comment

      Working...