{"id":3265,"date":"2018-04-13T21:12:55","date_gmt":"2018-04-13T17:12:55","guid":{"rendered":"https:\/\/www.howtoforge.com\/tutorial\/centos-zabbix-system-monitoring\/"},"modified":"2018-04-13T21:12:55","modified_gmt":"2018-04-13T17:12:55","slug":"how-to-install-and-configure-zabbix-on-centos-7","status":"publish","type":"post","link":"https:\/\/afaghhosting.net\/blog\/how-to-install-and-configure-zabbix-on-centos-7\/","title":{"rendered":"How to Install and Configure Zabbix on CentOS 7"},"content":{"rendered":"<p>Zabbix is an open source monitoring tool for network services, network hardware, servers, and application. Designed to track and monitor the status of your system and servers. Zabbix offers support for many database systems &#8211; including MySQL, PostgreSQL, SQLite, and IBM DB2\u00a0 &#8211; to store data. Zabbix backend is written in C, and the frontend is written in PHP.<\/p>\n<p>In this tutorial, we will show you step-by-step how to install and configure an open source monitoring system Zabbix 3.4 on the CentOS 7 system. This guide will cover some topics, including installation and configuration of the LAMP Stack for our Zabbix installation, and how to change the default password for Zabbix admin web UI.<\/p>\n<h2 id=\"prerequisites\">Prerequisites<\/h2>\n<ul>\n<li>CentOS 7 Server<\/li>\n<li>Root privileges<\/li>\n<\/ul>\n<h2 id=\"what-we-will-do\">What we will do?<\/h2>\n<ol>\n<li>Install Apache2\/httpd on CentOS 7<\/li>\n<li>Install and Configure PHP 7.2 on CentOS 7<\/li>\n<li>Install and Configure MySQL<\/li>\n<li>Install and Configure Zabbix 3.4 on CentOS 7<\/li>\n<li>Configure FirewallD<\/li>\n<li>Zabbix Initial-Setup<\/li>\n<li>Change Default Admin<\/li>\n<\/ol>\n<h2 id=\"step-install-apachehttpd\">Step 1 &#8211; Install Apache2\/httpd<\/h2>\n<p>In this guide, we will run Zabbix under the Apache web server. The web server packages can be installed from the default CentOS 7 repository.<\/p>\n<p>Install Apache\/httpd using the yum command below.<\/p>\n<p class=\"command\">sudo yum -y install httpd<\/p>\n<p>After the installation is complete, start the service and enable it to launch every time at system boot.<\/p>\n<p class=\"command\">systemctl start httpd<br \/>systemctl enable httpd<\/p>\n<p>The Apache\/httpd web server has been installed on the system &#8211; check it using the netstat command.<\/p>\n<p class=\"command\">netstat -plntu<\/p>\n<p>And you will get the default HTTP port 80 in the LISTEN state.<\/p>\n<p><a class=\"fancybox\" id=\"img-11\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/11.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7.png\" alt=\"Netstat command\" width=\"500\" height=\"235\" title=\"\"><\/a><\/p>\n<h2 id=\"step-install-and-configure-php-on-centos-\">Step 2 &#8211; Install and Configure PHP 7.2 on CentOS 7<\/h2>\n<p>In this step, we will install PHP 7 from a third-party repository &#8211; we will install PHP 7.2 from the &#8216;webtatic&#8217; repository.<\/p>\n<p>Before installing PHP 7 with all extensions needed, add the webtatic and the EPEL repository to the system.<\/p>\n<p>Run commands below.<\/p>\n<p class=\"command\">yum -y install epel-release<br \/>sudo rpm -Uvh https:\/\/mirror.webtatic.com\/yum\/el7\/webtatic-release.rpm<\/p>\n<p>Now install PHP 7.2 packages from the webtatic repository using yum.<\/p>\n<p class=\"command\">yum -y install mod_php72w php72w-cli php72w-common php72w-devel php72w-pear php72w-gd php72w-mbstring php72w-mysql php72w-xml php72w-bcmath<\/p>\n<p>And after the installation is complete, we need to edit the default &#8216;php.ini&#8217; file using the vim editor.<\/p>\n<p class=\"command\">vim \/etc\/php.ini<\/p>\n<p>Change the values of the configuration as shown below.<\/p>\n<pre class=\"system\"> max_execution_time = 600<br\/>max_input_time = 600<br\/>memory_limit = 256M<br\/>post_max_size = 32M<br\/>upload_max_filesize = 16M<br\/>date.timezone = Asia\/Jakarta<\/pre>\n<p>Save and exit.<\/p>\n<p>Now restart the httpd service.<\/p>\n<p class=\"command\">systemctl restart httpd<\/p>\n<p>The PHP 7 installation and configuration for Zabbix has been completed.<\/p>\n<h2 id=\"step-install-and-configure-mariadb\">Step 3 &#8211; Install and Configure MariaDB<\/h2>\n<p>Zabbix offers support for many databases for the installation, including MySQL, PostgreSQL, SQLite, and Oracle database. For this guide, we will be using MariaDB as the database for our Zabbix installation.<\/p>\n<p>Install mariadb-server using yum command below.<\/p>\n<p class=\"command\">sudo yum -y install mariadb-server<\/p>\n<p>After the installation is complete, start the service and enable it to launch everytime at system boot.<\/p>\n<p class=\"command\">systemctl start mariadb<br \/>systemctl enable mariadb<\/p>\n<p>Now run the command below to configure MariaDB root password.<\/p>\n<p class=\"command\">mysql_secure_installation<\/p>\n<p>Type your root password and press Enter.<\/p>\n<p><a class=\"fancybox\" id=\"img-2\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/2.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-1.png\" alt=\"Install MariaDB\" width=\"500\" height=\"314\" title=\"\"><\/a><\/p>\n<p>MariaDB database has been installed, and the root password has been configured.<\/p>\n<p>Next, we need to create a new database for our Zabbix installation. We will create a new database and user named &#8216;<strong>zabbix<\/strong>&#8216; with password &#8216;<strong><a href=\"https:\/\/www.howtoforge.com\/cdn-cgi\/l\/email-protection\" class=\"__cf_email__\" data-cfemail=\"7f171e141e0c1a52131e1d0c3f\" target=\"_blank\" rel=\"noopener\">[email\u00a0protected]<\/a><\/strong>&#8216;.<\/p>\n<p>Login to the MySQL shell.<\/p>\n<p class=\"command\">mysql -u root -p<\/p>\n<p>And run the following MySQL queries on the shell.<\/p>\n<p class=\"command\">create database zabbix; <br \/>grant all privileges on zabbix.* to <a href=\"https:\/\/www.howtoforge.com\/cdn-cgi\/l\/email-protection\" class=\"__cf_email__\" data-cfemail=\"b0cad1d2d2d9c8f0\" target=\"_blank\" rel=\"noopener\">[email\u00a0protected]<\/a>&#8216;localhost&#8217; identified by &#8216;<a href=\"https:\/\/www.howtoforge.com\/cdn-cgi\/l\/email-protection\" class=\"__cf_email__\" data-cfemail=\"6f070e040e1c0a42030e0d1c2f\" target=\"_blank\" rel=\"noopener\">[email\u00a0protected]<\/a>&#8216;; <br \/>grant all privileges on zabbix.* to <a href=\"https:\/\/www.howtoforge.com\/cdn-cgi\/l\/email-protection\" class=\"__cf_email__\" data-cfemail=\"6b110a090902132b\" target=\"_blank\" rel=\"noopener\">[email\u00a0protected]<\/a>&#8216;%&#8217; identified by &#8216;<a href=\"https:\/\/www.howtoforge.com\/cdn-cgi\/l\/email-protection\" class=\"__cf_email__\" data-cfemail=\"d6beb7bdb7a5b3fbbab7b4a596\" target=\"_blank\" rel=\"noopener\">[email\u00a0protected]<\/a>&#8216;; <br \/>flush privileges;<\/p>\n<p>New database for Zabbix installation has been created.<\/p>\n<p><a class=\"fancybox\" id=\"img-3\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/3.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-2.png\" alt=\"Create database\" width=\"500\" height=\"324\" title=\"\"><\/a><\/p>\n<h2 id=\"step-install-and-configure-zabbix-\">Step 4 &#8211; Install and Configure Zabbix 3.4<\/h2>\n<p>In this step, we will install and configure Zabbix. We will install Zabbix from the official repository, then configure Zabbix-server and Zabbix-agent.<\/p>\n<p><strong>&#8211; Install Zabbix Packages<br \/><\/strong><\/p>\n<p>Add the Zabbix repository to the CentOS 7 system.<\/p>\n<p class=\"command\">yum -y install http:\/\/repo.zabbix.com\/zabbix\/3.4\/rhel\/7\/x86_64\/zabbix-release-3.4-1.el7.centos.noarch.rpm<\/p>\n<p>Now install Zabbix using the yum command below.<\/p>\n<p class=\"command\">yum -y install zabbix-get zabbix-server-mysql zabbix-web-mysql zabbix-agent<\/p>\n<p>Wait for the Zabbix packages installation.<\/p>\n<p><a class=\"fancybox\" id=\"img-4\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/4.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-3.png\" alt=\"Install Zabbix\" width=\"500\" height=\"209\" title=\"\"><\/a><\/p>\n<p><strong>&#8211; Import Database Sample<\/strong><\/p>\n<p>Import the Zabbix database sample to our &#8216;zabbix&#8217; database. Go to the Zabbix documentation directory and extract the Zabbix sql file.<\/p>\n<p class=\"command\">cd \/usr\/share\/doc\/zabbix-server-mysql-3.4.6\/<br \/>gunzip create.sql.gz<\/p>\n<p>Now import the database sample to our &#8216;zabbix&#8217; database.<\/p>\n<p class=\"command\">mysql -u root -p zabbix &lt; create.sql<\/p>\n<p>Type your root password and make sure there is no error.<\/p>\n<p><a class=\"fancybox\" id=\"img-5\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/5.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-4.png\" alt=\"Import the database\" width=\"500\" height=\"149\" title=\"\"><\/a><\/p>\n<p><strong>&#8211; Configure Zabbix Server<\/strong><\/p>\n<p>Zabbix-server is the central process of the Zabbix software system. We will configure the Zabbix-server by editing the configuration file using the\u00a0<a href=\"https:\/\/www.howtoforge.com\/vim-basics\" target=\"_blank\" rel=\"noopener noreferrer\">vim<\/a> editor.<\/p>\n<p>Run the following command.<\/p>\n<p class=\"command\">vim \/etc\/zabbix\/zabbix_server.conf<\/p>\n<p>On the database line configuration, type the configuration as below and change the &#8216;DBPassword&#8217; value with your own database password.<\/p>\n<p class=\"system\">DBHost=localhost<br \/><a href=\"https:\/\/www.howtoforge.com\/cdn-cgi\/l\/email-protection\" class=\"__cf_email__\" data-cfemail=\"1f5b5d4f7e6c6c68706d7b22777e747e6c7a32737e7d6c5f\" target=\"_blank\" rel=\"noopener\">[email\u00a0protected]<\/a><\/p>\n<p>Save and exit.<\/p>\n<p>Now start the Zabbix-server service and enable it to launch everytime at system boot.<\/p>\n<p class=\"command\">systemctl start zabbix-server<br \/>systemctl enable zabbix-server<\/p>\n<p>Zabbix-server is running on the CentOS 7 system &#8211; check it using the command below.<\/p>\n<p class=\"command\">systemctl status zabbix-server<\/p>\n<p>And you will get the result as shown below.<\/p>\n<p><a class=\"fancybox\" id=\"img-6\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/6.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-5.png\" alt=\"Configure zabbix server\" width=\"500\" height=\"140\" title=\"\"><\/a><\/p>\n<p><strong>&#8211; Configure Zabbix Agent<\/strong><\/p>\n<p>Zabbix-agent must be installed on the target monitoring system. The agent will gather all information of the server and reports data to the Zabbix-server.<\/p>\n<p>Edit the Zabbix-agent configuration file using vim.<\/p>\n<p class=\"command\">vim \/etc\/zabbix\/zabbix_agentd.conf<\/p>\n<p>Change following lines with your own info:<\/p>\n<pre class=\"system\"> Server=127.0.0.1<br\/>ServerActive=127.0.0.1<br\/>Hostname=hakase-labs<\/pre>\n<p>Save and exit.<\/p>\n<p>Now start the zabbix-agent and enable it to launch everytime at system boot.<\/p>\n<p class=\"command\">systemctl start zabbix-agent <br \/>systemctl enable zabbix-agent<\/p>\n<p>Zabbix-agent is running on the system &#8211; check it using the following command.<\/p>\n<p class=\"command\">systemctl status zabbix-agent<\/p>\n<p>And you will get the result as shown below.<\/p>\n<p><a class=\"fancybox\" id=\"img-7\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/7.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-6.png\" alt=\"Configure zabbix agent\" width=\"500\" height=\"255\" title=\"\"><\/a><\/p>\n<h2 id=\"step-nbsp-configure-firewalld\">Step 5 &#8211;\u00a0 Configure Firewalld<\/h2>\n<p>In this step, we will open the HTTP and https port for Zabbix admin web UI, and will also add an additional port for Zabbix-server and Zabbix-agent.<\/p>\n<p>If you do not have firewalld on your system, install it using the following command.<\/p>\n<p class=\"command\">yum -y install firewalld<\/p>\n<p>Start the firewalld service and enable it to launch everytime at system boot.<\/p>\n<p class=\"command\">systemctl start firewalld<br \/>systemctl enable firewalld<\/p>\n<p>Now we will open the HTTP and https port, and the port that will be used by the Zabbix-server and Zabbix agent (port 10051 and 10050).<\/p>\n<p>Run the following firewall-cmd commands.<\/p>\n<p class=\"command\">firewall-cmd &#8211;add-service={http,https} &#8211;permanent<br \/>firewall-cmd &#8211;add-port={10051\/tcp,10050\/tcp} &#8211;permanent<\/p>\n<p>Now reload the firewalld configuration and check the port.<\/p>\n<p class=\"command\">firewall-cmd &#8211;reload<br \/>firewall-cmd &#8211;list-all<\/p>\n<p><a class=\"fancybox\" id=\"img-8\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/8.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-7.png\" alt=\"Configure the firewall\" width=\"500\" height=\"143\" title=\"\"><\/a><\/p>\n<p>Firewalld configuration for Zabbix installation has been completed.<\/p>\n<h2 id=\"step-zabbix-initial-setup\">Step 6 &#8211; Zabbix Initial Setup<\/h2>\n<p>Before going any further, we will restart all of our services using the systemctl commands below.<\/p>\n<p class=\"command\">systemctl restart zabbix-server<br \/>systemctl restart zabbix-agent<br \/>systemctl restart httpd<\/p>\n<p>Now open your web browser, and type your server IP address.<\/p>\n<p><a href=\"http:\/\/192.168.33.10\/zabbix\/\">http:\/\/192.168.33.10\/zabbix\/<\/a><\/p>\n<p>And you will be redirected to the Zabbix welcome message.<\/p>\n<p><a class=\"fancybox\" id=\"img-9\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/9.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-8.png\" alt=\"Zabbix setup\" width=\"500\" height=\"287\" title=\"\"><\/a><\/p>\n<p>Click the &#8216;<strong>Next Step<\/strong>&#8216; button.<\/p>\n<p>Now, Zabbix will check all system requirements for its installation. Make sure there is no error.<\/p>\n<p><a class=\"fancybox\" id=\"img-10\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/10.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-9.png\" alt=\"Check pre-requisites\" width=\"500\" height=\"288\" title=\"\"><\/a><\/p>\n<p>Then click the &#8216;<strong>Next step<\/strong>&#8216; button again.<\/p>\n<p>For the database info, type all your database setup.<\/p>\n<p><a class=\"fancybox\" id=\"img-111\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/111.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-10.png\" alt=\"Configure db\" width=\"500\" height=\"288\" title=\"\"><\/a><\/p>\n<p>And click the &#8216;<strong>Next step<\/strong>&#8216; button.<\/p>\n<p>Now comes the Zabbix server details configuration. On the &#8216;Host&#8217; field, type your own server IP address, and change the name with your own domain name or hostname.<\/p>\n<p><a class=\"fancybox\" id=\"img-12\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/12.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-11.png\" alt=\"Server details\" width=\"500\" height=\"288\" title=\"\"><\/a><\/p>\n<p>Click the &#8216;<strong>Next step<\/strong>&#8216; button again.<\/p>\n<p>Make sure all of those configurations are correct, then click the next button to install Zabbix.<\/p>\n<p><a class=\"fancybox\" id=\"img-13\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/13.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-12.png\" alt=\"Installation summary\" width=\"500\" height=\"287\" title=\"\"><\/a><\/p>\n<p>And when the installation is complete, you will get the page as shown below.<\/p>\n<p><a class=\"fancybox\" id=\"img-14\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/14.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-13.png\" alt=\"Zabbix successfully installed\" width=\"500\" height=\"288\" title=\"\"><\/a><\/p>\n<p>Click the &#8216;<strong>Finish<\/strong>&#8216; button and you will be redirected to the Zabbix login page.<\/p>\n<p>Login with default user &#8216;<strong>admin<\/strong>&#8216; and password &#8216;<strong>zabbix<\/strong>&#8216;.<\/p>\n<p><a class=\"fancybox\" id=\"img-15\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/15.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-14.png\" alt=\"Login to zabbix\" width=\"500\" height=\"286\" title=\"\"><\/a><\/p>\n<p>Now you get the Zabbix admin Dashboard.<\/p>\n<p><a class=\"fancybox\" id=\"img-16\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/16.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-15.png\" alt=\"Zabbix dashboard\" width=\"500\" height=\"270\" title=\"\"><\/a><\/p>\n<p>Zabbix server installation has been completed.<\/p>\n<h2 id=\"step-change-default-admin-password\">Step 7 &#8211; Change Default Admin Password<\/h2>\n<p>In this step, we want to change the default Zabbix admin password for security.<\/p>\n<p>On the Zabbix admin dashboard, click the user icon on the top right.<\/p>\n<p><a class=\"fancybox\" id=\"img-17\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/17.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-16.png\" alt=\"Change Default Admin Password\" width=\"500\" height=\"216\" title=\"\"><\/a><\/p>\n<p>Click the &#8216;Change Password&#8217; button and type your new password.<\/p>\n<p><a class=\"fancybox\" id=\"img-18\" href=\"https:\/\/www.howtoforge.com\/images\/how_to_install_and_configure_zabbix_on_centos_7\/big\/18.png\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-17.png\" alt=\"Change password\" width=\"500\" height=\"237\" title=\"\"><\/a><\/p>\n<p>Now click the &#8216;update&#8217; button, and the default admin password has been changed.<\/p>\n<p>Zabbix monitoring system is now installed on the CentOS 7 server.<\/p>\n<h2 id=\"reference\">Reference<\/h2>\n<div>\n<p><b>Share this page:<\/b><\/p>\n<p>\n<a href=\"https:\/\/www.facebook.com\/sharer.php?u=https%3A%2F%2Fwww.howtoforge.com%2Ftutorial%2Fcentos-zabbix-system-monitoring%2F\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><img decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-18.png\" height=\"20\" alt=\"\" title=\"\"><\/a><br \/>\n<a href=\"https:\/\/twitter.com\/intent\/tweet?url=https%3A%2F%2Fwww.howtoforge.com%2Ftutorial%2Fcentos-zabbix-system-monitoring%2F&amp;text=How+to+Install+and+Configure+Zabbix+on+CentOS+7&amp;via=howtoforgecom&amp;related=howtoforgecom\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><img decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-19.png\" height=\"20\" alt=\"\" title=\"\"><\/a><br \/>\n<a href=\"https:\/\/twitter.com\/howtoforgecom\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><img decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-20.png\" height=\"20\" alt=\"\" title=\"\"><\/a><br \/>\n<a href=\"https:\/\/plus.google.com\/share?url=https%3A%2F%2Fwww.howtoforge.com%2Ftutorial%2Fcentos-zabbix-system-monitoring%2F\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><img decoding=\"async\" src=\"https:\/\/afaghhosting.net\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-and-configure-zabbix-on-centos-7-21.png\" height=\"20\" alt=\"\" title=\"\"><\/a>\n<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Zabbix is an open source monitoring tool for network services, network hardware, servers, and application. Designed to track and monitor the status of your system and servers. Zabbix offers support for many database systems &#8211; including MySQL, PostgreSQL, SQLite, and IBM DB2\u00a0 &#8211; to store data. Zabbix backend is written in C, and the frontend [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[36],"tags":[],"class_list":["post-3265","post","type-post","status-publish","format-standard","hentry","category-36"],"_links":{"self":[{"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/posts\/3265","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/comments?post=3265"}],"version-history":[{"count":0,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/posts\/3265\/revisions"}],"wp:attachment":[{"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/media?parent=3265"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/categories?post=3265"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/afaghhosting.net\/blog\/wp-json\/wp\/v2\/tags?post=3265"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}