{"id":10275,"date":"2021-09-05T08:50:08","date_gmt":"2021-09-05T05:50:08","guid":{"rendered":"https:\/\/kifarunix.com\/?p=10275"},"modified":"2024-03-18T14:11:19","modified_gmt":"2024-03-18T11:11:19","slug":"install-zabbix-server-from-source-on-debian-11","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/install-zabbix-server-from-source-on-debian-11\/","title":{"rendered":"Install Zabbix Server from Source on Debian 11"},"content":{"rendered":"\n<p>In this guide, we are going to learn how to install Zabbix Server  from source on Debian 11.&nbsp;<a rel=\"noreferrer noopener\" href=\"https:\/\/www.zabbix.com\/solutions\" target=\"_blank\">Zabbix<\/a>&nbsp;is an enterprise class monitoring solution for any kind of IT infrastructure, services, applications, cloud resources.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Installing Zabbix Server from Source on Debian 11<\/h2>\n\n\n\n<p>Zabbix can be built from the source code or can be installed from Zabbix repository.<\/p>\n\n\n\n<p>As of this writing, Zabbix has not released the APT repos for the Debian 11. Hence, we will install Zabbix from the source.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Install LAMP\/LEMP Stack<\/h3>\n\n\n\n<p>In this tutorial, we will use LAMP Stack. Follow the guide below to install LAMP Stack on Debian 11.<\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-lamp-stack-on-debian-11\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install LAMP Stack on Debian 11<\/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-code\"><code>apt install build-essential libmariadb-dev sudo libxml2-dev snmp libsnmp-dev libcurl4-openssl-dev php-gd php-xml php-bcmath php-mbstring vim libevent-dev libpcre3-dev libxml2-dev libmariadb-dev libapache2-mod-php libopenipmi-dev pkg-config php-ldap php-mysql -y<\/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<pre class=\"wp-block-preformatted\"><code>mkdir -m u=rwx,g=rwx,o= -p \/var\/lib\/zabbix<\/code><\/pre>\n\n\n\n<pre id=\"block-32248a98-4378-49ac-b69a-a7b92716bc29\" class=\"wp-block-preformatted\">chown zabbix:zabbix \/var\/lib\/zabbix<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Download Zabbix Source Code<\/h3>\n\n\n\n<p>Navigate to&nbsp;<a rel=\"noreferrer noopener\" href=\"https:\/\/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&nbsp;<strong>wget<\/strong>&nbsp;command download it.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/cdn.zabbix.com\/zabbix\/sources\/stable\/5.4\/zabbix-5.4.4.tar.gz<\/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>tar xzf zabbix-5.4.4.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 id=\"block-ef7abef3-af81-45ff-ab4e-4acc2c2b6aa5\" class=\"wp-block-preformatted\">cd zabbix-5.4.4<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>.\/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>\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.32\/CORE -I. -I\/usr\/include\n    OpenIPMI:              -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    SNMP:                  yes\n    IPMI:                  yes\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\/       -L\/usr\/lib       -rdynamic     \n    Libraries:              -lmariadb       -lnetsnmp   -lOpenIPMI -lOpenIPMIposix -lz -lpthread -levent    -lcurl -lm -ldl  -lresolv -lxml2   -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    Modbus:                no\n    Linker flags:                -rdynamic     \n    Libraries:              -lz -lpthread    -lcurl -lm -ldl  -lresolv -lxml2   -lpcre \n    Configuration file:    \/usr\/local\/etc\/zabbix_agentd.conf\n    Modules:               \/usr\/local\/lib\/modules\n\n  Enable agent 2:        no\n\n  Enable web service:    no\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*              <http:\/\/www.zabbix.com>                    *\n***********************************************************\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Compile and Install Zabbix 4.x from Sources on Debian 10 Buster<\/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&nbsp;<strong>\/usr\/local\/etc<\/strong>&nbsp;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.<\/p>\n\n\n\n<p>Open the configuration file, <strong><code>\/usr\/local\/etc\/zabbix_server.conf<\/code><\/strong>, and replace the values for&nbsp;<strong>DBName<\/strong>,&nbsp;<strong>DBUser<\/strong>,&nbsp;<strong>DBPassword<\/strong>&nbsp;with what you set while creating database. Uncomment the line <code><strong># DBHost=localhost<\/strong><\/code>.<\/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=\"wp-block-code\"><code>...\n<strong>DBHost=localhost<\/strong>\n...\n<strong>DBName=zabbixdb\n<\/strong>...\n<strong>DBUser=zabbixadmin\n<\/strong>...\n<strong>DBPassword=P@SSw0RD\n<\/strong>...<\/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&nbsp;<strong>\/tmp<\/strong>&nbsp;directory. Change it on the configuration file such that it writes it to&nbsp;<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>Save and exit the configuration file (<strong><code>:wq! or ZZ<\/code><\/strong>).<\/p>\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&nbsp;<strong>database<\/strong>&nbsp;subdirectory on the Zabbix source directory,<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd ~\/zabbix-5.4.4\/database\/mysql\/<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>ls -1 *.sql<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>data.sql\ndouble.sql\nimages.sql\nschema.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 id=\"block-1c441a32-b582-46b7-a30e-3a98648a0de7\" class=\"wp-block-code\"><code>mysql -u zabbixadmin -p zabbixdb &lt; schema.sql<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql -u zabbixadmin -p zabbixdb &lt; images.sql<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql -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=\"scroll-box\"><code>\ncat > \/etc\/systemd\/system\/zabbix-server.service << EOL\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\nEOL\n<\/code><\/pre>\n\n\n\n<p>Create a systemd service for Zabbix agent<\/p>\n\n\n\n<pre class=\"scroll-box\"><code>\ncat >  \/etc\/systemd\/system\/zabbix-agent.service << EOL\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\nEOL\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-code\"><code>systemctl enable --now zabbix-server zabbix-agent<\/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\">Installing Zabbix Frontend<\/h3>\n\n\n\n<p>To install Zabbix Frontend, copy Zabbix PHP configuration files under&nbsp;<strong>ui\/php\/<\/strong>&nbsp;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 ~\/zabbix-5.4.4\/ui\/* \/var\/www\/html\/zabbix\/<\/code><\/pre>\n\n\n\n<p>Set the user and group ownership of the Zabbix directory to&nbsp;<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.4\/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.4\/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-code\"><code>sed -i '\/post_max_size\/s\/= 8M\/= 16M\/' \/etc\/php\/7.4\/apache2\/php.ini<\/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-code\"><code>sed -i 's\/max_execution_time = 30\/max_execution_time = 300\/' \/etc\/php\/7.4\/apache2\/php.ini<\/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-code\"><code>sed -i '\/max_input_time\/s\/= 60\/= 300\/' \/etc\/php\/7.4\/apache2\/php.ini<\/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-code\"><code>sed -i 's\/;date.timezone =\/date.timezone = Asia\\\/Nicosia\/' \/etc\/php\/7.4\/apache2\/php.ini<\/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-code\"><code>systemctl restart apache2<\/code><\/pre>\n\n\n\n<p>Access Zabbix on your browser to finalize the frontend configuration using the address,&nbsp;<strong>http:\/\/&lt;server-IP\/zabbix<\/strong>y<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Configure Zabbix Web User Interface<\/h3>\n\n\n\n<p>To complete Zabbix installation, navigate to the browser and access your Zabbix server via the address&nbsp;<strong>http:\/\/&lt;server-IP&gt;\/zabbix<\/strong>.<\/p>\n\n\n\n<p>When access the address above, the first page you land on is Zabbix welcome page.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1078\" height=\"680\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-welcome-page.png\" alt=\"Install Zabbix Server from Source on Debian 11\" class=\"wp-image-10331\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-welcome-page.png?v=1630820413 1078w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-welcome-page-768x484.png?v=1630820413 768w\" sizes=\"(max-width: 1078px) 100vw, 1078px\" \/><\/figure>\n\n\n\n<p>Click Next Step to verify if all the Zabbix requirements have been met.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"676\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-prereqs.png\" alt=\"\" class=\"wp-image-10332\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-prereqs.png?v=1630820496 1080w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-prereqs-768x481.png?v=1630820496 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" \/><\/figure>\n\n\n\n<p>Configure Zabbix database connection using the connection details set before.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1087\" height=\"678\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-database.png\" alt=\"\" class=\"wp-image-10333\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-database.png?v=1630820553 1087w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-database-768x479.png?v=1630820553 768w\" sizes=\"(max-width: 1087px) 100vw, 1087px\" \/><\/figure>\n\n\n\n<p>Setup the Zabbix server details. You can leave the default settings.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1082\" height=\"678\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-server-details.png\" alt=\"\" class=\"wp-image-10334\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-server-details.png?v=1630820581 1082w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-server-details-768x481.png?v=1630820581 768w\" sizes=\"(max-width: 1082px) 100vw, 1082px\" \/><\/figure>\n\n\n\n<p>On the Pre-installation summary, verify if all the configurations are fine.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1081\" height=\"686\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/pre-install-summary.png\" alt=\"\" class=\"wp-image-10335\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/pre-install-summary.png?v=1630820613 1081w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/pre-install-summary-768x487.png?v=1630820613 768w\" sizes=\"(max-width: 1081px) 100vw, 1081px\" \/><\/figure>\n\n\n\n<p>If all is well, click Next step to finish the installation. If all is well, you should see Zabbix installation congratulatory message.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1087\" height=\"683\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-installed.png\" alt=\"\" class=\"wp-image-10336\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-installed.png?v=1630820637 1087w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-installed-768x483.png?v=1630820637 768w\" sizes=\"(max-width: 1087px) 100vw, 1087px\" \/><\/figure>\n\n\n\n<p>You have successfully setup Zabbix Frontend. Click&nbsp;<strong>Finish<\/strong>&nbsp;to get to Zabbix login interface.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"965\" height=\"571\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-login-int.png\" alt=\"\" class=\"wp-image-10337\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-login-int.png?v=1630820667 965w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-login-int-768x454.png?v=1630820667 768w\" sizes=\"(max-width: 965px) 100vw, 965px\" \/><\/figure><\/div>\n\n\n<p>The default login credentials are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Username: &nbsp;<strong>Admin<\/strong><\/li>\n\n\n\n<li>Password: <strong>zabbix<\/strong><\/li>\n<\/ul>\n\n\n\n<p>When you successfully login to Zabbix, you should land on the default dashboard.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"949\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-dash.png\" alt=\"\" class=\"wp-image-10338\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-dash.png?v=1630820696 1920w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-dash-768x380.png?v=1630820696 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-dash-1536x759.png?v=1630820696 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/><\/figure>\n\n\n\n<p>Well, there you go.<\/p>\n\n\n\n<p>Read More on <a href=\"https:\/\/www.zabbix.com\/documentation\/current\/\" target=\"_blank\" rel=\"noreferrer noopener\">Documentation page<\/a>.<\/p>\n\n\n\n<p>Other Tutorials<\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-zabbix-agent-on-debian-10-buster\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install Zabbix Agent on Debian 10 Buster<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-zabbix-agent-on-freebsd-12\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install Zabbix Agent on FreeBSD 12<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this guide, we are going to learn how to install Zabbix Server from source on Debian 11.&nbsp;Zabbix&nbsp;is an enterprise class monitoring solution for any<\/p>\n","protected":false},"author":1,"featured_media":10339,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_lock_modified_date":false,"footnotes":""},"categories":[72,121,261],"tags":[4055,3958,4054,4058,4059,4053,4056,1052,4057],"class_list":["post-10275","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-monitoring","category-howtos","category-zabbix","tag-build-zabbix-from-source-on-debian-11","tag-debian-11","tag-debian-11-zabbix","tag-debian-11-zabbix-source-instal","tag-install-zabbix-from-source","tag-install-zabbix-on-debian-11","tag-install-zabbix-on-debian-11-from-source","tag-zabbix","tag-zabbix-source-install","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\/10275"}],"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=10275"}],"version-history":[{"count":10,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/10275\/revisions"}],"predecessor-version":[{"id":21666,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/10275\/revisions\/21666"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media\/10339"}],"wp:attachment":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media?parent=10275"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/categories?post=10275"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/tags?post=10275"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}