Table of Contents

Search

  1. Abstract
  2. Supported Versions
  3. Install PowerCenter (10.4.x - 10.5) on Docker with Informatica Deployment Manager

Install PowerCenter (10.4.x - 10.5) on Docker with Informatica Deployment Manager

Install PowerCenter (10.4.x - 10.5) on Docker with Informatica Deployment Manager

Troubleshooting

Troubleshooting

I tried to build the Docker image, but the build image fails.
If build image fails during installer tar file extraction or before the Docker build image starts, verify that adequate disk space is available in the current working directory.
PowerCenter requires 50 GB disk space in the current working directory.
If the build image fails at the step
Copy/Binaries/home/Informatica
in the log file, then there is not enough disk space in the Docker configuration directory. To find the Docker configuration directory, run the
docker info
command.
PowerCenter requires 27 GB disk space in the Docker configuration directory.
You can also free up some space from the Docker configuration directory when you delete a dangling image. When you create the new build of the image but do not specify a new name, you create a dangling image and the old image becomes the dangling image. Those old images remain untagged and display "<none>" as the name when you run the
docker images
command.
To delete the dangling images, complete the following steps:
  1. To list all dangling images and to get the image ID, run the command:
    docker images -f dangling=true
  2. To delete each dangling image, run the command:
    docker image rm -f <image id>
If the build image fails with the following error, you need to manually pull the Docker image:
Sending build context to Docker daemon 25.75GB Step 1/30: FROM registry.access.redhat.com/rhel7:7.7 Trying to pull repository registry.access.redhat.com/rhel7 ... Installation Status:ERROR
To fix the issue, you can manually run the following command:
docker pull registry.access.redhat.com/rhel7:7.7
If the build image fails with the following error, the Docker build script has failed to access the repository to download dependencies:
This system is not registered with an entitlement server.
To register and subscribe the machine where you build the Docker image:
  1. Run the
    yum repolist all
    command to see all the repositories.
  2. Use the
    subscription-manager
    to register with the following command:
    subscription-manager repos --enable
    .
  3. To enable custom repositories, run the command:
    yum-config-manager --enable
If the build image displays the
authenticationrequired
error when you run the docker pull command to pull the image from RHEL, the authentication with the Docker authentication might have expired. Run the
docker logout
command and then pull the Docker image. If the issue persists, try to pull the Docker image from registry.redhat.io instead of registry.access.redhat.com. If any issue remains with RHEL, you could try to use Centos7 for proof of concept cases.
I cannot access Administrator tool from the browser.
Check the IP address from where you access the Administrator tool:
Ensure that you use the host IP of the node on which container is running to access the Administrator tool.

0 COMMENTS

We’d like to hear from you!