An issue has been identified where a Vertica node within a Data Repository cluster generates an excessive volume of SSH connection attempts to other nodes using the pmadmin user. These connections are frequently closed, leading to:
/var/log/secure (e.g., Connection closed by authenticating user pmadmin [preauth]).The source of these connections often uses sshpass to attempt password-based authentication when passwordless SSH is not configured for the pmadmin user.
pmadmin user.The excessive SSH attempts are typically not caused by standard Performance Management monitoring. The Data Aggregator monitors the Data Repository via JDBC on port 5433, not through SSH loops.
In reported cases, the root cause was a hung instance of the dr_validate.sh script. This script is part of the Data Repository validation process and uses sshpass for automated connectivity checks. If the process becomes stuck in an infinite loop, it will continuously attempt to authenticate, causing the observed log volume.
To resolve this issue, identify and terminate the hung validation process on the source Vertica node:
/var/log/secure to ensure the "Connection closed" entries for the pmadmin user have stopped.Log into the source node and trace what is executing ssh against target node:
crontab -l -u pmadmin (to check for custom automated tasks).
systemctl list-timers --all (to check for systemd timers).
watch -n 1 'ps -ef | grep sshpass' (to catch the process execution in real-time, since your logs show it triggering every few seconds).