ALTER USER

❗️

This is a legacy Apache Ignite documentation

The new documentation is hosted here: https://ignite.apache.org/docs/latest/

Changes an existing user's password:

ALTER USER userName WITH PASSWORD 'newPassword';

Parameters

  • userName - existing user's name.
  • newPassword - a new password to set for the user's account.

Description

The command changes an existing user's password.

The password can be updated by the superuser (ignite, see for more details) or by the user himself.

Examples

Updating user's password:

ALTER USER test WITH PASSWORD 'test123';