Link user accounts

If a user needs to log in to Arvados with a upstream account or provider, they may end up with two Arvados user accounts. If the user still has the ability to log in with the old account, they can use the self-serve account linking feature of workbench. However, if the user does not have the ability to log in with both upstream accounts, the admin can also link the accounts using the command line.

Step 1: Determine user uuids

User uuids can be determined by browsing workbench or using arv user list at the command line.

Account linking works by recording in the database that a log in to the “old” account should redirected and treated as a login to the “new” account.

The “old” account is the Arvados account that will be redirected.

The “new” account is the user that the “old” account is redirected to. As part of account linking any Arvados records owned by the “old” account is also transferred to the “new” account.

Counter-intuitively, if you do not want the account uuid of the user to change, the “new” account should be the pre-existing account, and the “old” account should be the redundant second account that was more recently created. This means “old” and “new” are opposite from their expected chronological meaning. In this case, the use of “old” and “new” reflect the direction of transfer of ownership — the login was associated with the “old” user account, but will be associated with the “new” user account.

In the example below, zzzzz-tpzed-3kz0nwtjehhl0u4 is the “old” account (the pre-existing account we want to keep) and zzzzz-tpzed-fr97h9t4m5jffxs is the “new” account (the redundant account we want to merge into the existing account).

Step 2: Create a project

Create a project owned by the “new” account that will hold any data owned by the “old” account.

$ arv --format=uuid group create --group '{"group_class": "project", "name": "Data from old user", "owner_uuid": "zzzzz-tpzed-fr97h9t4m5jffxs"}'
zzzzz-j7d0g-mczqiguhil13083

Step 3: Merge “old” user to “new” user

The user merge method redirects login and reassigns data from the “old” account to the “new” account.

$ arv user merge  --redirect-to-new-user \
  --old-user-uuid=zzzzz-tpzed-3kz0nwtjehhl0u4 \
  --new-user-uuid=zzzzz-tpzed-fr97h9t4m5jffxs \
  --new-owner-uuid=zzzzz-j7d0g-mczqiguhil13083 \

Note that authorization credentials (API tokens, ssh keys) are also transferred to the “new” account, so credentials used to access the “old” account work with the “new” account.


Previous: Reassign user data ownership Next: Group management

The content of this documentation is licensed under the Creative Commons Attribution-Share Alike 3.0 United States licence.
Code samples in this documentation are licensed under the Apache License, Version 2.0.