Hello,
I'm following the ISVA Docker and Docker Compose cookbook for setting up an ISVA server. Only problem is when I try and execute the docker-setup.sh file, I'm receiving error Key files not found. Restore or create keys before running this script. I had someone else look at the error and it looks like there is no $DOCKERKEYS/isvaop/personal/isvaop_key.pem that is being created. Executing this script is part of the setup instructions, per direction from the Github site below. Directions are in the Native Docker section of the link. After completing this portion, I plan on following section 3 of the cookbook (see attachment), but I'm unable to proceed until I'm over this hurdle. Can someone provide me with some guidance? Thanks. IBM-Security/verify-access-container-deployment: Assets for exploring deployment of IBM Security Verify Access in containers.script:
if [ ! -f "$DOCKERKEYS/openldap/ldap.key" ] || [ ! -f "$DOCKERKEYS/openldap/ldap.crt" ] || [ ! -f "$DOCKERKEYS/openldap/ca.crt" ] || [ ! -f "$DOCKERKEYS/openldap/dhparam.pem" ] || [ ! -f "$DOCKERKEYS/postgresql/server.pem" ] || [ ! -f "$DOCKERKEYS/isvaop/personal/isvaop_key.pem" ] || [ ! -f "$DOCKERKEYS/isvaop/signer/isvaop.pem" ]thenecho "Key files not found. Restore or create keys before running this script."exit 1fi
Hello Lee , You need to run this before .https://github.com/IBM-Security/verify-access-container-deployment/blob/master/common/create-ivia-pki.shThanks