Logging in to the Jazz Build Engine by using the scm login command

You can share login credentials between the Jazz® Build Engine and a build script by using the Rational® Team Concert® source control command line interface (CLI) scm login command to authenticate the Jazz Build Engine. Run the command only when you configure the build machine or change the build user password. Do not run the command in build scripts.

Before you begin

You installed the Rational Team Concert source control command line tools and the Build System Toolkit. For more information, see Source control command line reference and Installing the Build System Toolkit.

Procedure

  1. Log in to the build machine as the build user.
  2. Create a directory that is named config to store build credentials.
  3. From the command line, run a command to export SCM_CONFIG_DIRECTORY as the config directory.
    For example: $ export SCM_CONFIG_DIRECTORY=/var/build/config. For more information, see Source control command line interface environment variables.
    Note: When you run multiple Jazz Build Engines on the same logical machine, run each Jazz Build Engine as a different operating system user with a different config directory, so that the Jazz Build Engines do not overwrite each others' data. If each operating system build user has a separate home directory, unset SCM_CONFIG_DIRECTORY and use the default location of ˜/.jazz-scm/.
  4. Run the following command: $ scm login --repository https://repo:9443/ccm -u username –cache. The --cache option causes the password to be stored in an obfuscated form. For more information, see login.
  5. Enter your password when prompted.
  6. After the login completes, verify that repositories.txt exists in $SCM_CONFIG_DIRECTORY. The SCM CLI ensures that the appropriate file system permissions are set, but you might want to verify that no other user on the machine can access repositories.txt.
  7. Configure the Jazz Build Engine to start with -repositories $SCM_CONFIG_DIRECTORY/repositories.txt, so that the credential file from Step 4 is used by the Jazz Build Engine. If you do not set SCM_CONFIG_DIRECTORY because you use the default location, specify -repositories ˜/.jazz-scm/repositories.txt.
    Note: When you write build scripts, ensure that SCM_CONFIG_DIRECTORY is set properly before scm is called, either by sharing a common value among build machines or by using a script that holds machine-specific settings in a known location. If the Jazz Build Engine is running as a separate operating system user, unset SCM_CONFIG_DIRECTORY and use the default location: ˜/.jazz-scm.

What to do next

You can create a scm script and use the --repository-uri switch to specify the repository to run against. The repository is the same as the repository specified in Step 4. Do not use scm login or scm logout in the script.