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...")
 
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
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.
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 =
= Download Container Images from IBM =
== Do the Login ==




Line 11: Line 10:
Export the variables
Export the variables


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


Line 18: Line 15:
Log in to IBM Registry to obtain the image with the Podman command.
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"
  podman login cp.icr.io -u cp -p "$ENTITLED_REGISTRY_KEY"
 
Result
 
Login Succeeded!
 
 
= Pull the Image =
 
Run the Podman pull command to download the image
 
podman pull cp.icr.io/cp/manage/maf-tools:8.11.13
 
 
= Running MAF Container =
 
Run the container
 
mkdir /maximo-workspace
 
Run container interactive node
 
podman run -it --name maf811 --privileged -p 3001:3001 -p 3006:3006 \
  -v maximo-workspace:/graphite/.workspace -e NODE_TLS_REJECT_UNAUTHORIZED=0 \
  cp.icr.io/cp/manage/maf-tools:8.11.13
 
'''Important:To connect to a maximo server with a Self Signed Certificate, I need to pass NODE_TLS_REJECT_UNAUTHORIZED'''
 
You can do a '''Control + C''' to stop
 
To start again
 
podman start maf811


To see the logs


== Pull the Image ==
podman logs -f maf811


Run the docker pull command to download the image


podman pull cp.icr.io/cp/manage/maf-tools:8.11
Open your browser and access using URL:  


<nowiki>http://<server>:3001</nowiki>


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

Latest revision as of 11:02, 9 August 2024

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

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


Export the variables

export ENTITLED_REGISTRY_KEY=<entitlement_key>


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

podman login cp.icr.io -u cp -p "$ENTITLED_REGISTRY_KEY"

Result

Login Succeeded!


Pull the Image

Run the Podman pull command to download the image

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


Running MAF Container

Run the container

mkdir /maximo-workspace

Run container interactive node

podman run -it --name maf811 --privileged -p 3001:3001 -p 3006:3006 \
  -v maximo-workspace:/graphite/.workspace -e NODE_TLS_REJECT_UNAUTHORIZED=0 \
  cp.icr.io/cp/manage/maf-tools:8.11.13

Important:To connect to a maximo server with a Self Signed Certificate, I need to pass NODE_TLS_REJECT_UNAUTHORIZED

You can do a Control + C to stop

To start again

podman start maf811

To see the logs

podman logs -f maf811


Open your browser and access using URL:

http://<server>:3001

Ver também