How To Install Zabbix Server 7.4 On Ubuntu 22.04

Zabbix is smart monitoring system on your network. This software written by php mysql. So lets start using installation process on Ubuntu 22.04 server.

Operating system: Ubuntu 22.04
IP address : 192.168.0.20
RAM  : 2GB
DISK space : 50GB
vCPU  : 2
Service  : ZABBIX 7.4
PHP version : 8.0
Mysql  : 8.0 must be
Hostname : zbx.technologyrss.local

Check server version using below command.

root@zabbix:~# lsb_release -a && ip r

Step : Install zabbix 7.4 On Ubuntu 22.04 Server

root@zabbix:~# apt update && apt -y upgrade
root@zabbix:~# apt install -y apt-transport-https lsb-release ca-certificates
root@zabbix:~# apt install -y php php-mysql php-common php-cli php-common php-json php-readline php-mbstring php-gd php-zip php-curl
root@zabbix:~#

Sponsored
wget https://repo.zabbix.com/zabbix/7.4/release/ubuntu/pool/main/z/zabbix-release/zabbix-release_latest_7.4+ubuntu22.04_all.deb root@zabbix:~# dpkg -i zabbix-release_latest_7.4+ubuntu22.04_all.deb root@zabbix:~# apt update root@zabbix:~# apt install -y zabbix-server-mysql zabbix-frontend-php zabbix-nginx-conf zabbix-sql-scripts zabbix-agent

Step : Install mysql database and configure root user password

root@zabbix:~# apt install -y mysql-server
root@zabbix:~# systemctl start mysqld
root@zabbix:~# systemctl enable mysqld
root@zabbix:~# systemctl status mysqld
root@zabbix:~# mysql -u root -p

Default mysql root password is blank.

mysql> SELECT user,authentication_string,plugin,host FROM mysql.user; //mysql 8 reset password command.
mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'passw0rd@123';
mysql> use mysql;
mysql> UPDATE user SET plugin="mysql_native_password" WHERE User='root';
mysql> flush privileges;

Step : Create database for zabbix user with password.

create database zabbix_db character set utf8mb4 collate utf8mb4_bin;
create user zabbix_user@localhost identified by 'zabbix@123';
GRANT CREATE, ALTER, DROP, INSERT, UPDATE, DELETE, SELECT, REFERENCES, RELOAD on *.* TO 'zabbix_user'@'localhost' WITH GRANT OPTION;
grant all privileges on zabbix_db.* to zabbix_user@localhost;
set global log_bin_trust_function_creators = 1;
FLUSH PRIVILEGES;
q

Note: (you can replace user password from zabbix@123)

Step : Import zabbix default database on created database.

root@zabbix:~# zcat /usr/share/zabbix/sql-scripts/mysql/server.sql.gz | mysql --default-character-set=utf8mb4 -uzabbix_user -p zabbix_db

Then type mysql zabbix_user password.

After import database Disable log_bin_trust_function_creators option after importing database schema.

root@zabbix:~# mysql -uroot -p

Then type mysql root password. Run below command.

set global log_bin_trust_function_creators = 0;
FLUSH PRIVILEGES;
q

Step : Add database name, user and password on zabbix server conf file.

root@zabbix:~# vi /etc/zabbix/zabbix_server.conf

Then Add below all lines into this file. But remember it DBName & DBUser remove or # mark from default.

DBName=zabbix_db
DBUser=zabbix_user
DBPassword=zabbix@123

Step : Setup nginx web server

root@zabbix:~# vi /etc/nginx/conf.d/zabbix.conf

Remove # mark from below line and replace ip address as your server ip.

listen          80;
server_name 192.168.0.20;

Step : restart and enable all services using below command.

root@zabbix:~# service apache2 stop
root@zabbix:~# apt remove apache2 -y
root@zabbix:~# systemctl restart zabbix-server zabbix-agent nginx php8.1-fpm
root@zabbix:~# systemctl enable zabbix-server zabbix-agent nginx php8.1-fpm
After reboot access your server ip address and complete web installation process.

http://192.168.0.20/setup.php

 

Click Next step

Sponsored

 

All status is OK, so Click Next step.

 

Click Next step.

 

Click Next step.

Click Finish.

Now default login using Admin user and password.

After successfully done web installation then login to dashboard.
Default login:
User name: Admin
Password: zabbix

 

If you face any error for installation process so please see my YouTube Channel more videos.

The post How To Install Zabbix Server 7.4 On Ubuntu 22.04 appeared first on TechnologyRSS.

Ubuntu Server Admin

Recent Posts

How To Install Zabbix Server 7.2 On Ubuntu 22.04

Zabbix is smart monitoring system on your network. This software written by php mysql. So…

4 hours ago

SuperTuxKart 1.5 RC2 added GUI option to Choose Vulkan or DirectX 9

SuperTuxKart, the 3D kart racing game, announced the second release candidate for the next 1.5…

4 hours ago

What’s the state of open source adoption in Europe?

New research suggests 86% of European organizations believe open source is valuable for the future…

21 hours ago

What are dependencies, and how do you secure them?

Open source software is everywhere. Research shows that around 97% of codebases contain open source…

22 hours ago

How we ran a sprint to refresh our design website, Part 2

This is Part 2 in the series about our website Design sprint. View Part 1…

2 days ago

GNOME 49 RC Released! Re-enable X11 Support in GDM

The release candidate (RC) of GNOME Desktop 49 is out for testing purpose! This is…

2 days ago