Unsolved
1 Rookie
•
1 Message
2
562
September 16th, 2024 13:31
PPDM change password "admin UI" from CLI
I would like to change the password for the "admin UI" user (not the system admin user) from the CLI level.
I can log in via ssh to the admin user (also root "su root"). Does anyone know how to change the password for the "admin UI" from the console level?
Best regards
No Events found!
alexaali
1 Rookie
•
3 Posts
1
October 17th, 2024 07:34
You can try using the 'passwd' command from the CLI to change the password for the 'admin UI' user, but if it’s a specific user tied to the UI and not a system user, it may require access to the application’s configuration files or a dedicated command within the admin interface. You might want to check the documentation for any special procedures or commands. If all else fails, contacting support could provide more specific steps for your environment. Best of luck!
(edited)
bobybrowny
1 Rookie
•
1 Message
0
December 17th, 2024 10:29
To change the password for the "admin UI" user via CLI, log in as root via SSH and use the
passwd
command:
passwd admin-ui
If the user isn’t recognized, list users with
cat /etc/passwd
. For specific environments like PPDM, refer to official documentation or check for additional steps. More details here: :https://linux.die.net/man/1/passwdtalharehman
1 Rookie
•
2 Posts
0
March 2nd, 2025 16:23
To change the "admin UI" password for PPDM via CLI, log in via SSH as the admin user, then switch to root (
su root
). Use the appropriate command, such asppdm-admin passphrase reset
, or check/opt/dellemc/ppdm/bin
for relevant scripts. Refer to official documentation for details.leo32
1 Rookie
•
1 Message
1
April 22nd, 2025 01:52
To change the "admin UI" password from the CLI in PPDM (PowerProtect Data Manager), follow these steps:
SSH into the PPDM appliance as the
admin
user.Switch to root:
su -
Run the following command to change the UI admin password:
/opt/dps/apps/ppdm/cli/bin/ppdmtool user update --username admin --password
You’ll be prompted to enter a new password.
✅ This only affects the UI user, not the system/root user.
williamvince
1 Rookie
•
1 Message
0
May 20th, 2025 14:14
You can change the 'admin UI' user's password from the CLI using the `passwd` command if it's a local user. Just run `sudo passwd admin` (replace 'admin' with the actual UI username if different). It will prompt you to enter a new password.
(edited)
johnsmith221
1 Rookie
•
4 Posts
0
May 22nd, 2025 10:23
You can usually change the "admin UI" password from the CLI using a specific command or by editing the user configuration file, depending on your PPDM version. Try this:
If that doesn't work, check the CLI help with
ppdm-admin --help
or refer to the official PPDM CLI guide.(edited)
johnsmith221
1 Rookie
•
4 Posts
0
May 23rd, 2025 14:37
@williamvince Informative, it might help the user.
emilya
1 Rookie
•
1 Message
0
July 22nd, 2025 05:43
To change the password for the "admin UI" user in PowerProtect Data Manager (PPDM) from the command line interface (CLI), first log in to the appliance via SSH using your admin credentials. Once logged in, switch to the root user by running
su root
. After that, navigate to the built-in user configuration script by executing the command/opt/dps/server/proxy/bin/userconfig.sh
. This script provides a menu where you can choose the option to reset a user password. When prompted, enter the username asadmin
and then provide the new desired password. This process specifically updates the password for the "admin UI" account used for the web interface, and does not affect system-level users such as the OS-level admin or root. Make sure you are running the correct PPDM version and that all necessary services are active before attempting the change.