IBM Maximo Mobile: Installing Maximo Application Framework Configuration application to Customize IBM Maximo Mobile: Difference between revisions

From Wiki
(Created page with "The Maximo Application Framework Configuration application is provided in a Container image that is stored in the IBM® Entitled Registry. You need an entitlement key and access to IBM Passport Advantage to download the container image. = Download Container Images from IBM = == Do the Login == First we need to get our authentication key from the website: [https://myibm.ibm.com/products-services/containerlibrary My IBM Container Software Library]. Export the variab...")
 
Line 19: Line 19:


  podman login "$ENTITLED_REGISTRY" -u "$ENTITLED_REGISTRY_USER" -p "$ENTITLED_REGISTRY_KEY"
  podman login "$ENTITLED_REGISTRY" -u "$ENTITLED_REGISTRY_USER" -p "$ENTITLED_REGISTRY_KEY"
Result
Login Succeeded!




Line 26: Line 30:


  podman pull cp.icr.io/cp/manage/maf-tools:8.11
  podman pull cp.icr.io/cp/manage/maf-tools:8.11


= Ver também =
= Ver também =

Revision as of 12:03, 3 November 2023

The Maximo Application Framework Configuration application is provided in a Container image that is stored in the IBM® Entitled Registry. You need an entitlement key and access to IBM Passport Advantage to download the container image.

Download Container Images from IBM

Do the Login

First we need to get our authentication key from the website: My IBM Container Software Library.


Export the variables

export ENTITLED_REGISTRY=cp.icr.io
export ENTITLED_REGISTRY_USER=cp
export ENTITLED_REGISTRY_KEY=<entitlement_key>


Log in to IBM Registry to obtain the image with the Podman command.

podman login "$ENTITLED_REGISTRY" -u "$ENTITLED_REGISTRY_USER" -p "$ENTITLED_REGISTRY_KEY"

Result

Login Succeeded!


Pull the Image

Run the docker pull command to download the image

podman pull cp.icr.io/cp/manage/maf-tools:8.11

Ver também