Change Database Passwords for PostgreSQL
Warning
You should change the passwords for the Alteryx databases immediately after installing the software.
Please complete the following steps to change the passwords for the Designer Cloud Powered by Trifacta platform users of the Alteryx databases.
Change in Database Server
If you have not done so already, switch to the Postgres user and launch psql:
sudo su - postgres psql
For each database, change the default password. Default usernames are listed for each database. Please modify the command if you are using different roles and insert a more secure password for
<new_pwd>
:ALTER ROLE trifacta WITH PASSWORD '<new_pwd>'; ALTER ROLE trifactaactiviti WITH PASSWORD '<new_pwd>'; ALTER ROLE trifactatimebasedtriggerservice with PASSWORD '<new_pwd>'; ALTER ROLE trifactaschedulingservice with PASSWORD '<new_pwd>'; ALTER ROLE trifactaconfigurationservice with PASSWORD '<new_pwd>'; ALTER ROLE trifactaartifactstorageservice with PASSWORD '<new_pwd>'; ALTER ROLE trifactajobmetadataservice with PASSWORD '<new_pwd>'; ALTER ROLE trifactaauthorizationservice with PASSWORD '<new_pwd>'; ALTER ROLE trifactaorchestrationservice with PASSWORD '<new_pwd>'; ALTER ROLE trifactaoptimizerservice with PASSWORD '<new_pwd>'; ALTER ROLE trifactasecuretokenservice with PASSWORD '<new_pwd>'; ALTER ROLE trifactaconnectorconfigservice with PASSWORD '<new_pwd>';
Exit psql:
\q exit
Change in Alteryx configuration
You can apply this change through the Admin Settings Page (recommended) or
trifacta-conf.json
. For more information, see Platform Configuration Methods.Modify the
user
andpassword
properties for any of the following databases:Database Name
Parameter area
Alteryx database
webapp.database.*
Jobs database
batch-job-runner.database.*
Scheduling database
scheduling-service.database.*
Time-based Trigger database
time-based-trigger-service.database.*
Configuration Service database
configuration-service.database.*
Artifact Storage Service database
artifact-storage-service.database.*
Job Metadata Service database
job-metadata-service.database.*
Authorization Service database
authorization-service.database.*
Orchestration Service database
orchestration-service.database.*
Optimizer Service database
optimizer-service.database.*
Secure Token Service database
secure-token-service.database.*
Connector Configuration Service database
connector-configuration-service.database.*
For more information, see Database Parameter Reference.
Save your changes and restart the platform.