Skip to main content
Feedback

Migrating Tokens 5.x → 6.1.0 / 6.2.0

Migrating tokens to Boomi Cloud API Management – Local Edition 6.1.0 / 6.2.0 is a two-step procedure. It is applicable when migrating tokens from the Boomi Cloud API Management - Local Edition 5.x version.

  1. Exporting tokens.

  2. Importing tokens to Boomi Cloud API Management – Local Edition 6.1.0 / 6.2.0.

Exporting Tokens from 5.x Cluster

Procedure

  1. Log in to the migration-container in the migration-pod. Update default with the namespace used by Boomi Cloud API Management – Local Edition 5.x. and then run the following command:

    kubectl exec -it migration-pod --namespace default -- /bin/bash
  2. To export the tokens, run the following command:

    migrate.py --export_tokens

Importing Tokens to 6.1.0 / 6.2.0 Cluster

Procedure

  1. Log in to the migration-container in the migration-pod.

    kubectl exec -it migration-pod --namespace default -- /bin/bash

    note

    It is recommended to run the command in a screen shell so that even if the migration pod shell times out, tokens import will not be affected.

  2. To install the screen shell in the migration pod, run the following command:

    apt-get install screen -y
  3. To start a screen session, run the following command:

    screen -S migratetokens

    In the above command, you can substitute migratetokens with any session name. This will result in starting a screen session with migratetokens.

    After the screen session begins, follow the steps listed below to import the exported tokens in the Boomi Cloud API Management – Local Edition 6.x cluster.

    1. Log in to the migration-container in the migration-pod. Update default with the namespace used by Boomi Cloud API Management – Local Edition 5.x, and then run the following command:

      migrate.py --import_config
    2. If the screen session gets disconnected or closed, run the following command to connect to the created session:

      screen -x migratetokens
On this Page