Strategy ONE

Change the Default Password

The following lists the different ways to change the default password of the MSTR user, how to change the default password for remote access via Guacamole or VNC, and how to change your Strategy Web and Web Admin passwords.

Change Your Strategy Web Default Password

  1. Open Strategy Web.
  2. In the upper-right of any page, click your user name and select Preferences from the drop-down.

  3. In User Preferences, select Change Password.
  4. In Old password, enter your existing password.
  5. In New password, enter your new password.
  6. In New password verification, retype the new password.
  7. Click Change Password.

For steps to change another user's password, see How to Change a User's Password.

Change the Default Password of the MSTR User on a Linux Server

  1. Log into your Linux machine as the MSTR user.
  2. In the console, enter passwd.
  3. Enter the current password for the MSTR user.
  4. Enter the new password and press Enter.
  5. Retype the new password and press Enter. A message appears indicating the password is successfully changed.

Change the Default Password of the MSTR User in MySQL via Command Line

  1. Log in to the MySQL database using command line.

  2. Enter the following command to change your password:

    Copy
    SET PASSWORD FOR 'mstr'@'%' = PASSWORD('newpassword');
  3. Press Enter. A message appears indicating the new password is set.

Change the Default Password of the MSTR User from a Windows Developer Instance

  1. Log into the Windows machine as the MSTR user.
  2. Open Computer Management.
  3. Navigate to Local Users and Groups > Users.
  4. Right-click the mstr user and select Set Password.
  5. Enter the new password.
  6. Retype the new password.

  7. Click OK.

Change the Default Password for Remote Access

For Guacamole

  1. Log in to your Linux machine.
  2. In the console, navigate to the guacamole folder using the following command:

    Copy
    cd /opt/guacamole/
  3. Open the user-mapping.xml file using the following command:

    Copy
    vim user-mapping.xml
  4. Locate <param name="password> and enter your new password.

For VNC

  1. Log in to your Linux machine.
  2. In the console, enter vncpasswd.
  3. Next to Password, enter your new password.
  4. Next to Verify, retype the new password.

Change Your Strategy Web Admin Password

  1. Log in to your Linux machine.
  2. In the console, navigate to the Tomcat directory using the following command:

    Copy
    cd /opt/apache/tomcat/latest/conf
  3. Open the tomcat-users.xml file using the following command:

    Copy
    vim tomcat-users.xml
  4. Locate <user password=""> and enter your new password.

  5. Restart Tomcat using the following command:

    Copy
    service mstr tomcatrestart