Just an update I downloaded CentOS 7 and was able to successfully build and install using the latest netxms source and postgres 12. However i did run into an initial issues when trying to nxdb init
Unable to connect to database netxms_db@localhost as netxms (FATAL: Ident authentication failed for user "netxms") i believe this is because the pg_hba.conf does not have an entry for netxms after changing to the following i was able to initialize via nxbmgr init
local all postgres trust
# IPv4 local connections:
host netxms_db netxms 127.0.0.1/32 md5
# IPv6 local connections:
host netxms_db netxms ::1/128 md5
using pqsql i created a db of netxms_db and user netxms with password of netxms for testing
hope this helps
Unable to connect to database netxms_db@localhost as netxms (FATAL: Ident authentication failed for user "netxms") i believe this is because the pg_hba.conf does not have an entry for netxms after changing to the following i was able to initialize via nxbmgr init
local all postgres trust
# IPv4 local connections:
host netxms_db netxms 127.0.0.1/32 md5
# IPv6 local connections:
host netxms_db netxms ::1/128 md5
using pqsql i created a db of netxms_db and user netxms with password of netxms for testing
hope this helps