{"id":3872,"date":"2019-08-10T01:55:49","date_gmt":"2019-08-09T22:55:49","guid":{"rendered":"https:\/\/kifarunix.com\/?p=3872"},"modified":"2024-03-12T07:40:53","modified_gmt":"2024-03-12T04:40:53","slug":"install-zabbix-4-x-from-sources-on-debian-10-buster","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/install-zabbix-4-x-from-sources-on-debian-10-buster\/","title":{"rendered":"Install Zabbix 4.x from Sources on Debian 10 Buster"},"content":{"rendered":"\n<p>Welcome again to our yet another guide on how to install Zabbix 4.x from sources on Debian 10 Buster. In our previous guide, we learnt how to install Zabbix from APT repos.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Installing Zabbix 4.x from Source Code on Debian<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Prerequisites<\/h3>\n\n\n\n<p>To begin with, update and upgrade your system packages.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>apt update\napt upgrade<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Setup LA(E)MP Stack<\/h3>\n\n\n\n<p>Zabbix requires LAMP\/LEMP stack in order to operate. In this guide, we are going to use LAMP stack with MariaDB 10 and PHP 7.3. Therefore, follow the command below to install LAMP Stack on Debian 10 Buster.<\/p>\n\n\n\n<p><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/install-lamp-stack-with-mariadb-10-on-debian-10-buster\/\" target=\"_blank\">Install LAMP Stack with MariaDB 10 on Debian 10 Buster<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Install Additional Packages<\/h3>\n\n\n\n<p>Once the installation of LAMP Stack is done, proceed to install additional PHP extensions and other required dependencies for the successful build of Zabbix<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>apt install build-essential libmariadb-dev libxml2-dev snmp libsnmp-dev libcurl4-openssl-dev php-gd php-xml php-bcmath php-mbstring libevent-dev libpcre3-dev libxml2-dev libmariadb-dev<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Create Zabbix Database<\/h3>\n\n\n\n<p>Login to MariaDB server and create a database and a database user for Zabbix. The database user should have all the privileges on the zabbix database.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>mysql -u root -p<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>create database zabbixdb character set utf8 collate utf8_bin;<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>grant all on zabbixdb.* to zabbixadmin@localhost identified by 'P@SSw0RD';<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>flush privileges;\nquit<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Create Zabbix User System Account<\/h3>\n\n\n\n<p>A Zabbix system account is required for running Zabbix daemons. Hence you can create it by running the command below;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sudo useradd -r -d \/var\/lib\/zabbix -s \/sbin\/nologin -M zabbix<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Download Zabbix Source Code<\/h3>\n\n\n\n<p>Navigate to <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"http:\/\/www.zabbix.com\/download_sources\" target=\"_blank\">Zabbix download page<\/a>&nbsp;and download the latest and stable Zabbix source archive. You can simply get the download link and use <strong>wget<\/strong> command download it.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>wget https:\/\/sourceforge.net\/projects\/zabbix\/files\/ZABBIX%20Latest%20Stable\/4.2.5\/zabbix-4.2.5.tar.gz -P \/tmp<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Extract Zabbix Source Code<\/h3>\n\n\n\n<p>Navigate to the directory in which you downloaded Zabbix source code and extract it.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>cd \/tmp\ntar xzf zabbix-4.2.5.tar.gz<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Configure Zabbix Sources<\/h3>\n\n\n\n<p>Navigate to extracted Zabbix source directory and run the configure script to adapt Zabbix to the system. This step may fail if one of the required dependencies is not installed. In this guide, we are going to configure Zabbix server and agent and enable support for MariaDB database backend.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>cd zabbix-4.2.5\/\n.\/configure --enable-server --enable-agent --with-mysql --enable-ipv6 --with-net-snmp --with-libcurl --with-libxml2<\/code><\/pre>\n\n\n\n<p>If the configure script completes successfully, you should see a summary of configuration.<\/p>\n\n\n\n<pre class=\"scroll-box\"><code>\n...\nConfiguration:\n\n  Detected OS:           linux-gnu\n  Install path:          \/usr\/local\n  Compilation arch:      linux\n\n  Compiler:              cc\n  Compiler flags:         -g -O2 \n\n  Library-specific flags:\n    database:               -I\/usr\/include\/mariadb -I\/usr\/include\/mariadb\/mysql   \n    libXML2:               -I\/usr\/include\/libxml2\n    Net-SNMP:               -I\/usr\/local\/include -I\/usr\/lib\/x86_64-linux-gnu\/perl\/5.28\/CORE -I\/usr\/include\/mariadb -I\/usr\/include\/mariadb\/mysql -I. -I\/usr\/include\n\n  Enable server:         yes\n  Server details:\n    With database:         MySQL\n    WEB Monitoring:        cURL\n      SSL certificates:      \/usr\/local\/share\/zabbix\/ssl\/certs\n      SSL keys:              \/usr\/local\/share\/zabbix\/ssl\/keys\n    Native Jabber:         no\n    SNMP:                  yes\n    IPMI:                  no\n    SSH:                   no\n    TLS:                   no\n    ODBC:                  no\n    Linker flags:             -L\/usr\/lib\/x86_64-linux-gnu\/        -L\/usr\/lib\/x86_64-linux-gnu         -rdynamic   \n    Libraries:               -lmariadb  -lz -ldl -lm -lpthread -lgnutls     -lxml2    -lnetsnmp   -lz -lpthread -levent    -lcurl -lm -ldl  -lresolv -lpcre \n    Configuration file:    \/usr\/local\/etc\/zabbix_server.conf\n    External scripts:      \/usr\/local\/share\/zabbix\/externalscripts\n    Alert scripts:         \/usr\/local\/share\/zabbix\/alertscripts\n    Modules:               \/usr\/local\/lib\/modules\n\n  Enable proxy:          no\n\n  Enable agent:          yes\n  Agent details:\n    TLS:                   no\n    Linker flags:                -rdynamic   \n    Libraries:              -lz -lpthread    -lcurl -lm -ldl  -lresolv -lpcre \n    Configuration file:    \/usr\/local\/etc\/zabbix_agentd.conf\n    Modules:               \/usr\/local\/lib\/modules\n\n  Enable Java gateway:   no\n\n  LDAP support:          no\n  IPv6 support:          yes\n\n***********************************************************\n*            Now run 'make install'                       *\n*                                                         *\n*            Thank you for using Zabbix!                  *\n*              &lt;http:\/\/www.zabbix.com&gt;                    *\n***********************************************************\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Compile and Install Zabbix 4.x from Source Code<\/h3>\n\n\n\n<p>Next, run the command below to compile and install Zabbix<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sudo make install<\/code><\/pre>\n\n\n\n<p>Zabbix configuration files will be installed on <strong>\/usr\/local\/etc<\/strong> directory.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Configuring Zabbix<\/h3>\n\n\n\n<p>To begin with, configure Zabbix database connection details. Open the configuration file and replace the values for <strong>DBName<\/strong>, <strong>DBUser<\/strong>, <strong>DBPassword<\/strong> with what you set while creating database.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>vim \/usr\/local\/etc\/zabbix_server.conf<\/code><\/pre>\n\n\n\n<pre class=\"scroll-box\"><code>\n...\nDBHost=localhost\n...\nDBName=zabbixdb\n...\nDBUser=zabbixadmin\n...\nDBPassword=P@SSw0RD\n...\n<\/code><\/pre>\n\n\n\n<p>If firewall is running, open TCP port 10051 for remote connection.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>ufw allow 10051\/tcp<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Change Zabbix Server Log Directory<\/h3>\n\n\n\n<p>By default, Zabbix writes its log file to <strong>\/tmp<\/strong> directory. Change it on the configuration file such that it writes it to <strong>\/var\/log<\/strong>.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>LogFile=\/var\/log\/zabbix_server.log<\/code><\/pre>\n\n\n\n<p>Now, create this log file and set the ownership to Zabbix user.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>touch \/var\/log\/zabbix_server.log\nchown zabbix:zabbix \/var\/log\/zabbix_server.log<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Import Zabbix Default Database and Initial Data<\/h3>\n\n\n\n<p>The Zabbix default MySQL database and initial data for each kind of database backend is located under the <strong>database<\/strong> subdirectory on the Zabbix source directory,<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>cd \/tmp\/zabbix-4.2.5\/database\/mysql\nls *.sql\ndata.sql  images.sql  schema.sql<\/code><\/pre>\n\n\n\n<p>Begin by importing the database schema, Images.sql and then data.sql.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>mysql -u zabbixadmin -p zabbixdb &lt; schema.sql\nmysql -u zabbixadmin -p zabbixdb &lt; images.sql\nmysql -u zabbixadmin -p zabbixdb &lt; data.sql<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Running Zabbix Server and Agent<\/h3>\n\n\n\n<p>Create a systemd service for Zabbix server.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>vim \/etc\/systemd\/system\/zabbix-server.service<\/code><\/pre>\n\n\n\n<pre class=\"scroll-box\"><code>\n[Unit]\nDescription=Zabbix Server\nAfter=syslog.target network.target mariadb.service\n \n[Service]\nType=oneshot\nUser=zabbix\nExecStart=\/usr\/local\/sbin\/zabbix_server\nExecReload=\/usr\/local\/sbin\/zabbix_server -R config_cache_reload\nRemainAfterExit=yes\nPIDFile=\/var\/run\/zabbix\/zabbix_server.pid\n \n[Install]\nWantedBy=multi-user.target\n<\/code><\/pre>\n\n\n\n<p>Create a systemd service for Zabbix agent<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>vim \/etc\/systemd\/system\/zabbix-agent.service<\/code><\/pre>\n\n\n\n<pre class=\"scroll-box\"><code>\n[Unit]\nDescription=Zabbix Agent\nAfter=syslog.target network.target\n \n[Service]\nType=oneshot\nUser=zabbix\nExecStart=\/usr\/local\/sbin\/zabbix_agentd\nRemainAfterExit=yes\nPIDFile=\/var\/run\/zabbix\/zabbix_agent.pid\n \n[Install]\nWantedBy=multi-user.target\n<\/code><\/pre>\n\n\n\n<p>Reload systemd configuration<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>systemctl daemon-reload<\/code><\/pre>\n\n\n\n<p>Start and enable Zabbix server,agent deamon to run on system start.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>systemctl start zabbix-server\nsystemctl start zabbix-agent<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>systemctl enable zabbix-server\nsystemctl enable zabbix-agent<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Installing Zabbix Frontend<\/h3>\n\n\n\n<p>To install Zabbix Frontend, copy Zabbix PHP configuration files under <strong>frontends\/php\/<\/strong> subdirectory on the source code directory to Zabbix web server root directory.<\/p>\n\n\n\n<p>Create Zabbix Web root directory.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>mkdir \/var\/www\/html\/zabbix<\/code><\/pre>\n\n\n\n<p>Next, copy Zabbix PHP files.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>cp -a \/tmp\/zabbix-4.2.5\/frontends\/php\/* \/var\/www\/html\/zabbix\/<\/code><\/pre>\n\n\n\n<p>Set the user and group ownership of the Zabbix directory to <strong>www-data<\/strong>.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>chown -R www-data:www-data \/var\/www\/html\/zabbix\/<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Configure Zabbix Frontend<\/h3>\n\n\n\n<p>There are some known compatibility issues between Zabbix 4.x and PHP 7.3 Opcache. Hence, disable Opcache by running the command below.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>echo \"opcache.enable=0\" &gt;&gt; \/etc\/php\/7.3\/mods-available\/opcache.ini<\/code><\/pre>\n\n\n\n<p>Next, open the PHP configuration file and make the following changes;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>vim \/etc\/php\/7.3\/apache2\/php.ini<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set the minimum size of PHP post&nbsp;data to 16M<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>post_max_size = 16M<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set PHP max_execution_time to 300s<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>max_execution_time = 300<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set PHP max_input_time to 300s<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>max_input_time = 300<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Configure PHP timezone<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>date.timezone = Africa\/Nairobi<\/code><\/pre>\n\n\n\n<p>Restart Apache and Proceed to finalize Zabbix Frontend configuration.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>systemctl restart apache2<\/code><\/pre>\n\n\n\n<p>Access Zabbix on your browser to finalize the frontend configuration using the address, <strong>http:\/\/&lt;server-IP\/zabbix<\/strong><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-welcom-page.png\"><img loading=\"lazy\" decoding=\"async\" width=\"769\" height=\"480\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-welcom-page.png\" alt=\"Install Zabbix 4.x from Sources on Debian 10 Buster\" class=\"wp-image-3793\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-welcom-page.png 769w, https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-welcom-page-768x479.png 768w\" sizes=\"(max-width: 769px) 100vw, 769px\" \/><\/a><\/figure><\/div>\n\n\n<p>Click Next Step to verify if all the Zabbix requirements have been met.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-requirements.png\"><img loading=\"lazy\" decoding=\"async\" width=\"766\" height=\"456\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-requirements.png\" alt=\"\" class=\"wp-image-3794\" title=\"\"><\/a><\/figure><\/div>\n\n\n<p>Configure Zabbix database connection using the connection details set above.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-db-connection.png\"><img loading=\"lazy\" decoding=\"async\" width=\"760\" height=\"453\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-db-connection.png\" alt=\"Zabbix database connection\" class=\"wp-image-3795\" title=\"\"><\/a><\/figure><\/div>\n\n\n<p>Setup the Zabbix server details. You can leave the default settings.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/08\/zabbix-server-details.png\"><img loading=\"lazy\" decoding=\"async\" width=\"681\" height=\"429\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/08\/zabbix-server-details.png\" alt=\"Zabbix Server configuration\" class=\"wp-image-3891\" title=\"\"><\/a><\/figure><\/div>\n\n\n<p>On the Pre-installation summary, verify if all the configurations are fine.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/08\/zabbixpreinstallation.png\"><img loading=\"lazy\" decoding=\"async\" width=\"681\" height=\"431\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/08\/zabbixpreinstallation.png\" alt=\"Zabbix Pre-install summary\" class=\"wp-image-3892\" title=\"\"><\/a><\/figure><\/div>\n\n\n<p>Click Next step to finish the installation.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-installed.png\"><img loading=\"lazy\" decoding=\"async\" width=\"760\" height=\"450\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-installed.png\" alt=\"Zabbix install successful on Debian 10 buster\" class=\"wp-image-3798\" title=\"\"><\/a><\/figure><\/div>\n\n\n<h4 class=\"wp-block-heading\">Login to Zabbix.<\/h4>\n\n\n\n<p class=\"has-text-align-left\">Click Finish to get to Zabbix Login screen. The default login credentials are&nbsp;<strong>admin<\/strong>&nbsp;as the username and&nbsp;<strong>zabbix<\/strong>&nbsp;as the password.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-login.png\"><img loading=\"lazy\" decoding=\"async\" width=\"339\" height=\"401\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-login.png\" alt=\"Zabbix Login\" class=\"wp-image-3799\" title=\"\"><\/a><\/figure><\/div>\n\n\n<p>Zabbix Default Dashboard.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-dashboard.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1349\" height=\"637\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-dashboard.png\" alt=\"Zabbix dashboard on Debian 10 Buster\" class=\"wp-image-3800\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-dashboard.png 1349w, https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/07\/zabbix-dashboard-768x363.png 768w\" sizes=\"(max-width: 1349px) 100vw, 1349px\" \/><\/a><\/figure><\/div>\n\n\n<p>You have successfully installed Zabbix server on Debian 10 Buster from sources. In our next guide, we will how to monitor remote hosts using Zabbix server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Related Guides<\/h3>\n\n\n\n<p><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/install-zabbix-server-on-debian-10-buster\/\" target=\"_blank\">Install Zabbix Server on Debian 10 Buster<\/a><\/p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https:\/\/kifarunix.com\/how-to-install-and-configure-zabbix-4-0-from-source-on-fedora-29-fedora-28-centos-7\/\" target=\"_blank\">How to Install and Configure Zabbix 4.0 from Source on Fedora 29\/Fedora 28\/CentOS 7<\/a><\/p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https:\/\/kifarunix.com\/install-nagios-core-on-debian-10-buster\/\" target=\"_blank\">Install Nagios Core on Debian 10 Buster<\/a><\/p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https:\/\/kifarunix.com\/install-and-configure-snmp-on-debian-10-buster\/\" target=\"_blank\">Install and Configure SNMP on Debian 10 Buster<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/how-to-install-and-configure-alienvault-ossim-5-5-on-virtualbox\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to install and configure AlienVault OSSIM 5.5 on VirtualBox<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Welcome again to our yet another guide on how to install Zabbix 4.x from sources on Debian 10 Buster. In our previous guide, we learnt<\/p>\n","protected":false},"author":1,"featured_media":12691,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_lock_modified_date":false,"footnotes":""},"categories":[121,72,261],"tags":[1061,1039,74,1053],"class_list":["post-3872","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-howtos","category-monitoring","category-zabbix","tag-build-zabbix-from-source","tag-debian-10-buster","tag-monitoring","tag-zabbix-4-2","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50","resize-featured-image"],"_links":{"self":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/3872"}],"collection":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/comments?post=3872"}],"version-history":[{"count":7,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/3872\/revisions"}],"predecessor-version":[{"id":21186,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/3872\/revisions\/21186"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media\/12691"}],"wp:attachment":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media?parent=3872"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/categories?post=3872"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/tags?post=3872"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}