Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. If you have not done so already, switch to the MySQL user and launch:

    Code Block
    sudo su - mysql
    mysql


  2. 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>';


  3. Exit:

    Code Block
    \q
    exit


...