Check Nginx status
sudo systemctl status nginx
Check the Zabbix Server Status
sudo systemctl status zabbix-server
Nginx configuration: Check whether Nginx is correctly configured with Zabbix's virtual host. Usually the configuration file is located in:
vi /etc/nginx// or /etc/nginx/sites-available/zabbix
Check Nginx error log: tail -f /var/log/nginx/
/speedwalkman/article/details/130793843
Zabbix's default web interface is usually located at:http://your server IP or domain name/zabbix
When you first visit the Zabbix web interface:
Default username: Admin (note the capitalization of A)
Default password: zabbix
Ubuntu 22.04 installation td-agent is missing libssl1.1. Which package should I install?
In Ubuntu 22.04 (Jammy Jellyfish) and later, the official repository no longer provides libssl1.1 by default (substituted by libssl3).
But some older software (such as Zabbix, certain games, or third-party apps) still rely on it, here's the solution:
Method 1. For Ubuntu 22.04/24.04, download compatible libssl1.1 directly from a secure repository for Ubuntu 20.04
wget /ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.19_amd64.deb
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.19_amd64.deb
ls -l /usr/lib/x86_64-linux-gnu/.1.1 # Check if the file exists
Method 2: Add Ubuntu 20.04 Temporary Repository (optional)
If the manual installation fails, you can temporarily add a repository for Ubuntu 20.04:
echo "deb /ubuntu focal-security main" | sudo tee /etc/apt//
sudo apt update
sudo apt install libssl1.1
It is recommended to disable this repository after installation to avoid mixed versions:
sudo rm /etc/apt//
sudo apt update