{"id":19244,"date":"2022-03-29T13:58:46","date_gmt":"2022-03-29T13:58:46","guid":{"rendered":"https:\/\/made4it.com.br\/blog\/how-to-configure-zabbix-6-0-lts\/"},"modified":"2026-07-01T15:16:09","modified_gmt":"2026-07-01T15:16:09","slug":"how-to-configure-zabbix-6-0-lts","status":"publish","type":"post","link":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/","title":{"rendered":"How to configure Zabbix 6.0 LTS"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Hey everyone, how&#8217;s it going? My name is Henrique; I&#8217;m a consultant at Made4it and part of the infrastructure and servers team. Today we\u2019re going to learn a little about Zabbix, and I\u2019ll give you an overview of what Zabbix is, how the tool works, and also show you how to install and configure a Zabbix server.  <\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image.png\"><img decoding=\"async\" src=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image.png\" alt=\"\" class=\"wp-image-2062\"\/><\/a><\/figure>\n\n<p class=\"wp-block-paragraph\">For those who don&#8217;t know, Zabbix is \u200b\u200ba totally open source monitoring solution for companies of any size.<\/p>\n\n<p class=\"has-text-align-center wp-block-paragraph\"><strong>What does the Zabbix tool do?<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">\u2192 Provides health monitoring of servers, networks, applications and services through parameters and metrics.<\/p>\n\n<p class=\"wp-block-paragraph\">\u2192 It also provides a flexible mechanism for sending customized notifications about detected alerts and events and we can send these notifications via email, Telegram, SMS and even opening a ticket in HelpDesk systems.<\/p>\n\n<p class=\"wp-block-paragraph\">\u2192 Reporting and data visualization based on stored data for analysis and decision making.<\/p>\n\n<p class=\"wp-block-paragraph\">\u2192 Supports polling and trapping<\/p>\n\n<p class=\"wp-block-paragraph\">\u21d2 Polling: Zabbix sends requests through configured metrics<\/p>\n\n<p class=\"wp-block-paragraph\">\u21d2 Trapping: Zabbix receives the information through the configured metrics<\/p>\n\n<p class=\"wp-block-paragraph\">\u2192 It has a graphical interface for viewing and configuring the monitoring (devices to be monitored \u2192 applications, servers and services)<\/p>\n\n<p class=\"wp-block-paragraph\">\u2192 Support is provided by Zabbix SIA and also by official partners; Made4it recently became an official Zabbix partner.<\/p>\n\n<p class=\"has-text-align-center wp-block-paragraph\"><strong>Zabbix version 6.0 LTS<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Recently, Zabbix was updated to version 6.0 LTS, which has several new features such as: Kubernets Monitoring, Business Service at a completely different level, High Availability Cluster (HA Cluster) native, Advanced Service SLA Calculation Logic , Machine Learning.<\/p>\n\n<p class=\"wp-block-paragraph\">Follow the link for a deeper reading about the 6.0 LTS update: <a class=\"rank-math-link\" href=\"https:\/\/www.zabbix.com\/br\/whats_new_6_0#business_service_monitoring\">https:\/\/www.zabbix.com\/br\/whats_new_6_0#business_service_monitoring<\/a><\/p>\n\n<p class=\"has-text-align-center wp-block-paragraph\"><strong>Requirements for installing Zabbix 6.0 LTS <\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">In this tutorial, we use a virtual machine running Debian 11 with the following specifications: 4 GB of RAM, 2 vCPUs, and 50 GB of disk space, which is more than enough for a simple installation for case studies. Our installation will be all-in-one, meaning everything will be on a single server (database, Zabbix Server, and Zabbix Frontend). <\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-1.png\"><img decoding=\"async\" src=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-1.png\" alt=\"\" class=\"wp-image-2063\"\/><\/a><\/figure>\n\n<p class=\"has-text-align-center wp-block-paragraph\"><strong>Installation<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">Here are the commands we used in the installation video: <\/p>\n\n<ul class=\"wp-block-list\">\n<li>Installation of utilities and zabbix-release package.<\/li>\n<\/ul>\n\n<pre class=\"wp-block-code\"><code>  #Instala\u00e7\u00e3o dos utilit\u00e1rios\napt install vim sudo curl -y\n#Acesso ao diret\u00f3rio \/tmp\ncd \/tmp\/\n#Baixar o reposit\u00f3rio zabbix-releas\n\nwget https:\/\/repo.zabbix.com\/zabbix\/6.0\/debian\/pool\/main\/z\/zabbix-release\/zabbix-rele\nase_6.0-1+debian11_all.deb\n#Instalando o reposit\u00f3rio zabbix-release\napt install .\/zabbix-release_6.0-1+debian11_all.deb\n#Update e upgrade no sistema\napt update; apt upgrade -y<\/code><\/pre>\n\n<ul class=\"wp-block-list\">\n<li>Postgres database installation<\/li>\n<\/ul>\n\n<pre class=\"wp-block-code\"><code>#Instale os pacotes necess\u00e1rios para o banco de dados apt install postgresql postgresql-contrib -y\n\n#Acessamos o usu\u00e1rio do postgres e entramos no banco e dados su - postgres\npsql\n\n#Definindo a senha do Postgres postgres=# \\password postgres\nDigite nova senha para postgres: &lt;SENHA POSTGRES&gt; Digite-a novamente: &lt;SENHA POSTGRES&gt;\npostgres=# \\q\n$ exit\n<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Now we&#8217;ve adjusted the Postgres ph_hba.conf file so that any change in the database will require the password that we just defined.<\/p>\n\n<pre class=\"wp-block-code\"><code>#Edite o arquivo pg_hba.conf\nvim \/etc\/postgresql\/13\/main\/pg_hba.conf\n\n#Localize as seguintes linhas:\nlocal all postgres peer\nlocal all all peer\n\n#Altere \"peer\" para \"md5\"\nlocal all postgres md5\nlocal all all md5\n<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Restart postgres<\/p>\n\n<pre class=\"wp-block-code\"><code>#Restart no postgres\nsystemctl restart postgresql<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Installation of Zabbix Server<\/p>\n\n<pre class=\"wp-block-code\"><code>#Instala\u00e7\u00e3o dos pacotes para o zabbix server\napt install zabbix-server-pgsql php-pgsql zabbix-sql-scripts zabbix-agent -y\n\n#Criar o usu\u00e1rio\/senha do Zabbix no Postgres su - postgres\ncreateuser --pwprompt zabbix\nDigite a senha para a nova role: &lt;SENHA ZABBIX&gt; Digite-a novamente: &lt;SENHA ZABBIX&gt;\nSenha: &lt;SENHA POSTGRES&gt;\n\n#Criar o banco de dados do Zabbix. Ir\u00e1 solicitar a senha do Postgres. createdb -O zabbix zabbix\nSenha: &lt;SENHA POSTGRES&gt;\n\n#Importamos o schema inicial e os dados.\nzcat \/usr\/share\/doc\/zabbix-sql-scripts\/postgresql\/server.sql.gz | psql -U zabbix -d z abbix &amp;&gt;\/dev\/null\nSenha para usu\u00e1rio zabbix: : &lt;SENHA ZABBIX&gt;\nexit\n<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">After that, we add our Zabbix user password in the configuration file. Search for #DBPassword= uncomment and add your password <\/p>\n\n<pre class=\"wp-block-code\"><code>vim \/etc\/zabbix\/zabbix_server.conf\n#...\nDBPassword=&lt;SENHA ZABBIX&gt;\n#...\n<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Installation of Zabbix Frontend<\/p>\n\n<pre class=\"wp-block-code\"><code>#Instala\u00e7\u00e3o dos pacotes necess\u00e1rios para o Zabbix Frontend\napt install nginx zabbix-frontend-php zabbix-nginx-conf php-fpm -y\n<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Now, we tweak the Zabbix web config file<\/p>\n\n<pre class=\"wp-block-code\"><code>#Editando o arquivo de configura\u00e7\u00e3o WEB do Zabbix vim \/etc\/nginx\/conf.d\/zabbix.conf\n\n#Descomente a linha \"listen\" para caso queira alterar a porta de acesso WEB do Zabbi x, por padr\u00e3o \u00e9 a porta 80.\n# Descomente a linha \"server_name\" e adicione o IP do seu servidor.\nserver {\nlisten 80; server_name X.X.X.X;\n<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Now we restart our services<\/p>\n\n<pre class=\"wp-block-code\"><code>#Habilite os servi\u00e7os para que eles iniciem em caso de reboot systemctl enable postgresql nginx zabbix-server.service\n\n#Reinicie os servi\u00e7os\nsystemctl restart postgresql nginx zabbix-server.service\n<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\"><em><strong>Done! Now all you have to do is access it via the WEB and finish the configuration. <\/strong><\/em><\/p>\n\n<p class=\"has-text-align-center wp-block-paragraph\"><strong>Installation and configuration via WEB<\/strong><\/p>\n\n<p class=\"wp-block-paragraph\">\u2192 Go to http:\/\/IP_SERVIDOR\/zabbix in your browser<\/p>\n\n<p class=\"wp-block-paragraph\">\u2192 Select the language you want, in this case, I selected &#8220;Portuguese (pt_BR)\u201d<\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-2.png\"><img decoding=\"async\" src=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-2.png\" alt=\"\" class=\"wp-image-2064\"\/><\/a><\/figure>\n\n<p class=\"wp-block-paragraph\">\u2192 Checking the prerequisites, if everything is OK, proceed.<\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-3.png\"><img decoding=\"async\" src=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-3.png\" alt=\"\" class=\"wp-image-2065\"\/><\/a><\/figure>\n\n<p class=\"wp-block-paragraph\">\u2192 On the next screen, add:<\/p>\n\n<ol class=\"wp-block-list\">\n<li>The database name<\/li>\n\n\n\n<li>Zabbix user<\/li>\n\n\n\n<li>Zabbix user password<\/li>\n<\/ol>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-4.png\"><img decoding=\"async\" src=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-4.png\" alt=\"\" class=\"wp-image-2066\"\/><\/a><\/figure>\n\n<p class=\"wp-block-paragraph\">\u2192 Define a name for the server<\/p>\n\n<p class=\"wp-block-paragraph\">\u2192 Also select a &#8220;timezone&#8221;, in this case, we add America\/Sao_Paulo<\/p>\n\n<p class=\"wp-block-paragraph\">\u2192 Choose a theme (we leave it as default)<\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-5.png\"><img decoding=\"async\" src=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-5.png\" alt=\"\" class=\"wp-image-2067\"\/><\/a><\/figure>\n\n<p class=\"wp-block-paragraph\">\u2192 Summary\/check of settings from previous screens.<\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-6.png\"><img decoding=\"async\" src=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-6.png\" alt=\"\" class=\"wp-image-2068\"\/><\/a><\/figure>\n\n<p class=\"wp-block-paragraph\">\u2192 Installation completed!<\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-7.png\"><img decoding=\"async\" src=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-7.png\" alt=\"\" class=\"wp-image-2069\"\/><\/a><\/figure>\n\n<p class=\"wp-block-paragraph\">After completing the steps above, you will be redirected to the login screen. By default, the credentials are: <\/p>\n\n<ul class=\"wp-block-list\">\n<li>User: admin<\/li>\n\n\n\n<li>Password: zabbix<\/li>\n<\/ul>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-8.png\"><img decoding=\"async\" src=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-8.png\" alt=\"\" class=\"wp-image-2070\"\/><\/a><\/figure>\n\n<p class=\"wp-block-paragraph\"><strong><em>\u2192 Completed installation and 100% functional Zabbix.<\/em><\/strong><\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-9.png\"><img decoding=\"async\" src=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image-9.png\" alt=\"\" class=\"wp-image-2071\"\/><\/a><\/figure>\n\n<p class=\"wp-block-paragraph\">You can follow the configuration video on our youtube channel and if you still have questions about the configuration or the tool, please contact our team.<\/p>\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe title=\"Como configurar Zabbix 6.0 - Tutorial f\u00e1cil - Made4it\" width=\"800\" height=\"450\" src=\"https:\/\/www.youtube.com\/embed\/Ed2I9CVggyc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n\n<p class=\"wp-block-paragraph\">If you need assistance with installing or configuring Zabbix, <a href=\"https:\/\/api.whatsapp.com\/send?phone=43988477972\" target=\"_blank\" rel=\"noopener\" title=\"\">please contact us!<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hey everyone, how&#8217;s it going? My name is Henrique; I&#8217;m a consultant at Made4it and part of the infrastructure and servers team. Today we\u2019re going to learn a little about Zabbix, and I\u2019ll give you an overview of what Zabbix is, how the tool works, and also show you how to install and configure a Zabbix server. For those who don&#8217;t know, Zabbix is \u200b\u200ba totally open source monitoring solution for companies of any size. What does the Zabbix tool do? \u2192 Provides health monitoring of servers, networks, applications and services through parameters and metrics. \u2192 It also provides a flexible mechanism for sending customized notifications about detected alerts and events and we can send these notifications via email, Telegram, SMS and even opening a ticket in HelpDesk systems. \u2192 Reporting and data visualization based on stored data for analysis and decision making. \u2192 Supports polling and trapping \u21d2 Polling: Zabbix sends requests through configured metrics \u21d2 Trapping: Zabbix receives the information through the configured metrics \u2192 It has a graphical interface for viewing and configuring the monitoring (devices to be monitored \u2192 applications, servers and services) \u2192 Support is provided by Zabbix SIA and also by official partners; Made4it recently became an official Zabbix partner. Zabbix version 6.0 LTS Recently, Zabbix was updated to version 6.0 LTS, which has several new features such as: Kubernets Monitoring, Business Service at a completely different level, High Availability Cluster (HA Cluster) native, Advanced Service SLA Calculation Logic , Machine Learning. Follow the link for a deeper reading about the 6.0 LTS update: https:\/\/www.zabbix.com\/br\/whats_new_6_0#business_service_monitoring Requirements for installing Zabbix 6.0 LTS In this tutorial, we use a virtual machine running Debian 11 with the following specifications: 4 GB of RAM, 2 vCPUs, and 50 GB of disk space, which is more than enough for a simple installation for case studies. Our installation will be all-in-one, meaning everything will be on a single server (database, Zabbix Server, and Zabbix Frontend). Installation Here are the commands we used in the installation video: Now we&#8217;ve adjusted the Postgres ph_hba.conf file so that any change in the database will require the password that we just defined. Restart postgres Installation of Zabbix Server After that, we add our Zabbix user password in the configuration file. Search for #DBPassword= uncomment and add your password Installation of Zabbix Frontend Now, we tweak the Zabbix web config file Now we restart our services Done! Now all you have to do is access it via the WEB and finish the configuration. Installation and configuration via WEB \u2192 Go to http:\/\/IP_SERVIDOR\/zabbix in your browser \u2192 Select the language you want, in this case, I selected &#8220;Portuguese (pt_BR)\u201d \u2192 Checking the prerequisites, if everything is OK, proceed. \u2192 On the next screen, add: \u2192 Define a name for the server \u2192 Also select a &#8220;timezone&#8221;, in this case, we add America\/Sao_Paulo \u2192 Choose a theme (we leave it as default) \u2192 Summary\/check of settings from previous screens. \u2192 Installation completed! After completing the steps above, you will be redirected to the login screen. By default, the credentials are: \u2192 Completed installation and 100% functional Zabbix. You can follow the configuration video on our youtube channel and if you still have questions about the configuration or the tool, please contact our team. If you need assistance with installing or configuring Zabbix, please contact us!<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1213],"tags":[],"class_list":["post-19244","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Hey everyone, how&#039;s it going? My name is Henrique; I&#039;m a consultant at Made4it and part of the infrastructure and servers team. Today we\u2019re going to learn a little about Zabbix, and I\u2019ll give you an overview of what Zabbix is, how the tool works, and also show you how to install and configure a\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Made4it\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Made4it -\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to configure Zabbix 6.0 LTS - Made4it\" \/>\n\t\t<meta property=\"og:description\" content=\"Hey everyone, how&#039;s it going? My name is Henrique; I&#039;m a consultant at Made4it and part of the infrastructure and servers team. Today we\u2019re going to learn a little about Zabbix, and I\u2019ll give you an overview of what Zabbix is, how the tool works, and also show you how to install and configure a\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"87\" \/>\n\t\t<meta property=\"og:image:height\" content=\"27\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2022-03-29T13:58:46+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-07-01T15:16:09+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to configure Zabbix 6.0 LTS - Made4it\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Hey everyone, how&#039;s it going? My name is Henrique; I&#039;m a consultant at Made4it and part of the infrastructure and servers team. Today we\u2019re going to learn a little about Zabbix, and I\u2019ll give you an overview of what Zabbix is, how the tool works, and also show you how to install and configure a\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-zabbix-6-0-lts\\\/#blogposting\",\"name\":\"How to configure Zabbix 6.0 LTS - Made4it\",\"headline\":\"How to configure Zabbix 6.0 LTS\",\"author\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.made4it.com.br\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/image.png\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-zabbix-6-0-lts\\\/#articleImage\"},\"datePublished\":\"2022-03-29T13:58:46+00:00\",\"dateModified\":\"2026-07-01T15:16:09+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-zabbix-6-0-lts\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-zabbix-6-0-lts\\\/#webpage\"},\"articleSection\":\"Uncategorized\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-zabbix-6-0-lts\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/uncategorized\\\/#listItem\",\"name\":\"Uncategorized\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/uncategorized\\\/#listItem\",\"position\":2,\"name\":\"Uncategorized\",\"item\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/uncategorized\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-zabbix-6-0-lts\\\/#listItem\",\"name\":\"How to configure Zabbix 6.0 LTS\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-zabbix-6-0-lts\\\/#listItem\",\"position\":3,\"name\":\"How to configure Zabbix 6.0 LTS\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/uncategorized\\\/#listItem\",\"name\":\"Uncategorized\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\",\"name\":\"Made4it\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/logomade4it.png\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-zabbix-6-0-lts\\\/#organizationLogo\",\"width\":87,\"height\":27},\"image\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-zabbix-6-0-lts\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/\",\"name\":\"Made4it\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-zabbix-6-0-lts\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9e851ee58f38006902829c03b2dc8e42c8a735a5561b807ca366ed66bd41f2ca?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Made4it\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-zabbix-6-0-lts\\\/#webpage\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-zabbix-6-0-lts\\\/\",\"name\":\"How to configure Zabbix 6.0 LTS - Made4it\",\"description\":\"Hey everyone, how's it going? My name is Henrique; I'm a consultant at Made4it and part of the infrastructure and servers team. Today we\\u2019re going to learn a little about Zabbix, and I\\u2019ll give you an overview of what Zabbix is, how the tool works, and also show you how to install and configure a\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/how-to-configure-zabbix-6-0-lts\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"datePublished\":\"2022-03-29T13:58:46+00:00\",\"dateModified\":\"2026-07-01T15:16:09+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"name\":\"Made4it\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to configure Zabbix 6.0 LTS - Made4it","description":"Hey everyone, how's it going? My name is Henrique; I'm a consultant at Made4it and part of the infrastructure and servers team. Today we\u2019re going to learn a little about Zabbix, and I\u2019ll give you an overview of what Zabbix is, how the tool works, and also show you how to install and configure a","canonical_url":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/#blogposting","name":"How to configure Zabbix 6.0 LTS - Made4it","headline":"How to configure Zabbix 6.0 LTS","author":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"publisher":{"@id":"https:\/\/made4it.com.br\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/03\/image.png","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/#articleImage"},"datePublished":"2022-03-29T13:58:46+00:00","dateModified":"2026-07-01T15:16:09+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/#webpage"},"isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/#webpage"},"articleSection":"Uncategorized"},{"@type":"BreadcrumbList","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/#listItem","position":1,"name":"Home","item":"https:\/\/made4it.com.br\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/uncategorized\/#listItem","name":"Uncategorized"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/uncategorized\/#listItem","position":2,"name":"Uncategorized","item":"https:\/\/made4it.com.br\/en\/blog\/category\/uncategorized\/","nextItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/#listItem","name":"How to configure Zabbix 6.0 LTS"},"previousItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/#listItem","position":3,"name":"How to configure Zabbix 6.0 LTS","previousItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/uncategorized\/#listItem","name":"Uncategorized"}}]},{"@type":"Organization","@id":"https:\/\/made4it.com.br\/en\/#organization","name":"Made4it","url":"https:\/\/made4it.com.br\/en\/","logo":{"@type":"ImageObject","url":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/#organizationLogo","width":87,"height":27},"image":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author","url":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/","name":"Made4it","image":{"@type":"ImageObject","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/9e851ee58f38006902829c03b2dc8e42c8a735a5561b807ca366ed66bd41f2ca?s=96&d=mm&r=g","width":96,"height":96,"caption":"Made4it"}},{"@type":"WebPage","@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/#webpage","url":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/","name":"How to configure Zabbix 6.0 LTS - Made4it","description":"Hey everyone, how's it going? My name is Henrique; I'm a consultant at Made4it and part of the infrastructure and servers team. Today we\u2019re going to learn a little about Zabbix, and I\u2019ll give you an overview of what Zabbix is, how the tool works, and also show you how to install and configure a","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/#website"},"breadcrumb":{"@id":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/#breadcrumblist"},"author":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"creator":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"datePublished":"2022-03-29T13:58:46+00:00","dateModified":"2026-07-01T15:16:09+00:00"},{"@type":"WebSite","@id":"https:\/\/made4it.com.br\/en\/#website","url":"https:\/\/made4it.com.br\/en\/","name":"Made4it","inLanguage":"en-US","publisher":{"@id":"https:\/\/made4it.com.br\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"Made4it -","og:type":"article","og:title":"How to configure Zabbix 6.0 LTS - Made4it","og:description":"Hey everyone, how's it going? My name is Henrique; I'm a consultant at Made4it and part of the infrastructure and servers team. Today we\u2019re going to learn a little about Zabbix, and I\u2019ll give you an overview of what Zabbix is, how the tool works, and also show you how to install and configure a","og:url":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/","og:image":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png","og:image:secure_url":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png","og:image:width":87,"og:image:height":27,"article:published_time":"2022-03-29T13:58:46+00:00","article:modified_time":"2026-07-01T15:16:09+00:00","twitter:card":"summary_large_image","twitter:title":"How to configure Zabbix 6.0 LTS - Made4it","twitter:description":"Hey everyone, how's it going? My name is Henrique; I'm a consultant at Made4it and part of the infrastructure and servers team. Today we\u2019re going to learn a little about Zabbix, and I\u2019ll give you an overview of what Zabbix is, how the tool works, and also show you how to install and configure a","twitter:image":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png"},"aioseo_meta_data":{"post_id":"19244","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_custom_url":null,"og_image_custom_fields":null,"og_image_url":null,"og_image_width":null,"og_image_height":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_image_url":null,"twitter_title":null,"twitter_description":null,"schema_type":"default","schema_type_options":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null,"created":"2026-07-01 15:16:06","updated":"2026-07-01 17:31:09"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/made4it.com.br\/en\/\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/made4it.com.br\/en\/blog\/category\/uncategorized\/\" title=\"Uncategorized\">Uncategorized<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to configure Zabbix 6.0 LTS\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/made4it.com.br\/en\/"},{"label":"Uncategorized","link":"https:\/\/made4it.com.br\/en\/blog\/category\/uncategorized\/"},{"label":"How to configure Zabbix 6.0 LTS","link":"https:\/\/made4it.com.br\/en\/blog\/how-to-configure-zabbix-6-0-lts\/"}],"_links":{"self":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/19244","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/comments?post=19244"}],"version-history":[{"count":1,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/19244\/revisions"}],"predecessor-version":[{"id":19246,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/19244\/revisions\/19246"}],"wp:attachment":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/media?parent=19244"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/categories?post=19244"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/tags?post=19244"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}