Hello
i installed ZABBIX with containers in my debian host machine, but i cant access with the web page to ZABBIX (port 8090), but i can access to Adminer and Grafana without any problems (in port 8080 and 3000)
This is my docker-compose file
All containers are running
​Please can you help me
i installed ZABBIX with containers in my debian host machine, but i cant access with the web page to ZABBIX (port 8090), but i can access to Adminer and Grafana without any problems (in port 8080 and 3000)
This is my docker-compose file
| version: '3.1' | |
| services: | |
| postgres-server: # The Postgres Database Service | |
| image: postgres:latest | |
| restart: always | |
| environment: # Username, password and database name variables | |
| POSTGRES_USER: zabbix | |
| POSTGRES_PASSWORD: zabbix | |
| POSTGRES_DB: zabbix | |
| PG_DATA: /var/lib/postgresql/data/pgdata [HASHTAG="t1040"]data[/HASHTAG] storage | |
| zabbix-server: # The main Zabbix Server Software Service | |
| image: zabbix/zabbix-server-pgsql:ubuntu-latest | |
| restart: always | |
| environment: # The Postgres database value variable | |
| POSTGRES_USER: zabbix | |
| POSTGRES_PASSWORD: zabbix | |
| POSTGRES_DB: zabbixNew | |
| ZBX_HISTORYSTORAGETYPES: log,text [HASHTAG="t17"]zabbix[/HASHTAG] configuration variables | |
| ZBX_DEBUGLEVEL: 1 | |
| ZBX_HOUSEKEEPINGFREQUENCY: 1 | |
| ZBX_MAXHOUSEKEEPERDELETE: 5000 | |
| depends_on: | |
| - postgres-server | |
| volumes: # Volumes for scripts and related files you can add | |
| - /usr/lib/zabbix/alertscripts:/usr/lib/zabbix/alertscripts | |
| zabbix-web: # The main Zabbix web UI or interface | |
| image: zabbix/zabbix-web-nginx-pgsql:ubuntu-latest | |
| restart: always | |
| environment: # Postgre database variables | |
| POSTGRES_USER: zabbix | |
| POSTGRES_PASSWORD: zabbix | |
| POSTGRES_DB: zabbixNew | |
| ZBX_SERVER_HOST: zabbix-server # Zabbix related and Php variables | |
| ZBX_POSTMAXSIZE: 64M | |
| PHP_TZ: "Asia/Kolkata" | |
| ZBX_MAXEXECUTIONTIME: 500 | |
| depends_on: | |
| - postgres-server | |
| - zabbix-server | |
| ports: # Port where Zabbix UI is available | |
| - 8090:80 | |
| zabbix-agent: # Zabbix agent service that tracks usage and send to zabbix server | |
| image: zabbix/zabbix-agent:latest | |
| privileged: true [HASHTAG="t869"]access[/HASHTAG] mode for allowing resource access | |
| network_mode: "host" | |
| restart: unless-stopped | |
| environment: | |
| - ZBX_SERVER_HOST=127.0.0.1 #the IP/Dns of Zabbix server | |
| adminer: #Optional for accessing databases | |
| image: adminer | |
| restart: always | |
| ports: | |
| - 8080:8080 | |
| grafana-xxl: #optional more functional and creative UI | |
| image: monitoringartist/grafana-xxl:latest | |
| ports: | |
| - 3000:3000 |
​Please can you help me