Research Accounts

Getting setup to use Merge

This guide covers the basic things you need to do to get started with Merge.

Account Setup

The first step to experimenting on a Merge testbed is to create an account on the Merge portal. Follow the instructions either using “Launch” (the graphical web interface) or through the Merge command line interface (CLI).

Account Creation through Launch

Navigate to the Merge “Launch” GUI at https://launch.mod.deterlab.net. You’ll be greeted with a page that looks much like this

Click the Sign up link to load the account registration page.

Fill in your account details:

  • Email Address - the email address for the new account.
  • Password - the account password. The password will be rejected with a reason if it is not strong enough.
  • Password Confirmation - the account password again to confirm it has been typed correctly
  • Username - the account username. This username is used to login to the portal and on all testbed nodes.
  • Affliation - institution to which you belong.
  • Position - your position within your institution.
  • Name - your full name.
  • Testbed Organization - an existing organization in the merge portal you want to join.

Once done, click Sign Up.

Activate Your Merge Portal Account

Send a notification to the Merge portal administrators to have your account created and activated. If you joined an organization while registering for a new account, contact that organization’s administrators. They will use the Identity account created above to create an account for you on the Merge Portal. Speak with your project leader for up-to-date information on how best to contact them.

Until your account is activated, you’ll see that you do not have access to any information on the portal. You can login, but you will not have access to any information within the portal. So pages in Launch will show nothing, or an access error.

Once your account has been activated, your data will load and you are ready to start using Merge!

Account Creation through the CLI

First, download the Merge CLI mrg for the operating system and CPU architecture of your machine at the latest release page.

Configuring the API endpoint

The mrg CLI needs to be configured to know how to communicate with the portal. This is done by telling mrg the server of the portal. The server address can usually be constructed by prepending “grpc.” to the portal fully-qualified name (in the case of Mod Deter, this is mod.deterlab.net; e.g.,:

mrg config set server grpc.mod.deterlab.net

As noted above, consult your project leader for the appropriate portal address.

Register account

Then, register your account using the mrg register command. The fields used to register on the command line are the same as above in Launch. For example, to create a user named “murphy” with email “murphy@mergetb.org”, affiliation “USC”, position “Research Programmer”, and password “muffins1701”:

mrg register murphy murphy@mergetb.org USC 'Research Programmer' -p muffins1701 

If you are joining a testbed organization, you specify that via the --organization [name] argument.

mrg register murphy murphy@mergetb.org USC 'Research Programmer' -p muffins1701 --organization 'USC201`

mrg has a built in help system. You can add --help to any command to get more information about that command:

$ mrg register --help                                                              
Register a new identity with the portal                                                                            
                                                                                                                   
Usage:                                                                                                             
  mrg register <username> <email> <affiliation> <position> [flags]                                                 
                                                                                                                   
Flags:                                                                                                             
  -h, --help                  help for register                                                                    
      --name string           user full name                                                                       
      --organization string   request organization membership                                                      
  -p, --passwd string         user password                                                                        
                                                                                                                   
Global Flags:                                                                                                      
  -c, --colorless         Disable color output                                                                     
  -j, --json              Output JSON                                                                              
  -l, --loglevel string   Level to log at. One of panic, fatal, error, warning, info, debug, trace (default "info")
  -s, --server string     MergeTB API server address                                                               

Account Approval

Once you have created an account using either the web interface or the CLI, you should send a notification to the Merge portal or your organization administrators to have your account approved. Speak with your project leader for up-to-date information on how best to contact them.

Once your account has been approved, you are ready to start using Merge!

Last modified August 1, 2023: Edu changes (1214d58)