Hi,
I am trying to install Zabbix on my Raspberry Pi 4 following this tutorial. Have installed NGINX and MySQL and am trying to download the repositories using
.
This is the output
If I enter the URL into Chromium on the Pi I get an invalid certificate, yet using the same URL in Windows the certificate is valid. Why is this?
I read that using
will bypass the check, so continuing
is fine,
, returns
and
is
.
What am I doing wrong?
Thanks
I am trying to install Zabbix on my Raspberry Pi 4 following this tutorial. Have installed NGINX and MySQL and am trying to download the repositories using
Code:
wget https://repo.zabbix.com/zabbix/6.2/raspbian/pool/main/z/zabbix-release/zabbix-release_6.2-2%2Bdebian11_all.deb
This is the output
--2023-01-19 14:39:56-- https://repo.zabbix.com/zabbix/6.2/r...bian11_all.deb
Resolving repo.zabbix.com (repo.zabbix.com)... 178.128.6.101, 2604:a880:2:d0::2062:d001
Connecting to repo.zabbix.com (repo.zabbix.com)|178.128.6.101|:443... connected.
ERROR: The certificate of ‘repo.zabbix.com’ is not trusted.
ERROR: The certificate of ‘repo.zabbix.com’ doesn't have a known issuer.
Resolving repo.zabbix.com (repo.zabbix.com)... 178.128.6.101, 2604:a880:2:d0::2062:d001
Connecting to repo.zabbix.com (repo.zabbix.com)|178.128.6.101|:443... connected.
ERROR: The certificate of ‘repo.zabbix.com’ is not trusted.
ERROR: The certificate of ‘repo.zabbix.com’ doesn't have a known issuer.
If I enter the URL into Chromium on the Pi I get an invalid certificate, yet using the same URL in Windows the certificate is valid. Why is this?
I read that using
Code:
--no-check-certificate
Code:
sudo dpkg -i zabbix-release_6.2-2+debian11_all.deb
Code:
sudo apt update
Hit:1 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
Hit:2 http://archive.raspberrypi.org/debian bullseye InRelease
Err:3 https://repo.zabbix.com/zabbix-agent...ins/1/raspbian bullseye InRelease
Certificate verification failed: The certificate is NOT trusted. The certificate issuer is unknown. Could not handshake: Error in the certificate verification. [IP: 178.128.6.101 443]
Err:4 https://repo.zabbix.com/zabbix/6.2/raspbian bullseye InRelease
Certificate verification failed: The certificate is NOT trusted. The certificate issuer is unknown. Could not handshake: Error in the certificate verification. [IP: 178.128.6.101 443]
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up to date.
W: Failed to fetch https://repo.zabbix.com/zabbix-agent...seye/InRelease Certificate verification failed: The certificate is NOT trusted. The certificate issuer is unknown. Could not handshake: Error in the certificate verification. [IP: 178.128.6.101 443]
W: Failed to fetch https://repo.zabbix.com/zabbix/6.2/r...seye/InRelease Certificate verification failed: The certificate is NOT trusted. The certificate issuer is unknown. Could not handshake: Error in the certificate verification. [IP: 178.128.6.101 443]
W: Some index files failed to download. They have been ignored, or old ones used instead.
Hit:2 http://archive.raspberrypi.org/debian bullseye InRelease
Err:3 https://repo.zabbix.com/zabbix-agent...ins/1/raspbian bullseye InRelease
Certificate verification failed: The certificate is NOT trusted. The certificate issuer is unknown. Could not handshake: Error in the certificate verification. [IP: 178.128.6.101 443]
Err:4 https://repo.zabbix.com/zabbix/6.2/raspbian bullseye InRelease
Certificate verification failed: The certificate is NOT trusted. The certificate issuer is unknown. Could not handshake: Error in the certificate verification. [IP: 178.128.6.101 443]
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up to date.
W: Failed to fetch https://repo.zabbix.com/zabbix-agent...seye/InRelease Certificate verification failed: The certificate is NOT trusted. The certificate issuer is unknown. Could not handshake: Error in the certificate verification. [IP: 178.128.6.101 443]
W: Failed to fetch https://repo.zabbix.com/zabbix/6.2/r...seye/InRelease Certificate verification failed: The certificate is NOT trusted. The certificate issuer is unknown. Could not handshake: Error in the certificate verification. [IP: 178.128.6.101 443]
W: Some index files failed to download. They have been ignored, or old ones used instead.
Code:
sudo apt install zabbix-server-mysql zabbix-frontend-php zabbix-nginx-conf zabbix-sql-scripts zabbix-agent
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package zabbix-nginx-conf
E: Unable to locate package zabbix-sql-scripts
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package zabbix-nginx-conf
E: Unable to locate package zabbix-sql-scripts
What am I doing wrong?
Thanks
Comment