<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>ZABBIX Forums - Em Português y En Español</title>
		<link>https://www.zabbix.com/forum/</link>
		<description>Para discussões e questões relacionadas com Zabbix. Para debates y cuestiones relacionadas con Zabbix.</description>
		<language>en</language>
		<lastBuildDate>Thu, 28 May 2026 18:29:17 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>https://assets.zabbix.com/img/logo.png</url>
			<title>ZABBIX Forums - Em Português y En Español</title>
			<link>https://www.zabbix.com/forum/</link>
		</image>
		<item>
			<title>Zabbix Lentitud y problemas para cargar la web nuevas sesiones</title>
			<link>https://www.zabbix.com/forum/em-portugues-y-en-espanol/513852-zabbix-lentitud-y-problemas-para-cargar-la-web-nuevas-sesiones</link>
			<pubDate>Tue, 26 May 2026 20:47:54 GMT</pubDate>
			<description>Mi instalación de Zabbix 7.4.9 no esta operando correctamente y no he logrado identificar que causa tanta lentitud y que otros usuarios no puedan iniciar sesion web en otros equipos. Les comparto mi compose por si alguien me puede ayudar a determinar si tengo algo mal configurado. 
 
 
version:...</description>
			<content:encoded><![CDATA[Mi instalación de Zabbix 7.4.9 no esta operando correctamente y no he logrado identificar que causa tanta lentitud y que otros usuarios no puedan iniciar sesion web en otros equipos. Les comparto mi compose por si alguien me puede ayudar a determinar si tengo algo mal configurado.<br />
<br />
<br />
version: '3.9'<br />
<br />
services:<br />
postgres:<br />
image: postgres:15<br />
container_name: zabbix-postgres<br />
environment:<br />
POSTGRES_USER: xxxxx<br />
POSTGRES_PASSWORD:xxxx<br />
POSTGRES_DB: zabbix<br />
TZ: America/Santiago<br />
networks:<br />
- zabbix_net<br />
volumes:<br />
- ./data/postgres:/var/lib/postgresql/data<br />
restart: unless-stopped<br />
command: |<br />
postgres<br />
-c shared_buffers=2GB<br />
-c effective_cache_size=8GB<br />
-c work_mem=32MB<br />
-c maintenance_work_mem=512MB<br />
-c wal_buffers=64MB<br />
-c max_wal_size=4GB<br />
-c min_wal_size=512MB<br />
-c checkpoint_timeout=15min<br />
-c checkpoint_completion_target=0.9<br />
-c synchronous_commit=off<br />
-c random_page_cost=1.1<br />
-c effective_io_concurrency=200<br />
-c max_connections=200<br />
-c idle_session_timeout=300000<br />
-c tcp_keepalives_idle=60<br />
-c tcp_keepalives_interval=10<br />
-c tcp_keepalives_count=6<br />
<br />
zabbix-server:<br />
image: zabbix-server-pgsql:7.4.9-ubuntu<br />
container_name: zabbix-server<br />
environment:<br />
DB_SERVER_HOST: postgres<br />
POSTGRES_USER: xxxx<br />
POSTGRES_PASSWORD: xxxx<br />
POSTGRES_DB: zabbix<br />
TZ: America/Santiago<br />
<br />
# CORE<br />
ZBX_STARTPOLLERS: 30<br />
ZBX_STARTPOLLERSUNREACHABLE: 8<br />
ZBX_STARTTRAPPERS: 8<br />
ZBX_STARTPINGERS: 8<br />
ZBX_STARTDISCOVERERS: 5<br />
<br />
# DB WRITING<br />
ZBX_STARTDBSYNCERS: 6<br />
<br />
# CACHE<br />
ZBX_CACHESIZE: 512M<br />
ZBX_VALUECACHESIZE: 512M<br />
ZBX_HISTORYCACHESIZE: 512M<br />
ZBX_TRENDCACHESIZE: 256M<br />
<br />
# HOUSEKEEPING<br />
ZBX_MAXHOUSEKEEPERDELETE: 30000<br />
ZBX_HOUSEKEEPINGFREQUENCY: 3<br />
<br />
# VMware<br />
ZBX_STARTVMWARECOLLECTORS: 2<br />
ZBX_VMWARECACHESIZE: 256M<br />
ZBX_VMWARETIMEOUT: 40<br />
ZBX_VMWAREPERFFREQUENCY: 120<br />
<br />
# ODBC<br />
ZBX_STARTODBCPOLLERS: 3<br />
<br />
networks:<br />
- zabbix_net<br />
ports:<br />
- &quot;10051:10051&quot;<br />
depends_on:<br />
- postgres<br />
volumes:<br />
- ./data/zabbix_server:/var/lib/zabbix<br />
- ./logs/zabbix_server:/var/log/zabbix<br />
- ./etc/odbc.ini:/etc/odbc.ini:ro<br />
- ./etc/odbcinst.ini:/etc/odbcinst.ini:ro<br />
restart: unless-stopped<br />
<br />
zabbix-web-nginx:<br />
image: zabbix/zabbix-web-nginx-pgsql:7.4.9-ubuntu<br />
container_name: zabbix-web<br />
environment:<br />
DB_SERVER_HOST: postgres<br />
POSTGRES_USER: xxxx<br />
POSTGRES_PASSWORD: xxxx<br />
POSTGRES_DB: zabbix<br />
ZBX_SERVER_HOST: zabbix-server<br />
PHP_TZ: America/Santiago # Ajusta tu zona horaria<br />
TZ: America/Santiago<br />
PHP_FPM_PM_MAX_CHILDREN: 30<br />
PHP_FPM_PM_START_SERVERS: 5<br />
PHP_FPM_PM_MIN_SPARE_SERVERS: 5<br />
PHP_FPM_PM_MAX_SPARE_SERVERS: 15<br />
PHP_FPM_PM_MAX_REQUESTS: 200<br />
ZBX_MEMORYLIMIT: 512M<br />
ZBX_MAXEXECUTIONTIME: 300<br />
networks:<br />
- zabbix_net<br />
ports:<br />
- &quot;8080:8080&quot;<br />
- &quot;8443:8443&quot;<br />
depends_on:<br />
- zabbix-server<br />
- postgres<br />
volumes:<br />
- ./data/zabbix_web:/var/lib/zabbix<br />
- ./logs/zabbix_web:/var/log/zabbix<br />
restart: unless-stopped<br />
<br />
networks:<br />
zabbix_net:<br />
external: true<br />
 ]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/em-portugues-y-en-espanol">Em Português y En Español</category>
			<dc:creator>lopezrp</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/em-portugues-y-en-espanol/513852-zabbix-lentitud-y-problemas-para-cargar-la-web-nuevas-sesiones</guid>
		</item>
		<item>
			<title>Problema al generar reportes</title>
			<link>https://www.zabbix.com/forum/em-portugues-y-en-espanol/513808-problema-al-generar-reportes</link>
			<pubDate>Sun, 24 May 2026 21:21:06 GMT</pubDate>
			<description>Instale el módulo de reportes en mi servidor Zabbix 7.4 pero me está apareciendo el mensaje de error “Cannot accept incoming connection for peer: 192.168.158.14” 
 
Para instalar el modulo de reportes en mi servidor Oracle Linux segui este procedimiento: 
…. 
dnf install zabbix-web-service -y 
cd...</description>
			<content:encoded><![CDATA[<span style="font-family:Calibri">Instale el módulo de reportes en mi servidor Zabbix 7.4 pero me está apareciendo el mensaje de error “<span style="color:#1f2c33">Cannot accept incoming connection for peer: 192.168.158.14”</span></span><br />
<br />
<span style="font-family:Calibri">Para instalar el modulo de reportes en mi servidor Oracle Linux segui este procedimiento:</span><br />
<span style="font-family:Calibri">….</span><br />
<span style="font-family:Calibri">dnf install zabbix-web-service -y</span><br />
<span style="font-family:Calibri">cd /tmp</span><br />
<span style="font-family:Calibri">wget <a href="https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm" target="_blank">https://dl.google.com/linux/direct/g...ent_x86_64.rpm</a></span><br />
<span style="font-family:Calibri">dnf localinstall google-chrome-stable_current_x86_64.rpm -y</span><br />
<br />
<span style="font-family:Calibri">nano /etc/zabbix/zabbix_server.conf</span><br />
<span style="font-family:Calibri">WebServiceURL=http://localhost:10053/report</span><br />
<span style="font-family:Calibri">StartReportWriters=3</span><br />
<br />
<span style="font-family:Calibri">systemctl restart zabbix-server.service</span><br />
<span style="font-family:Calibri">systemctl enable zabbix-web-service.service --now</span><br />
<br />
<span style="font-family:Calibri">In the Frontend URL field, enter the full URL used to access Zabbix (e.g., <a href="http://your-server-ip/zabbix" target="_blank">http://your-server-ip/zabbix</a>).</span><br />
<span style="font-family:Calibri">…</span><br />
<br />
<span style="font-family:Calibri">Adjunto mi archivo de configuración, les agradezco su ayuda</span><br />
]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/em-portugues-y-en-espanol">Em Português y En Español</category>
			<dc:creator>Alex28</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/em-portugues-y-en-espanol/513808-problema-al-generar-reportes</guid>
		</item>
		<item>
			<title>host se queda rojo en Zabbix 7.4 con switch TP-Link SG3424P</title>
			<link>https://www.zabbix.com/forum/em-portugues-y-en-espanol/513237-host-se-queda-rojo-en-zabbix-7-4-con-switch-tp-link-sg3424p</link>
			<pubDate>Tue, 05 May 2026 00:04:43 GMT</pubDate>
			<description>· El ping desde el servidor Zabbix al switch es exitoso. 
  · He creado una nueva vista SNMP personalizada con el OID 1 como única regla incluida. 
    
  · Con SNMPv2c, el host en Zabbix se queda en rojo (no disponible). 
  · El comando snmpwalk manual desde el servidor Zabbix no obtiene respuesta...</description>
			<content:encoded><![CDATA[ <br />
  · El ping desde el servidor Zabbix al switch es exitoso.<br />
  · He creado una nueva vista SNMP personalizada con el OID 1 como única regla incluida.<br />
   <br />
  · Con SNMPv2c, el host en Zabbix se queda en rojo (no disponible).<br />
  · El comando snmpwalk manual desde el servidor Zabbix no obtiene respuesta y termina en timeout.<br />
   <br />
  · Voy a usar la comunidad public con acceso read-only.<br />
  · La vista personalizada está creada y la tengo configurada, pero no estoy usando la viewDefault.**<br />
  · El parámetro Timeout en zabbix_server.conf está en su valor por defecto (3s), no lo he modificado aún.<br />
  · El host ha sido eliminado y recreado varias veces.<br />
   <br />
  ❓ Pregunta<br />
  ¿Alguien ha logrado monitorizar un TP-Link TL-SG3424P con Zabbix 7.4 mediante SNMPv2c utilizando una vista personalizada?<br />
]]></content:encoded>
			<category domain="https://www.zabbix.com/forum/em-portugues-y-en-espanol">Em Português y En Español</category>
			<dc:creator>Motaro</dc:creator>
			<guid isPermaLink="true">https://www.zabbix.com/forum/em-portugues-y-en-espanol/513237-host-se-queda-rojo-en-zabbix-7-4-con-switch-tp-link-sg3424p</guid>
		</item>
	</channel>
</rss>
