{"id":18630,"date":"2020-10-16T14:53:52","date_gmt":"2020-10-16T14:53:52","guid":{"rendered":"https:\/\/made4it.com.br\/blog\/zabbix-installation-guide\/"},"modified":"2026-08-24T19:42:20","modified_gmt":"2026-08-24T19:42:20","slug":"zabbix-installation-guide","status":"publish","type":"post","link":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/","title":{"rendered":"zabbix Installation Guide"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">If you have an infrastructure, whether large or small, it is extremely important to have a monitoring system that can raise alarms when something goes wrong.  <br\/>zabbix today can be considered one of the best tools for this activity.<\/p>\n\n<p class=\"wp-block-paragraph\">Today we will explain how you can install this tool.<\/p>\n\n<p class=\"wp-block-paragraph\">To begin with, you&#8217;ll need a Linux OS to install this; in our scenario, we&#8217;re using Debian 10.<\/p>\n\n<p class=\"wp-block-paragraph\">-Obs. When creating the database we must be aware that MYSQL is no longer used, but MARIADB. <\/p>\n\n<p class=\"wp-block-paragraph\">-Link to the Zabbix repository for installation: https:\/\/www.zabbix.com\/br\/download<\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Step 01<\/strong> &#8211; Choose your platform<\/p>\n\n<ul class=\"wp-block-list\">\n<li>We must choose the Zabbix version that we will use, in this case we use 5.0 LTS.<\/li>\n\n\n\n<li>Soon after, you must choose the OS Distribution and Version, in this case we use Debian, version 10.<\/li>\n\n\n\n<li>Finally, we will choose the Database and Web Server, which in this case was chosen MySQL as the Database and for Web Server, Apache.<\/li>\n<\/ul>\n\n<p class=\"wp-block-paragraph\"><strong>Step 02<\/strong> &#8211; Install and configure the Zabbix server for your platform<\/p>\n\n<p class=\"wp-block-paragraph\">a. Install the Zabbix repository <\/p>\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n<p class=\"wp-block-paragraph\">  # wget <a href=\"https:\/\/repo.zabbix.com\/zabbix\/5.0\/debian\/pool\/main\/z\/zabbix-\">https:\/\/repo.zabbix.com\/zabbix\/5.0\/debian\/pool\/main\/z\/zabbix-<\/a> release\/zabbix-release_5.0-1+buster_all.deb<\/p>\n\n<p class=\"wp-block-paragraph\">  # dpkg -i zabbix-release_5.0-1+buster_all.deb<\/p>\n\n<p class=\"wp-block-paragraph\">  # apt update<\/p>\n\n<p class=\"wp-block-paragraph\">b. Install the Zabbix server, frontend and agent <\/p>\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n<p class=\"wp-block-paragraph\">  # apt install zabbix-server-mysql zabbix-frontend-php zabbix-apache- conf zabbix-agent<\/p>\n\n<p class=\"wp-block-paragraph\">c. Create initial database <\/p>\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n<p class=\"wp-block-paragraph\">  Perform the following steps on your database host.<\/p>\n\n<p class=\"wp-block-paragraph\">  # mysql -uroot -p<\/p>\n\n<p class=\"wp-block-paragraph\">  password<\/p>\n\n<p class=\"wp-block-paragraph\">  mysql&gt; create database zabbix character set utf8 collate utf8_bin;<\/p>\n\n<p class=\"wp-block-paragraph\">  mysql&gt; create user zabbix@localhost identified by &#8216;password&#8217;;<\/p>\n\n<p class=\"wp-block-paragraph\">  mysql&gt; grant all privileges on zabbix.* to zabbix@localhost;<\/p>\n\n<p class=\"wp-block-paragraph\">  mysql&gt; quit;<\/p>\n\n<p class=\"wp-block-paragraph\">  On the Zabbix server, import the initial schema and data. You will be prompted to enter the password you created earlier. <\/p>\n\n<p class=\"wp-block-paragraph\">  # zcat \/usr\/share\/doc\/zabbix-server-mysql*\/create.sql.gz | mysql -uzabbix -p zabbix<\/p>\n\n<p class=\"wp-block-paragraph\">d. Configure the database for the Zabbix server <\/p>\n\n<p class=\"wp-block-paragraph\">  Edit \/etc\/zabbix\/zabbix_server.conf<\/p>\n\n<p class=\"wp-block-paragraph\">  DBPassword=password<\/p>\n\n<p class=\"wp-block-paragraph\">e. Configure PHP for the Zabbix frontend <\/p>\n\n<p class=\"wp-block-paragraph\">  Edit \/etc\/zabbix\/apache.conf, uncomment and set the correct time zone.<\/p>\n\n<p class=\"wp-block-paragraph\">  # php_value date.timezone Europe\/Riga<\/p>\n\n<p class=\"wp-block-paragraph\">f. Start the Zabbix server and agent processes <\/p>\n\n<p class=\"wp-block-paragraph\">  Start the Zabbix server and agent processes and configure them to start during system boot.<\/p>\n\n<p class=\"wp-block-paragraph\">  # systemctl restart zabbix-server zabbix-agent apache2<\/p>\n\n<p class=\"wp-block-paragraph\">  # systemctl enable zabbix-server zabbix-agent apache2<\/p>\n\n<p class=\"wp-block-paragraph\">g. Configure the Zabbix frontend <\/p>\n\n<p class=\"wp-block-paragraph\">  Connect to the installed Zabbix frontend: http:\/\/server_ip_or_name\/zabbix<br\/><br\/><\/p>\n\n<p class=\"wp-block-paragraph\"><strong>Step 03<\/strong> &#8211; Installing the frontend<\/p>\n\n<p class=\"wp-block-paragraph\"><u>Step 1:<\/u><\/p>\n\n<p class=\"wp-block-paragraph\">In your browser, open the URL for the server hosting the Zabbix web interface: http:\/\/&lt;server_ip_or_name&gt;\/zabbix<\/p>\n\n<p class=\"wp-block-paragraph\">You should now see the first screen of the web interface configuration wizard.<\/p>\n\n<figure class=\"wp-block-image aligncenter size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"550\" height=\"331\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabixx1.png\" alt=\"\" class=\"wp-image-22475\" srcset=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabixx1.png 550w, https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabixx1-300x181.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" \/><\/figure>\n\n<p class=\"wp-block-paragraph\"><u>Step 2:<\/u><\/p>\n\n<p class=\"wp-block-paragraph\">Make sure that all prerequisites are met.<\/p>\n\n<p class=\"wp-block-paragraph\">Optional prerequisites may be present in the list. An optional prerequisite will be shown in orange and have the status of Alert. Failure of this type of parameter does not block the setup wizard.  <\/p>\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" width=\"550\" height=\"331\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabixx2.png\" alt=\"\" class=\"wp-image-22477\" srcset=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabixx2.png 550w, https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabixx2-300x181.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" \/><\/figure>\n\n<p class=\"wp-block-paragraph\"><u>Step 3<\/u>:<\/p>\n\n<p class=\"wp-block-paragraph\">Enter the connection details to the Zabbix database. The bank should have already been created. <\/p>\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" width=\"550\" height=\"331\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix3.png\" alt=\"\" class=\"wp-image-22478\" srcset=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix3.png 550w, https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix3-300x181.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" \/><\/figure>\n\n<p class=\"wp-block-paragraph\"><u>Step 4<\/u>:<\/p>\n\n<p class=\"wp-block-paragraph\">Enter the Zabbix Server data.<\/p>\n\n<figure class=\"wp-block-image aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"550\" height=\"331\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabixx4.png\" alt=\"\" class=\"wp-image-22479\" srcset=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabixx4.png 550w, https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabixx4-300x181.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" \/><\/figure>\n\n<p class=\"wp-block-paragraph\"><u>Step 5<\/u>:<\/p>\n\n<p class=\"wp-block-paragraph\">Review of settings.<\/p>\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"550\" height=\"331\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix5.png\" alt=\"\" class=\"wp-image-22480\" srcset=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix5.png 550w, https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix5-300x181.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" \/><\/figure>\n\n<p class=\"wp-block-paragraph\"><u>Step 6<\/u>:<\/p>\n\n<p class=\"wp-block-paragraph\">Download the generated configuration file and install it into the conf\/ directory that exists where you copied your Zabbix PHP files to.<\/p>\n\n<figure class=\"wp-block-image aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"550\" height=\"333\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix6.png\" alt=\"\" class=\"wp-image-22481\" srcset=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix6.png 550w, https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix6-300x182.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" \/><\/figure>\n\n<figure class=\"wp-block-image aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"350\" height=\"238\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix6.1.png\" alt=\"\" class=\"wp-image-22482\" srcset=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix6.1.png 350w, https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix6.1-300x204.png 300w\" sizes=\"(max-width: 350px) 100vw, 350px\" \/><\/figure>\n\n<p class=\"wp-block-paragraph\"><u>Step 7<\/u>:<\/p>\n\n<p class=\"wp-block-paragraph\">Finish the installation.<\/p>\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"550\" height=\"331\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix7.png\" alt=\"\" class=\"wp-image-22483\" srcset=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix7.png 550w, https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix7-300x181.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" \/><\/figure>\n\n<p class=\"wp-block-paragraph\"><u>Step 8<\/u>:<\/p>\n\n<p class=\"wp-block-paragraph\">The Zabbix web interface is ready for use! The default user and password are: Admin \/ zabbix. <\/p>\n\n<figure class=\"wp-block-image aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"350\" height=\"390\" src=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix8.png\" alt=\"\" class=\"wp-image-22484\" srcset=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix8.png 350w, https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix8-269x300.png 269w\" sizes=\"(max-width: 350px) 100vw, 350px\" \/><\/figure>\n\n<p>We hope you have managed to install it. If you have any problems or questions, please contact us.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you have an infrastructure, whether large or small, it is extremely important to have a monitoring system that can sound alarms when something goes wrong.<\/p>\n","protected":false},"author":5,"featured_media":18631,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[31],"tags":[],"class_list":["post-18630","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-nao-categorizado"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"If you have an infrastructure, whether large or small, it is extremely important to have a monitoring system that can sound alarms when something goes wrong.\" \/>\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\/zabbix-installation-guide\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Made4it - Solu\u00e7\u00f5es de TI para Empresas e ISPs\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"zabbix Installation Guide - Made4it\" \/>\n\t\t<meta property=\"og:description\" content=\"If you have an infrastructure, whether large or small, it is extremely important to have a monitoring system that can sound alarms when something goes wrong.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/\" \/>\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=\"2020-10-16T14:53:52+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-08-24T19:42:20+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"zabbix Installation Guide - Made4it\" \/>\n\t\t<meta name=\"twitter:description\" content=\"If you have an infrastructure, whether large or small, it is extremely important to have a monitoring system that can sound alarms when something goes wrong.\" \/>\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\\\/zabbix-installation-guide\\\/#blogposting\",\"name\":\"zabbix Installation Guide - Made4it\",\"headline\":\"zabbix Installation Guide\",\"author\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/zabbix_logo_500x131.png\",\"width\":500,\"height\":131,\"caption\":\"zabbix logo 500x131\"},\"datePublished\":\"2020-10-16T14:53:52-03:00\",\"dateModified\":\"2026-08-24T19:42:20-03:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/zabbix-installation-guide\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/zabbix-installation-guide\\\/#webpage\"},\"articleSection\":\"N\\u00e3o categorizado, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/zabbix-installation-guide\\\/#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\\\/nao-categorizado\\\/#listItem\",\"name\":\"N\\u00e3o categorizado\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/nao-categorizado\\\/#listItem\",\"position\":2,\"name\":\"N\\u00e3o categorizado\",\"item\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/nao-categorizado\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/zabbix-installation-guide\\\/#listItem\",\"name\":\"zabbix Installation Guide\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/zabbix-installation-guide\\\/#listItem\",\"position\":3,\"name\":\"zabbix Installation Guide\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/nao-categorizado\\\/#listItem\",\"name\":\"N\\u00e3o categorizado\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\",\"name\":\"Made4it\",\"description\":\"Solu\\u00e7\\u00f5es de TI para Empresas e ISPs\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"telephone\":\"+5543984854013\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/logomade4it.png\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/zabbix-installation-guide\\\/#organizationLogo\",\"width\":87,\"height\":27},\"image\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/zabbix-installation-guide\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.instagram.com\\\/made4it\\\/\"]},{\"@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\\\/zabbix-installation-guide\\\/#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\\\/zabbix-installation-guide\\\/#webpage\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/zabbix-installation-guide\\\/\",\"name\":\"zabbix Installation Guide - Made4it\",\"description\":\"If you have an infrastructure, whether large or small, it is extremely important to have a monitoring system that can sound alarms when something goes wrong.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/zabbix-installation-guide\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/zabbix_logo_500x131.png\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/zabbix-installation-guide\\\/#mainImage\",\"width\":500,\"height\":131,\"caption\":\"zabbix logo 500x131\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/zabbix-installation-guide\\\/#mainImage\"},\"datePublished\":\"2020-10-16T14:53:52-03:00\",\"dateModified\":\"2026-08-24T19:42:20-03:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"name\":\"Made4it\",\"description\":\"Solu\\u00e7\\u00f5es de TI para Empresas e ISPs\",\"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":"zabbix Installation Guide - Made4it","description":"If you have an infrastructure, whether large or small, it is extremely important to have a monitoring system that can sound alarms when something goes wrong.","canonical_url":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/#blogposting","name":"zabbix Installation Guide - Made4it","headline":"zabbix Installation Guide","author":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"publisher":{"@id":"https:\/\/made4it.com.br\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix_logo_500x131.png","width":500,"height":131,"caption":"zabbix logo 500x131"},"datePublished":"2020-10-16T14:53:52-03:00","dateModified":"2026-08-24T19:42:20-03:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/#webpage"},"isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/#webpage"},"articleSection":"N\u00e3o categorizado, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/#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\/nao-categorizado\/#listItem","name":"N\u00e3o categorizado"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/nao-categorizado\/#listItem","position":2,"name":"N\u00e3o categorizado","item":"https:\/\/made4it.com.br\/en\/blog\/category\/nao-categorizado\/","nextItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/#listItem","name":"zabbix Installation Guide"},"previousItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/#listItem","position":3,"name":"zabbix Installation Guide","previousItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/nao-categorizado\/#listItem","name":"N\u00e3o categorizado"}}]},{"@type":"Organization","@id":"https:\/\/made4it.com.br\/en\/#organization","name":"Made4it","description":"Solu\u00e7\u00f5es de TI para Empresas e ISPs","url":"https:\/\/made4it.com.br\/en\/","telephone":"+5543984854013","logo":{"@type":"ImageObject","url":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png","@id":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/#organizationLogo","width":87,"height":27},"image":{"@id":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/#organizationLogo"},"sameAs":["https:\/\/www.instagram.com\/made4it\/"]},{"@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\/zabbix-installation-guide\/#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\/zabbix-installation-guide\/#webpage","url":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/","name":"zabbix Installation Guide - Made4it","description":"If you have an infrastructure, whether large or small, it is extremely important to have a monitoring system that can sound alarms when something goes wrong.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/#website"},"breadcrumb":{"@id":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/#breadcrumblist"},"author":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"creator":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/made4it.com.br\/wp-content\/uploads\/2020\/10\/zabbix_logo_500x131.png","@id":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/#mainImage","width":500,"height":131,"caption":"zabbix logo 500x131"},"primaryImageOfPage":{"@id":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/#mainImage"},"datePublished":"2020-10-16T14:53:52-03:00","dateModified":"2026-08-24T19:42:20-03:00"},{"@type":"WebSite","@id":"https:\/\/made4it.com.br\/en\/#website","url":"https:\/\/made4it.com.br\/en\/","name":"Made4it","description":"Solu\u00e7\u00f5es de TI para Empresas e ISPs","inLanguage":"en-US","publisher":{"@id":"https:\/\/made4it.com.br\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"Made4it - Solu\u00e7\u00f5es de TI para Empresas e ISPs","og:type":"article","og:title":"zabbix Installation Guide - Made4it","og:description":"If you have an infrastructure, whether large or small, it is extremely important to have a monitoring system that can sound alarms when something goes wrong.","og:url":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/","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":"2020-10-16T14:53:52+00:00","article:modified_time":"2026-08-24T19:42:20+00:00","twitter:card":"summary_large_image","twitter:title":"zabbix Installation Guide - Made4it","twitter:description":"If you have an infrastructure, whether large or small, it is extremely important to have a monitoring system that can sound alarms when something goes wrong.","twitter:image":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png"},"aioseo_meta_data":{"post_id":"18630","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"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":"","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":"BlogPosting","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":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":{"subject":"","preview":"","content":""},"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"breadcrumb_settings":null,"seo_analyzer_scan_date":null,"created":"2026-06-29 19:40:18","updated":"2026-08-24 20:10:15","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"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\/nao-categorizado\/\" title=\"N\u00e3o categorizado\">N\u00e3o categorizado<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tzabbix Installation Guide\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/made4it.com.br\/en\/"},{"label":"N\u00e3o categorizado","link":"https:\/\/made4it.com.br\/en\/blog\/category\/nao-categorizado\/"},{"label":"zabbix Installation Guide","link":"https:\/\/made4it.com.br\/en\/blog\/zabbix-installation-guide\/"}],"_links":{"self":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18630","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=18630"}],"version-history":[{"count":2,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18630\/revisions"}],"predecessor-version":[{"id":22505,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/18630\/revisions\/22505"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/media\/18631"}],"wp:attachment":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/media?parent=18630"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/categories?post=18630"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/tags?post=18630"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}