0

I tried below command

docker run --rm -t -e LICENSE=accept --net=host -v "$(pwd)":/installer/cluster ibmcom/icp-inception:2.1.0 install

the response is

Waiting for cloudant initialization

Waiting for cloudant initialization

I entered the command received the logs shown in the image. No error shown. Please give a solution

nathancy
  • 42,661
  • 14
  • 115
  • 137

1 Answers1

0

From the error message, for cloudant database initialization issue, it may be caused by the cloudant docker image is pulled from dockerhub while ICP installation. The cloudant docker image is big, you can run below command to check whether the image is ready in your environment.

$ docker images | grep icp-datastore

If the cloudant docker image is ready in your environment, and the ICP installation still has cloudant database initialization issue, you can try to install the latest ICP 2.1.0.3 Community Edition. From 2.1.0.3, ICP removes the cloudant database. The ICP 2.1.0.3 installation documentation:

https://www.ibm.com/support/knowledgecenter/en/SSBS6K_2.1.0.3/installing/install_containers_CE.html

If you still want to check the cloudant database initialization issue in ICP 2.1.0.1 environment, you can:

  1. Ensure your ICP nodes match the system and hardware requirements firstly. https://www.ibm.com/support/knowledgecenter/en/SSBS6K_2.1.0/supported_system_config/system_reqs.html

  2. Let us know the ICP installation configurations. You can check the contents for config.yaml and hosts files.

  3. Check the system logs (in /var/log/messages or /var/log/syslog file) to find the relevant errors.

  4. Run 'docker logs ' command to check the logs or errors.

AsirXing
  • 706
  • 6
  • 3