If you plan to use an existing user ignore this step. The existing user must be granted USAGE and SELECT privileges on the schema(s) you plan to use with Arcwise.
To create a new user follow these steps in psql.
CREATEUSERarcwiseWITHPASSWORD'{ENTER_PASSWORD_HERE}';-- Grant usage on the schema and select privileges on the tablesGRANT USAGE ONSCHEMA public TO arcwise;GRANTSELECTON ALL TABLES INSCHEMA public TO arcwise;-- OPTIONAL - Revoke select for table(s) that you would prefer to hide REVOKESELECTONTABLE {your_hidden_table} from arcwise;
(Optional) Allow connection from Arcwise IP address
If you need to add a fixed IP address to your allowlist or network policy, please refer to our Dirección IP Fija de Arcwise page.