...
If you have not done so already, switch to the MySQL user and launch:
Code Block 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>
:Info NOTE: In MySQL, the dash is a forbidden character in usernames. Please use underscores instead.
Code Block ALTER USER 'trifacta'@'localhost' IDENTIFIED BY '<new_pwd>'; ALTER USER 'trifacta-activititrifactaactiviti'@'localhost' IDENTIFIED BY '<new_pwd>'; ALTER USER 'trifactaschedulingservice'@'localhost' IDENTIFIED BY '<new_pwd>'; ALTER USER 'trifactatimebasedtriggerservice'@'localhost' IDENTIFIED BY '<new_pwd>'; ALTER USER 'trifactaconfigurationservice'@'localhost' IDENTIFIED BY '<new_pwd>'; ALTER USER 'trifactasartifactstorageservice'@'localhost' IDENTIFIED BY '<new_pwd>'; ALTER USER 'trifactajobmetadataservice'@'localhost' IDENTIFIED BY '<new_pwd>';
Exit:
Code Block \q exit
...