Account Settings

Account Settings

Admins and Users can change the password and logout in the Account settings.

  1. Click Account in the bottom section of the left nav panel.
    image71.png
  2. To change your password, click Change Password and enter your current password, a new password, and then confirm your new password.
    image72.png
  3. After you click Change, the password will be changed and you will be logged out.

Reset the Super Admin Password

To reset the super admin password perform these steps on the directory where the containers are running.

  1. In order to reset the password, you need to have the MONGODB_ROOT_PASSWORD that is defined in the .env file. Make sure to copy the MAINTENANCE_PASSWORD from the provided output because it is required for the process below.
    $ cat .env
  2. Run this command and make note of the container id for ta_cloud_exchange_mongodb-primary_1.
    • Cloud Exchange running on a RHEL Machine
      $ sudo podman container ls
    • Cloud Exchange Running on a Ubuntu Machine
      $ sudo docker container ls
  3. Enter the mongodb container ID.
    • Cloud Exchange Running on a RHEL Machine
      $ sudo podman exec -ti <container ID> sh
    • Cloud Exchange Running on Ubuntu Machine
      $ sudo docker exec -ti <container ID> sh
  4. Log in to the mongodb client.
    mongosh --username root 
    Enter password:
  5. When prompted for a password, enter the password which copied in step 1.
  6. Switch to the CE database and run this command.
    $ use cte
  7. Enter in the following line to reset the admin password.
    db.users.update({username: "admin"}, {$set: {password: "$2y$12$RBcV6xWFhHucm4a1YRmQXuEZHqz9NadpMuzIB6xEIXOhg.QzngiiO"}});
  8. The super admin password should now be reset to default.
  9. Log in to the Netskope Cloud Exchange UI with the default username and password admin/admin, and then change the password.
Share this Doc

Account Settings

Or copy link

In this topic ...