{"id":11547,"date":"2019-03-14T12:03:37","date_gmt":"2019-03-14T12:03:37","guid":{"rendered":"http:\/\/www.appservgrid.com\/paw92\/?p=11547"},"modified":"2019-03-14T12:03:37","modified_gmt":"2019-03-14T12:03:37","slug":"how-to-install-zabbix-3-4-on-rhel-centos-and-debian-ubuntu-part-1","status":"publish","type":"post","link":"https:\/\/www.appservgrid.com\/paw92\/index.php\/2019\/03\/14\/how-to-install-zabbix-3-4-on-rhel-centos-and-debian-ubuntu-part-1\/","title":{"rendered":"How to Install Zabbix 3.4 on RHEL\/CentOS and Debian\/Ubuntu &#8211; Part 1."},"content":{"rendered":"<p><strong>Zabbix<\/strong>\u00a0is an Open Source, high-level enterprise software designed to monitor and keep track of networks, servers and applications in real time. Build in a server-client model, Zabbix can collect different type of data than are used to create historical graphics and output performance or load trends of the monitored targets.<\/p>\n<p>The server has the ability to check standard networking services (<strong>HTTP<\/strong>,\u00a0<strong>FTP<\/strong>,\u00a0<strong>SMTP<\/strong>,\u00a0<strong>IMAP<\/strong>\u00a0etc) without the need to install extra software on the monitored hosts.<\/p>\n<p>However, in order to gather data and create statistics about local services or other specific system resources that run on remote instances, such as CPU, disks, internal system process, RAM, etc, you need to install and configure a Zabbix agent.<\/p>\n<p>Following are the 4-article series about\u00a0<strong>Zabbix Monitoring<\/strong>\u00a0application:<\/p>\n<div id=\"exam_announcement\"><b>Part 1<\/b>:\u00a0<b>Installing and Configuring Zabbix 3.4 on Debian\/Ubuntu and RHEL\/CentOS 7<\/b><\/div>\n<div id=\"exam_announcement\"><b>Part 2<\/b>:\u00a0<a href=\"https:\/\/www.tecmint.com\/configure-zabbix-to-send-email-alerts-to-gmail\/\" target=\"_blank\" rel=\"noopener\">How to Configure \u2018Zabbix Monitoring\u2019 to Send Email Alerts to Gmail Account<\/a><\/div>\n<div id=\"exam_announcement\"><b>Part 3<\/b>:\u00a0<a href=\"https:\/\/www.tecmint.com\/install-and-configure-zabbix-agents-on-centos-redhat-and-debian\/\" target=\"_blank\" rel=\"noopener\">How to Install and Configure Zabbix Agents on Remote Linux Systems<\/a><\/div>\n<div id=\"exam_announcement\"><b>Part 4<\/b>:\u00a0<a href=\"https:\/\/www.tecmint.com\/install-zabbix-agent-and-add-windows-host-to-zabbix-monioring\/\" target=\"_blank\" rel=\"noopener\">How to Install Zabbix Agent and Add Windows Host to Zabbix Monitoring<\/a><\/div>\n<div>\n<p>This tutorial will focus on how to install latest version of\u00a0<strong>Zabbix 3.4 Server<\/strong>\u00a0on\u00a0<strong>Debian\/Ubuntu<\/strong>\u00a0and\u00a0<strong>RHEL<\/strong>\/<strong>CentOS 7<\/strong>\u00a0with MySQL\/MariaDB backend database to store collected data, PHP and Apache Web Server as the mainly web interface.<\/p>\n<p><strong>Important:<\/strong>\u00a0The given Zabbix instructions also works on all\u00a0<strong>Debian<\/strong>\u00a0derivatives and\u00a0<strong>RedHat<\/strong>\u00a0based systems like\u00a0<strong>RHEL<\/strong>\/<strong>CentOS<\/strong>\u00a0and\u00a0<strong>Fedora<\/strong>.<\/p>\n<h3>Step 1: Install Apache Web Server and PHP<\/h3>\n<p><strong>1.<\/strong>\u00a0First, install\u00a0<strong>Apache Web Server<\/strong>\u00a0alongside with\u00a0<strong>PHP<\/strong>\u00a0and its extensions in order to provide the web backed functionality for Zabbix Server by issuing the following command.<\/p>\n<pre><strong>--------------- On Debian\/Ubuntu ---------------<\/strong> \r\n$ sudo apt-get install apache2 php7.0 php7.0-mysql php7.0-ldap php7.0-bcmath php7.0-mbstring php7.0-gd php7.0-xml php7.0-mcrypt\r\n\r\n<strong>--------------- On CentOS\/RHEL ---------------<\/strong>\r\n# yum -y install epel-release\r\n# yum install httpd php php-mysql php-ldap php-bcmath- php-mbstring php-gd php-xml php-mcrypt\t\t\r\n<\/pre>\n<p><strong>2.<\/strong>\u00a0Next, you need to tune PHP interpreter and adjust some values in order to run Zabbix Server. So, open Apache\u00a0<code>php.ini<\/code>\u00a0configuration file for editing by issuing the following command:<\/p>\n<pre>$ sudo nano \/etc\/php\/7.0\/apache2\/php.ini \t[On <strong>Debian\/Ubuntu<\/strong>] \r\n# vi \/etc\/php.ini\t\t\t\t[On <strong>RHEL\/CentOS 7<\/strong>]\r\n<\/pre>\n<p>Now, search with\u00a0<strong>CTRL+C<\/strong>\u00a0and replace the following PHP values as it follows:<\/p>\n<pre>max_execution_time 300\r\nmemory_limit 128M\r\nalways_populate_raw_post_data -1\r\nsession.auto_start = 0\r\nmbstring.func_overload = 0\r\ndate.timezone = Europe\/Bucharest\r\n<\/pre>\n<p>Replace the\u00a0<strong>date.timezone<\/strong>\u00a0variable according to your server geographical location. A list of PHP supported Timezones can be found here\u00a0<a href=\"https:\/\/php.net\/manual\/en\/timezones.php\" target=\"_blank\" rel=\"noopener\">http:\/\/php.net\/manual\/en\/timezones.php<\/a>.<\/p>\n<p><strong>3.<\/strong>\u00a0After updating PHP configuration file, restart Apache daemon to reflect changes by issuing the following command.<\/p>\n<pre>$ sudo systemctl restart apache2.service\t [On <strong>Debian\/Ubuntu<\/strong>] \r\n# systemctl restart httpd.service\t\t [On <strong>RHEL\/CentOS 7<\/strong>]\r\n<\/pre>\n<h3>Step 2: Install MariaDB Database and Library<\/h3>\n<p><strong>4.<\/strong>\u00a0On the next step install MariaDB database and MySQL development library from binary packages. As MariaDB installs on your system you will be asked to set a password for the database root user during installation (Only on\u00a0<strong>Debian 8\/9<\/strong>). Choose a strong password, repeat it and wait for the installation to finish.<\/p>\n<pre>$ sudo apt-get install mariadb-server mariadb-client libmysqld-dev\t [On <strong>Debian\/Ubuntu<\/strong>] \r\n# yum install mariadb-server mariadb-client mariadb-devel\t         [On <strong>RHEL\/CentOS 7<\/strong>]\r\n<\/pre>\n<div id=\"attachment_14624\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Set-MySQL-root-Password.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-14624\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Set-MySQL-root-Password-620x191.png\" sizes=\"auto, (max-width: 620px) 100vw, 620px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Set-MySQL-root-Password-620x191.png 620w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Set-MySQL-root-Password.png 966w\" alt=\"Set MySQL root Password\" width=\"620\" height=\"191\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p class=\"wp-caption-text\">Set MySQL root Password<\/p>\n<\/div>\n<p><strong>5.<\/strong>\u00a0When the installation of\u00a0<strong>Mariadb<\/strong>\u00a0finishes, secure the database by issuing\u00a0<strong>mysql_secure_installation<\/strong>command with system root privileges ( answer with\u00a0<strong>yes<\/strong>\u00a0for removing anonymous users, disable root login remotely, remove test database and access to it and apply all changes).<\/p>\n<pre># mysql_secure_installation\r\n<\/pre>\n<p>Use the below screenshot as a guide.<\/p>\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Secure-MySQL-Installation.png\"><img decoding=\"async\" class=\"size-medium wp-image-14625 aligncenter\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Secure-MySQL-Installation.png\" sizes=\"(max-width: 757px) 100vw, 757px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Secure-MySQL-Installation.png 757w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Secure-MySQL-Installation-346x450.png 346w\" alt=\"Secure MySQL Installation\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p><strong>6.<\/strong>\u00a0The next requirement for Zabbix is setting-up a RDBMS database. Log in to your LAMP stack database component (MySQL or MariaDB) and create a Zabbix database and the credentials required to manage the database, by issuing the following commands.<\/p>\n<p>Make sure you replace database name, user and password to match your own settings.<\/p>\n<pre># mysql -u root -p\r\n<strong>MariaDB [(none)]&gt;<\/strong> create database zabbixdb character set utf8 collate utf8_bin;\r\n<strong>MariaDB [(none)]&gt;<\/strong> grant all privileges on zabbixdb.* to 'zabbixuser'@'localhost' identified by 'password1';\r\n<strong>MariaDB [(none)]&gt;<\/strong> flush privileges;\r\n<strong>MariaDB [(none)]&gt;<\/strong> exit\r\n<\/pre>\n<h3>Step 3: Install Zabbix Server<\/h3>\n<p><strong>7.<\/strong>\u00a0Now, start to install Zabbix server and Zabbix PHP frontend application by adding the official Zabbix repositories to your system package manager by issuing the following commands with root privileges.<\/p>\n<h4>Install Zabbix on Debian<\/h4>\n<pre># wget http:\/\/repo.zabbix.com\/zabbix\/3.4\/debian\/pool\/main\/z\/zabbix-release\/zabbix-release_3.4-1+stretch_all.deb \r\n# dpkg -i zabbix-release_3.4-1+stretch_all.deb\r\n# apt update\r\n# apt install zabbix-server-mysql zabbix-frontend-php \r\n<\/pre>\n<h4>Install Zabbix on Ubuntu<\/h4>\n<pre># wget http:\/\/repo.zabbix.com\/zabbix\/3.4\/ubuntu\/pool\/main\/z\/zabbix-release\/zabbix-release_3.4-1+xenial_all.deb \r\n# dpkg -i zabbix-release_3.4-1+xenial_all.deb\r\n# apt-get update\r\n# apt install zabbix-server-mysql zabbix-frontend-php \r\n<\/pre>\n<h4>Install Zabbix on CentOS<\/h4>\n<pre># rpm -ivh http:\/\/repo.zabbix.com\/zabbix\/3.4\/rhel\/7\/x86_64\/zabbix-release-3.4-2.el7.noarch.rpm\r\n# yum install zabbix-server-mysql zabbix-web-mysql\r\n<\/pre>\n<p>If you want to download and compile an older version, please visit Zabbix official\u00a0<a href=\"https:\/\/sourceforge.net\/projects\/zabbix\/files\/\" target=\"_blank\" rel=\"nofollow noopener\">Sourceforge<\/a>\u00a0repositories.<\/p>\n<p><strong>8.<\/strong>\u00a0Next, issue the below command with root privileges in order to install Zabbix agent in your system. Zabbix client will be used to actively monitor server\u2019s local system resources.<\/p>\n<pre># apt install zabbix-agent    [On <strong>Debian\/Ubuntu<\/strong>] \r\n# yum install zabbix-agent    [On <strong>RHEL\/CentOS 7<\/strong>] \r\n<\/pre>\n<p><strong>9.<\/strong>\u00a0On the next step, restart Apache HTTP server in order to apply Zabbix configuration file installed for Apache.<\/p>\n<pre># systemctl restart apache2   [On <strong>Debian\/Ubuntu<\/strong>] \r\n# systemctl restart httpd     [On <strong>RHEL\/CentOS 7<\/strong>] \r\n# setenforce 0                [Disable SELinux on <strong>RHEL\/CentOS 7<\/strong>] \r\n<\/pre>\n<h3>Step 4: Configure Zabbix Server and Agent<\/h3>\n<p><strong>10.<\/strong>\u00a0Before configuring the server, first, import Zabbix initial database schema to MySQL database. Import the schema against the database created for Zabbix application, by issuing the below command.<\/p>\n<pre># zcat \/usr\/share\/doc\/zabbix-server-mysql\/create.sql.gz | mysql -u zabbixuser zabbixdb -p\r\n<\/pre>\n<p><strong>11.<\/strong>\u00a0On the next step, setup Zabbix server by opening the main configuration file for editing with the following command.<\/p>\n<pre># nano \/etc\/zabbix\/zabbix_server.conf\r\n<\/pre>\n<p>In\u00a0<strong>zabbix_server.conf<\/strong>\u00a0file search and modify the following lines as presented in the below excerpt. Update the variables to reflect your own database settings.<\/p>\n<pre>DBHost=localhost\r\nDBName=zabbixdb\r\nDBUser=zabbixuser\r\nDBPassword=password1\r\n<\/pre>\n<p><strong>12.<\/strong>\u00a0Finally, save and close Zabbix server configuration file by pressing\u00a0<strong>Ctrl+o<\/strong>\u00a0and\u00a0<strong>Ctrl+x<\/strong>\u00a0file and restart Zabbix daemon to apply changes by issuing the below command.<\/p>\n<pre># systemctl restart zabbix-server.service\r\n<\/pre>\n<p><strong>13.<\/strong>\u00a0Next, configure Zabbix Agent configuration file by updating the following lines. First, open the file for editing.<\/p>\n<pre># nano \/etc\/zabbix\/zabbix_agentd.conf \r\n<\/pre>\n<p>Zabbix agent configuration file excerpt:<\/p>\n<pre>Server=127.0.0.1\r\nListenPort=10050\r\n<\/pre>\n<p><strong>14.<\/strong>\u00a0Save and close Zabbix agent configuration file and restart Zabbix Agent to reflect changes by issuing the following command.<\/p>\n<pre># systemctl restart zabbix-agent.service \r\n<\/pre>\n<h3>Step 5: Install and Configure Zabbix Frontend Interface<\/h3>\n<p><strong>15.<\/strong>\u00a0Now it\u2019s time to install\u00a0<strong>Zabbix Server Frontend<\/strong>\u00a0web interface. In order to accomplish this step open a browser and navigate to your server IP Address using\u00a0<strong>HTTP<\/strong>\u00a0or\u00a0<strong>HTTPS<\/strong>\u00a0protocol and the welcome screen should appear. Hit the\u00a0<strong>Next<\/strong>\u00a0button to move forward.<\/p>\n<pre>http:\/\/192.168.1.151\/zabbix\/setup.php\r\nOR\r\nhttps:\/\/192.168.1.151\/zabbix\/setup.php\r\n<\/pre>\n<p>On the first welcome screen, just hit the\u00a0<strong>Next<\/strong>\u00a0step button to move to the new step of the installation process.<\/p>\n<div id=\"attachment_27842\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Welcome-Screen-1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-27842\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Welcome-Screen-1.png\" sizes=\"auto, (max-width: 898px) 100vw, 898px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Welcome-Screen-1.png 898w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Welcome-Screen-1-768x546.png 768w\" alt=\"Zabbix Welcome Screen\" width=\"898\" height=\"638\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p class=\"wp-caption-text\">Zabbix Welcome Screen<\/p>\n<\/div>\n<p><strong>16.<\/strong>\u00a0After a series of checks, if all pre-requires values are satisfied, hit the\u00a0<strong>Next<\/strong>\u00a0button to proceed further.<\/p>\n<div id=\"attachment_27843\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Check-Zabbix-Pre-Requisites.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-27843\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Check-Zabbix-Pre-Requisites.png\" sizes=\"auto, (max-width: 882px) 100vw, 882px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Check-Zabbix-Pre-Requisites.png 882w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Check-Zabbix-Pre-Requisites-768x553.png 768w\" alt=\"Check Zabbix Pre-Requisites\" width=\"882\" height=\"635\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p class=\"wp-caption-text\">Check Zabbix Pre-Requisites<\/p>\n<\/div>\n<p><strong>17.<\/strong>\u00a0On the next step provide the settings for MySQL database, hit the\u00a0<strong>Test connection<\/strong>\u00a0button to test MySQL connectivity and move to the step by pressing the\u00a0<strong>Next<\/strong>\u00a0button.<\/p>\n<div id=\"attachment_27844\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-DB-Configuration-1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-27844\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-DB-Configuration-1.png\" sizes=\"auto, (max-width: 886px) 100vw, 886px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-DB-Configuration-1.png 886w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-DB-Configuration-1-768x550.png 768w\" alt=\"Zabbix DB Configuration\" width=\"886\" height=\"634\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p class=\"wp-caption-text\">Zabbix DB Configuration<\/p>\n<\/div>\n<p><strong>18.<\/strong>\u00a0Next, supply the\u00a0<strong>Host<\/strong>\u00a0(or\u00a0<strong>IP Address<\/strong>) and the\u00a0<strong>Port<\/strong>\u00a0of the Zabbix server (use the host localhost and the port\u00a0<strong>10051<\/strong>\u00a0because zabbix server is configured to run on the same host as the zabbix frontend web interface in this tutorial) and a Name for Zabbix frontend installation. When you\u2019re done hit\u00a0<strong>Next<\/strong>\u00a0to continue.<\/p>\n<div id=\"attachment_27845\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Server-Details.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-27845\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Server-Details.png\" sizes=\"auto, (max-width: 876px) 100vw, 876px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Server-Details.png 876w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Server-Details-768x553.png 768w\" alt=\"Zabbix Server Details\" width=\"876\" height=\"631\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p class=\"wp-caption-text\">Zabbix Server Details<\/p>\n<\/div>\n<p><strong>19.<\/strong>\u00a0Next, check all the configurations parameters, enter command line and issue the following command to grant zabbix permissions to write the apache web configuration file in conf directory.<\/p>\n<p>Then switch back to web interface and hit\u00a0<strong>Next<\/strong>\u00a0button to write zabbix configuration file.<\/p>\n<pre># chown -R www-data \/var\/www\/html\/conf\/\t\t[on <strong>Debian 8<\/strong>]\r\n# chown -R apache \/var\/www\/html\/conf\/\t\t[on <strong>RHEL\/CentOS 7<\/strong>]\r\n<\/pre>\n<div id=\"attachment_27846\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Summary.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-27846\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Summary.png\" sizes=\"auto, (max-width: 876px) 100vw, 876px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Summary.png 876w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Summary-768x552.png 768w\" alt=\"Zabbix Pre-Installation Summary\" width=\"876\" height=\"630\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p class=\"wp-caption-text\">Zabbix Pre-Installation Summary<\/p>\n<\/div>\n<p><strong>20.<\/strong>\u00a0After the installation process completes, a congratulations message will appear in your browser. Hit on\u00a0<strong>Finish<\/strong>\u00a0button to exit Zabbix frontend installer.<\/p>\n<div id=\"attachment_27847\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Installation-Completed-1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-27847\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Installation-Completed-1.png\" sizes=\"auto, (max-width: 878px) 100vw, 878px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Installation-Completed-1.png 878w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Installation-Completed-1-768x558.png 768w\" alt=\"Zabbix Installation Completed\" width=\"878\" height=\"638\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p class=\"wp-caption-text\">Zabbix Installation Completed<\/p>\n<\/div>\n<p><strong>21.<\/strong>\u00a0Finally, navigate to your server IP address or domain name by appending\u00a0<strong>\/zabbix<\/strong>\u00a0URL address and log in to Zabbix web admin panel with the default credentials presented below.<\/p>\n<pre>https:\/\/your_domain.tld\/zabbix\/ \r\nUsername: Admin\r\nPassword: zabbix\r\n<\/pre>\n<div id=\"attachment_27848\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Admin-Login.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-27848\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Admin-Login.png\" sizes=\"auto, (max-width: 777px) 100vw, 777px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Admin-Login.png 777w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Admin-Login-768x545.png 768w\" alt=\"Zabbix Admin Login\" width=\"777\" height=\"551\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p class=\"wp-caption-text\">Zabbix Admin Login<\/p>\n<\/div>\n<p><strong>22.<\/strong>\u00a0After you\u2019ve logged in to Zabbix admin panel, you can start to configure Zabbix and add new network resources to be monitored by Zabbix server.<\/p>\n<div id=\"attachment_27849\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Dashboard-1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-27849\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Dashboard-1.png\" sizes=\"auto, (max-width: 980px) 100vw, 980px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Dashboard-1.png 980w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Zabbix-Dashboard-1-768x451.png 768w\" alt=\"Zabbix Dashboard\" width=\"980\" height=\"576\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p class=\"wp-caption-text\">Zabbix Dashboard<\/p>\n<\/div>\n<p><strong>23.<\/strong>\u00a0To change Zabbix frontend admin account password, navigate to\u00a0<strong>Administration -&gt; Users \u2013&gt; User<\/strong>\u00a0and hit on\u00a0<strong>Change password<\/strong>\u00a0button and add your new password, as illustrated in the below screenshot. Finally, hit on the bottom\u00a0<strong>Update<\/strong>\u00a0button in order to save admin account new password.<\/p>\n<div id=\"attachment_27850\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Change-Zabbix-Admin-Password.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-27850\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Change-Zabbix-Admin-Password.png\" sizes=\"auto, (max-width: 780px) 100vw, 780px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Change-Zabbix-Admin-Password.png 780w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2015\/07\/Change-Zabbix-Admin-Password-768x714.png 768w\" alt=\"Change Zabbix Admin Password\" width=\"780\" height=\"725\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p class=\"wp-caption-text\">Change Zabbix Admin Password<\/p>\n<\/div>\n<p>That\u2019all! On the next series concerning Zabbix monitoring system will discuss how to setup the server further using the web interface and how to install and configure Zabbix agents on different Linux distributions or even Windows systems.<\/p>\n<p><a style=\"font-size: 1rem;\" href=\"https:\/\/www.tecmint.com\/install-and-configure-zabbix-monitoring-on-debian-centos-rhel\/\" target=\"_blank\" rel=\"noopener\">Source<\/a><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Zabbix\u00a0is an Open Source, high-level enterprise software designed to monitor and keep track of networks, servers and applications in real time. Build in a server-client model, Zabbix can collect different type of data than are used to create historical graphics and output performance or load trends of the monitored targets. The server has the ability &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.appservgrid.com\/paw92\/index.php\/2019\/03\/14\/how-to-install-zabbix-3-4-on-rhel-centos-and-debian-ubuntu-part-1\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;How to Install Zabbix 3.4 on RHEL\/CentOS and Debian\/Ubuntu &#8211; Part 1.&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-11547","post","type-post","status-publish","format-standard","hentry","category-linux"],"_links":{"self":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/11547","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/comments?post=11547"}],"version-history":[{"count":1,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/11547\/revisions"}],"predecessor-version":[{"id":11548,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/11547\/revisions\/11548"}],"wp:attachment":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/media?parent=11547"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/categories?post=11547"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/tags?post=11547"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}