Update Edge user credentials
This user is created for each Edge site, and deleted when you delete the Edge site.
Update Edge user credentials
Prerequisites
The Edge user account must have the Connect Edge to Collibra global permission.
Steps
- Open the Edge CLI.
- Run the following command:
- The commands below provide both password and username. If you want to only update one, you can remove the other when running the command. For example:
./edgecli config dgc --pass <Password123!> - When resetting the password, follow the steps in our Set or reset a user password article.
The only non-alphanumeric characters accepted for passwords are:
!,$,%,&,(,),*,+,,,-,.,/,:,;,<,=,>,?,@,[,],^,_,{,|,},~.
For more information about the default password requirements, go to the Password settings.
- For Edge sites installed on a bundled k3s cluster:Copy
sudo ./edgecli config dgc \
--pass <password> \
--url <dgc url> \
--user <username>Show me the command flagsFlag Description --pass <password>The new password of your Edge user. --dgc url=<DGC URL>The URL of your Collibra Platform. --user=<username>The new username of your Edge user. - For Edge sites installed on a managed Kubernetes cluster:
Copy
./edgecli config dgc -n <my-namespace> \
--pass <password> \
--url <dgc url> \
--user <username> \Show me the command flagsFlag Description --namespace=<my-namespace>Optional, if your Edge site is installed with a custom names --pass <password>The new password of your Edge user. --dgc url=<DGC URL>The URL of your Collibra Platform. --user=<username>The new username of your Edge user. Note If your Edge site is installed on a dedicated cluster via the Edge CLI method and it does not have a custom namespace, you can remove-n <my-namespace>from the command.