{"id":12705,"date":"2022-05-12T20:13:37","date_gmt":"2022-05-12T17:13:37","guid":{"rendered":"https:\/\/kifarunix.com\/?p=12705"},"modified":"2024-03-09T13:42:14","modified_gmt":"2024-03-09T10:42:14","slug":"install-zabbix-server-on-ubuntu","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/install-zabbix-server-on-ubuntu\/","title":{"rendered":"Install Zabbix Server on Ubuntu 22.04"},"content":{"rendered":"\n<p>In this guide, we are going to learn how to install Zabbix server on Ubuntu 22.04. <a rel=\"noreferrer noopener\" aria-label=\"Zabbix (opens in a new tab)\" href=\"https:\/\/www.zabbix.com\/solutions\" target=\"_blank\">Zabbix<\/a> 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\">Install Zabbix Server on Ubuntu 22.04<\/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<h3 class=\"wp-block-heading\">Install and Buld Zabbix from Source on Ubuntu 22.04<\/h3>\n\n\n\n<p>As of this writing, there are no <a href=\"https:\/\/www.zabbix.com\/download\" target=\"_blank\" rel=\"noreferrer noopener\">Zabbix server repositories<\/a> for Ubuntu 22.04. Only available for agents. As a result, we will built and install Zabbix server from sources.<\/p>\n\n\n\n<p>Zabbix is a PHP based app. Hence, you need to install LAMP stack.<\/p>\n\n\n\n<p>We tried PHP 8.1 and we experienced a lot of Frontend errors! As such, we are using PHP 7.4 in this guide. PHP 7.4 is provided by Ondrej PHP PPA repositories.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apt install software-properties-common -y<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>add-apt-repository ppa:ondrej\/php --yes &amp;&gt; \/dev\/null<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>apt update<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>apt install build-essential libmariadb-dev sudo libxml2-dev \\\nphp7.4 php7.4-gd php7.4-xml php7.4-bcmath php7.4-mbstring libapache2-mod-php7.4 \\\nphp7.4-ldap php7.4-mysql apache2 mysql-server snmp libsnmp-dev \\\nlibcurl4-openssl-dev libevent-dev libpcre3-dev libxml2-dev \\\nlibmariadb-dev libopenipmi-dev pkg-config libssh2-1-dev libldap-dev<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Create Zabbix Database and Database User<\/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-code\"><code>create user zabbixadmin@localhost identified by 'P@SSw0RD';<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>grant all on zabbixdb.* to zabbixadmin@localhost;<\/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\/6.0\/zabbix-6.0.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-6.0.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-6.0.4<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>.\/configure --enable-server --enable-agent --with-mysql --enable-ipv6 \\\n--with-net-snmp --with-libcurl --with-libxml2 --with-ssh2 --with-net-snmp \\\n--with-ldap<\/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.34\/CORE -I. -I\/usr\/include\n    libssh2:               -I\/usr\/include\n    LDAP:                  -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:                  no\n    SSH:                   yes (libssh2)\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       -L\/usr\/lib  -rdynamic     \n    Libraries:              -lmariadb       -lnetsnmp -lssh2   -lz -lpthread -levent  -lldap -llber   -lcurl -lm   -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:              -L\/usr\/lib  -rdynamic     \n    Libraries:              -lz -lpthread  -lldap -llber   -lcurl -lm   -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:          yes\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 on Ubuntu 22.04<\/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-code\"><code>vim \/usr\/local\/etc\/zabbix_server.conf<\/code><\/pre>\n\n\n\n<pre class=\"scroll-box\"><code>\n...\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>...\n<\/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-code\"><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-6.0.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\nhistory_pk_prepare.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 on Ubuntu 22.04<\/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-6.0.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>Update the PHP configurations by making the following changes<\/p>\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<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<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-welcome-page.png\" class=\"td-modal-image\"><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1069\" height=\"675\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-welcome-page.png\" alt=\"\" class=\"wp-image-12736\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-welcome-page.png?v=1652515621 1069w, https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-welcome-page-768x485.png?v=1652515621 768w\" sizes=\"(max-width: 1069px) 100vw, 1069px\" \/><\/figure><\/a><\/div>\n\n\n\n<p>Click Next Step to verify if all the Zabbix requirements have been met.<\/p>\n\n\n\n<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-pre-reqs.png\" class=\"td-modal-image\"><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1071\" height=\"672\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-pre-reqs.png\" alt=\"\" class=\"wp-image-12737\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-pre-reqs.png?v=1652515656 1071w, https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-pre-reqs-768x482.png?v=1652515656 768w\" sizes=\"(max-width: 1071px) 100vw, 1071px\" \/><\/figure><\/a><\/div>\n\n\n\n<p>Configure Zabbix database connection using the connection details set before.<\/p>\n\n\n\n<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-db-connection.png\" class=\"td-modal-image\"><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1073\" height=\"680\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-db-connection.png\" alt=\"Install Zabbix Server on Ubuntu 22.04\" class=\"wp-image-12738\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-db-connection.png?v=1652515671 1073w, https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-db-connection-768x487.png?v=1652515671 768w\" sizes=\"(max-width: 1073px) 100vw, 1073px\" \/><\/figure><\/a><\/div>\n\n\n\n<p>Setup the Zabbix server details.<\/p>\n\n\n\n<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-server-name.png\" class=\"td-modal-image\"><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1072\" height=\"679\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-server-name.png\" alt=\"Install Zabbix Server on Ubuntu 22.04\" class=\"wp-image-12739\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-server-name.png?v=1652515743 1072w, https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-server-name-768x486.png?v=1652515743 768w\" sizes=\"(max-width: 1072px) 100vw, 1072px\" \/><\/figure><\/a><\/div>\n\n\n\n<p>On the Pre-installation summary, verify if all the configurations are fine.<\/p>\n\n\n\n<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-install-summary.png\" class=\"td-modal-image\"><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1073\" height=\"680\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-install-summary.png\" alt=\"Install Zabbix Server on Ubuntu 22.04\" class=\"wp-image-12740\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-install-summary.png?v=1652515763 1073w, https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-install-summary-768x487.png?v=1652515763 768w\" sizes=\"(max-width: 1073px) 100vw, 1073px\" \/><\/figure><\/a><\/div>\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<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-installed.png\" class=\"td-modal-image\"><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1073\" height=\"685\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-installed.png\" alt=\"Install Zabbix Server on Ubuntu 22.04\" class=\"wp-image-12741\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-installed.png?v=1652515773 1073w, https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-installed-768x490.png?v=1652515773 768w\" sizes=\"(max-width: 1073px) 100vw, 1073px\" \/><\/figure><\/a><\/div>\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\n<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/09\/zabbix-login-int.png\" class=\"td-modal-image\"><div class=\"wp-block-image\"><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><\/a><\/div>\n\n\n\n<p>The default login credentials are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Username (Note the Upper case A): &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<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-dashboard.png\" class=\"td-modal-image\"><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1905\" height=\"948\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-dashboard.png\" alt=\"\" class=\"wp-image-12742\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-dashboard.png?v=1652515996 1905w, https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-dashboard-768x382.png?v=1652515996 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2022\/05\/zabbix-dashboard-1536x764.png?v=1652515996 1536w\" sizes=\"(max-width: 1905px) 100vw, 1905px\" \/><\/figure><\/a><\/div>\n\n\n\n<p>Well, there you go.<\/p>\n\n\n\n<p>That concludes our guide on how to install Zabbix Server from Source on Ubuntu 22.04.<\/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-centos-7-for-zabbix-monitoring\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install Zabbix Agent on CentOS 7 for Zabbix Monitoring<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/how-to-monitor-it-infrastructure-using-checkmk\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Monitor IT Infrastructure using Checkmk<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this guide, we are going to learn how to install Zabbix server on Ubuntu 22.04. Zabbix is an enterprise class monitoring solution for any<\/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],"tags":[5144,5143,5146,5147,5145],"class_list":["post-12705","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-howtos","category-monitoring","tag-install-zabbix-monitoring-tool","tag-install-zabbix-server-on-ubuntu-22-04","tag-ubuntu-22-04-zabbix","tag-zabbix-install","tag-zabbix-server-ubuntu-22-04","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\/12705"}],"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=12705"}],"version-history":[{"count":11,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/12705\/revisions"}],"predecessor-version":[{"id":20519,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/12705\/revisions\/20519"}],"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=12705"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/categories?post=12705"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/tags?post=12705"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}