Hello!
I am trying to put together a Proof of Concept environment for Zabbix.
This environment would built up from 2 CentOS 8 Zabbix Server(in cluster), 2 CentOS 8 PostgreSQL(10) server, and possibly 2 front-end servers.
I have stuck with the installation. As the servers doesn't have internet access I could use 2 options:
- Setup a Local repository with all the Zabbix files and dependencies (which I couldn't exactly find)
- Use the "installation from Source" method.
I have chosen the 2nd option. The DB server is set up. Let say its name is 'zabbixDB1' in 'company.com' (AD)domain.
Let's call the Zabbix Server 'zabbixSRV1' in 'comapny.com' domain.
I have used this guide: https://www.zabbix.com/documentation...lation/install
and configured the DB based on this: https://www.zabbix.com/documentation...all/db_scripts
However I am stuck with the
command.
I get back this error message:
I have these packages installed for PostgreSQL on the 'zabbixSRV1'
I have tried to configure the 'zabbix_server.conf' file under the Zabbix-5.0.0/conf folder with the following:
Can you help what did I miss in this case?
I am trying to put together a Proof of Concept environment for Zabbix.
This environment would built up from 2 CentOS 8 Zabbix Server(in cluster), 2 CentOS 8 PostgreSQL(10) server, and possibly 2 front-end servers.
I have stuck with the installation. As the servers doesn't have internet access I could use 2 options:
- Setup a Local repository with all the Zabbix files and dependencies (which I couldn't exactly find)
- Use the "installation from Source" method.
I have chosen the 2nd option. The DB server is set up. Let say its name is 'zabbixDB1' in 'company.com' (AD)domain.
Let's call the Zabbix Server 'zabbixSRV1' in 'comapny.com' domain.
I have used this guide: https://www.zabbix.com/documentation...lation/install
and configured the DB based on this: https://www.zabbix.com/documentation...all/db_scripts
However I am stuck with the
HTML Code:
./configure --enable-server --with-postgresql --with-net-snmp
I get back this error message:
HTML Code:
checking for pg_config... no configure: error: PostgreSQL library not found
I have these packages installed for PostgreSQL on the 'zabbixSRV1'
HTML Code:
postgresql.x86_64 10.6-1.module_el8.0.0+15+f57f353b @InstallMedia-AppStream postgresql-contrib.x86_64 10.6-1.module_el8.0.0+15+f57f353b @InstallMedia-AppStream postgresql-pltcl.x86_64 10.6-1.module_el8.0.0+15+f57f353b @InstallMedia-AppStream postgresql-server.x86_64 10.6-1.module_el8.0.0+15+f57f353b @InstallMedia-AppStream postgresql-server-devel.x86_64 10.6-1.module_el8.0.0+15+f57f353b @InstallMedia-AppStream
HTML Code:
### Option: DBHost # Database host name. # If set to localhost, socket is used for MySQL. # If set to empty string, socket is used for PostgreSQL. # # Mandatory: no # Default: # DBHost=localhost DB-Host=zabbixDB1.company.com ### Option: DBName # Database name. # # Mandatory: yes # Default: # DBName= DBName=zabbix ### Option: DBSchema # Schema name. Used for PostgreSQL. # # Mandatory: no # Default: # DBSchema= ### Option: DBUser # Database user. # # Mandatory: no # Default: # DBUser= DBUser=zabbixdb ### Option: DBPassword # Database password. # Comment this line if no password is used. # # Mandatory: no # Default: # DBPassword= DBPassword=SecurePasswordHere ### Option: DBSocket # Path to MySQL socket. # # Mandatory: no # Default: # DBSocket= ### Option: DBPort # Database port when not using local socket. # # Mandatory: no # Range: 1024-65535 # Default: # DBPort= DBPort=5432
Comment