Zabbix is an enterprise-level open source solution that provides distributed system monitoring and network monitoring capabilities based on a WEB interface. Experimental environment In the past, people may often deploy zabbix based on apache, but this may occasionally cause some problems. For example, the company system framework is nginx, and the built zabbix is based on apache, which will cause incompatibility. Today, I will show you how to deploy zabbix5.0 based on nginx.
Installation and DeploymentServer configuration source rpm -Uvh https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm yum repolist #View zabbix source files yum list zabbix* #View which zabbix application packages exist in the current source #Directly install the zabbix server and client yum -y install zabbix-server-mysql zabbix-agent #Install a dependency package for the web front-end service yum -y install centos-release-scl #Install the dependency package of scl, mainly used to call the source After the installation is complete, we need to modify the yum source file downloaded earlier, because in the 5.0 version of the zabbix source, the web front-end source is disabled by default, we need to enable cd /etc/yum.repo.d/ vim zabbix.repo #Find [zabbix-frontend] (front end) enabled=0 #Change the shutdown here to 1, which means it is enabled #After the modification is completed, use yum list zabbix again and you will find that there are more web-related sources in the source file #Install the web front-end service yum -y install zabbix-web-mysql-scl zabbix-nginx-conf-scl At this point, all the applications on the zabbix server have been deployed, and now we are ready to deploy the database. Install and configure the database (mariadb is used here, and interested students can try compiling or installing mysql in other ways)yum -y install mariadb-server After the database is installed, you can start the database and see systemctl start mariadb.service #After the execution is complete, you can use the following command to check whether the database is started normally: netstat -ltunp | grep 3306 After mariadb is installed, there is no login password by default. We can directly use mysql to log in to the database After logging in, you can create a business database first (it should be noted here that when creating a database, you should pay attention to the character set setting, otherwise there will be problems when deploying it on the subsequent web side) [root@localhost ~]mysql Mariadb [(none)] > Mariadb [(none)] >create database zabbix character set utf8 collate utf8_bin; #Specify the character set as utf8 when creating a database Mariadb [(none)] > Mariadb [(none)] >show databases; #Check whether the database is created successfully. #After you see that the zabbix database has been successfully created, you can exit the database. Then let's check what zabbix installed during installation. rpm -ql zabbix-server-mysql Here we can see that when we install, zabbix provides a gz compressed package for initialization. We export all the SQL statements in this compressed package for subsequent use [root@localhost ~] zcat /usr/share/doc/zabbix-server-mysql-5.0.13/create.sql.gz > zabbix.sql [root@localhost ~] ls #You can view the sql file we exported [root@localhost ~] mysql < zabbix.sql ERROR 1046 (3D000) at line 1: No database selected #Here you can see an error message. No database is available for viewing. #Then let's modify the zabbix.sql file slightly [root@localhost ~] vim zabbix.sql #Add use zabbix at the top of the file; [root@localhost ~] mysql < zabbix.sql #Then import the data again After the import is complete, we enter the database again to view the previously imported data table [root@localhost ~]mysql Mariadb [(none)] > use zabbix Mariadb [(none)] > show tables; #Because zabbix needs to link to the database, we need to perform a user authorization operation here Mariadb [(none)] > grant all on zabbix.* to zabbix@localhost identified by 'zabbix'; #At this point, the database is considered deployed and configured. Configuration of zabbix server[root@localhost ~] vim /etc/zabbix/zabbix_server.conf #Configuration file for the zabbix server#After entering, let's look for DBName. There will be a parameter configuration of DBName=zabbix. The default here is zabbix #DBName=zabbix #Here, because the name of the database we created is zabbix, there is no need to modify it. However, if some students create a database with a database name other than zabbix, they need to modify it here. DBUser=zabbix #User to connect to the database #DBPassword= #The original configuration file has no password by default, so you need to modify it to DBPassword=zabbix #DBSocket= #socket is consistent with the default, no need to modify it here Web-side PHP configuration[root@localhost ~] cd /etc/opt/rh/ [root@localhost rh] ls rh-nginx116 rh-php72 [root@localhost rh] cd rh-php72 #Modify the php configuration file here first [root@localhost rh-php72] ls opt pear pear.conf php.d php-fpm.conf php-fpm.d php.ini pki pm skel sysconfig X11 xdg xinetd.d [root@localhost rh-php72] vim php-fpm.d/zabbix.conf 6 listen.acl_users=apache,nginx #Listening authentication user, the default is apache, we need to add an nginx 24; php_value[date.timezone] = Europe/Riga #The default time zone here is the European time zone, which needs to be modified 24 php_value[date.timezone] = Asia/Shanghai #Here are the two places where PHP needs to be modified Configuration modification of nginx on the web side[root@localhost rh-php72] cd .. [root@localhost rh] cd rh-nginx116 [root@localhost rh-nginx116] ls nginx opt pki pm skel sysconfig X11 xdg xinetd.d [root@localhost rh-nginx116] cd nginx [root@localhost nginx] cd conf.d [root@localhost conf.d] ls zabbix.conf [root@localhost conf.d] vim zabbix.conf server { # listen 80; # server_name example.com; Here you only need to modify the above two items specifically, change them to listen 80; server_name localhost; #This can be changed to the domain name corresponding to the business... ... } Here, because in the configuration file, we configure the listening port to be 80 and the listening domain name to be local, we need to comment these two items in the main configuration file. [root@localhost conf.d] cd .. [root@localhost nginx] vim nginx.conf server { # listen 80 default_server # listen [::]:80 default_server } #Comment out all the configurations in the server here to ensure that the two configuration files do not conflict At this point, our zabbix-server, php, nginx, and mysql have all been deployed and configured. Then let's check some of our local basic security policies [root@localhost nginx] systemctl status firewalld [root@localhost nginx] systemctl disable firewalld [root@localhost nginx] getenforce Enforcing # indicates the enabled state and needs to be turned off [root@localhost nginx] setenforce 0 [root@localhost nginx] vim /etc/selinux/config SELINUX = disable #Change this to disable Now the deployment is almost complete. Let's start the corresponding service and see the effect [root@localhost nginx] systemctl start zabbix-server.service [root@localhost nginx] systemctl start rh-php72-php-fpm.service [root@localhost nginx] systemctl start rh-nginx116-nginx.service [root@localhost nginx] netstat -lutnp Among them, 9000 is the port of php, 3306 is the port of mysql, 80 is the port of nginx, and 10051 is the port of zabbix-server. #Check whether the above ports exist. If the ports exist, it means that the corresponding applications have been started. After everything is started, we can view it by accessing it through the browser Just enter the IP address corresponding to our server in the browser to access it. Here we mainly check whether the parts marked by the editor are all ok. If there are some that are not in ok state, we need to repair them individually. Here is the instance name, user, and password of the database. Just fill it in according to the situation when we installed the database. This is the user name of zabbix Here are all the parameters that zabbix needs to configure on the web page As you can see here, congratulations, you have successfully installed the zabbix service The default username of zabbix is Admin and the password is zabbix In zabbix5.0, there is a configuration that can be modified to display Chinese characters. Here we can see that the page has been converted into Chinese. At this point, the deployment of zabbix5.0 based on nginx is completed. For more relevant nginx zabbix 5.0 installation and deployment content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Commonly used English fonts for web page creation
>>: Example code of javascript select all/unselect all operation in html
I encountered a very strange problem today. Look a...
Table of contents Update the image from an existi...
Software version and platform: MySQL-5.7.17-winx6...
Preface This article mainly introduces 4 methods ...
During the use of mysql, it was found that the nu...
Performance of union all in MySQL 5.6 Part 1:MySQ...
HTTP Header Explanation 1. Accept: Tells the web s...
1. Create a Docker network docker network create ...
Table of contents 1. Download nodejs 2. Double-cl...
Problem description: I bought a Mac and installed...
Table of contents background Why error handling? ...
Since I found that the push image always timed ou...
Experimental environment Apache and Tomcat are bo...
This article describes how to boot the Linux syst...
In our life, work and study, social networks have ...