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 MySQL user and launch:
sudo su - mysql mysql
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>
:NOTE: In MySQL, the dash is a forbidden character in usernames. Please use underscores instead.
ALTER USER 'trifacta'@'localhost' IDENTIFIED BY '<new_pwd>'; ALTER USER 'trifactaactiviti'@'localhost' IDENTIFIED BY '<new_pwd>'; ALTER USER 'trifactatimebasedtriggerservice'@'localhost' IDENTIFIED BY '<new_pwd>'; ALTER USER 'trifactaschedulingservice'@'localhost' IDENTIFIED BY '<new_pwd>'; ALTER USER 'trifactaconfigurationservice'@'localhost' IDENTIFIED BY '<new_pwd>';
Exit:
\q exit
Below are the username and password properties for each database. You can apply this change through the Admin Settings Page (recommended) or Alteryx database: Jobs database: Scheduling database: Time-based trigger database: Configuration Service database: Artifact Storage Service database:Change in Alteryx configuration
trifacta-conf.json
.
For more information, see Platform Configuration Methods. Please review and update as needed: "webapp.database.username" = "<user>",
"webapp.database.password" = "<pwd>",
"batch-job-runner.database.username" = "<user>",
"batch-job-runner.database.password" = "<pwd>",
"scheduling-service.database.user" = "<user>",
"scheduling-service.password.password" = "<pwd>",
"time-based-trigger-service.database.user" = "<user>",
"time-based-trigger-service.database.password" = "<pwd>",
"configuration-service.database.user" = "<user>",
"configuration-service.database.password" = "<pwd>",
"artifact-storage-service.database.user" = "<user>",
"artifact-storage-service.database.password" = "<pwd>",
This page has no comments.