DX NetOps Performance Management any version
Vertica provided the following steps and these are official:
Vertica recommended the following steps to recover the failed node:
1. Added a new node
$ sudo /opt/vertica/sbin/update_vertica --add-hosts <xx.xx.xx.xx> --rpm verticaxxxxxx.rpm -u dbadmin
2. Placed new node in STANDBY:
ALTER NODE <node-name> STANDBY;
3. Manually Replacing a Node, enter the command:
ALTER NODE <node-name> REPLACE WITH <standby-node-name>;
4. Remove the node from the database using drop command.
DROP NODE <node-name> CASCADE;
5. Remove any occurrence of the down node in the admintools.conf file (/opt/vertica/config/admintools.conf, manually edit it).
6. Distribute the edited admintools.conf in all the nodes in the cluster by using admintools. Command:
$ admintools -t distribute_config_files
7. Perform the query below to confirm the node is gone.
SELECT * FROM nodes;