How to install Zabbix ( software tool to monitor IT infrastructure) Server on Ubuntu

preview_player
Показать описание
Update Server:
apt update && apt upgrade -y

Set hostname:

Install Nginx, MySQL, PHP:
sudo apt install nginx
sudo apt install mysql-server
sudo mysql_secure_installation
sudo apt install php-fpm php-mysql

Installing the Zabbix Server:
sudo apt update
sudo apt install zabbix-server-mysql zabbix-frontend-php
sudo apt install zabbix-agent

Configuring the MySQL Database:
sudo mysql -u root -p
create database zabbix character set utf8 collate utf8_bin;
quit;
update
# DBPassword=

Configuring Nginx for Zabbix:
sudo apt install zabbix-nginx-conf
update
server {
listen 80;

sudo nginx -t
sudo nginx -s reload

Configuring PHP for Zabbix:
update

sudo systemctl start zabbix-server
sudo systemctl status zabbix-server
sudo systemctl enable zabbix-server

Configuring Settings for the Zabbix Web Interface:

user- Admin
pass- zabbix
Рекомендации по теме