OSSEC is an Open Source Host-based Intrusion Detection System that performs log analysis, file integrity checking, policy monitoring, rootkit detection, real-time alerting and active response.
In the PostgreSQL database, the "agent" table is empty
psql (9.5.10)
Type "help" for help.
ossecdb=> select * from agent;
id | server_id | last_contact | ip_address | version | name | information
----+-----------+--------------+------------+---------+------+-------------
(0 rows)
The "server" table is getting populated
ossecdb=> select * from server;
id | last_contact | version | hostname | information
----+--------------+---------+-------------+------------------------------------------------------------------------------------------------------------
1 | 1518122335 | v2.9.3 | ossecserver | Linux ossecserver 4.4.0-87-generic #110-Ubuntu SMP Tue Jul 18 12:55:35 UTC 2017 x86_64 - OSSEC HIDS v2.9.3
(1 row)
What am I missing? Why is the agent not being inserted into the table?
How can I get the OSSEC Server to populate the "agent" table?
OSSEC Server Version
My agent is visible and active
In the PostgreSQL database, the "agent" table is empty
The "server" table is getting populated
What am I missing? Why is the agent not being inserted into the table?
Thank you.