Juan Alvarez Ferrando

Results 9 comments of Juan Alvarez Ferrando

Using AWS EKS with a worker role having an IAM path other than / causes worker to fail to join the cluster. /var/log/messages shows streams of Unauthorized errors. Is this...

The error refers to not being able to validate the SSL certificate presented by the website. However, the URL is an HTTP one. That would be something to have a...

Very much looks like an authenticatoin or comms problem. Starting with the basics: Have you configured your CodeCommit credentials as described here?: https://docs.aws.amazon.com/codestar/latest/userguide/setting-up-ide-ec.html

Reviweing the code. Same seems to apply to the other values set to JAVA_TOOL_OPTIONS about the `metada-keystore`, and in general all the variables exported here: https://github.com/Alfresco/alfresco-ansible-deployment/blob/a535cdc8b573dec74736bea85836a0d2e3d67d99/roles/repository/tasks/main.yml#L201

It is not just a recovery scenario where recovery activities are expected, but in our case the set up of an autoscaling mechanism to automatically fail over to another server....

On a side note about this same topic. Configuring NGINX with `locahost` has the side effect of causing errors when trying the IPV6 `[::1]` loopback address, which is the preferred...

Came back to this and foud this works: ``` #!/bin/bash export JAVA_OPTS="-version \$JAVA_OPTS" export JAVA_TOOL_OPTIONS="-Dalfresco.secureComms.secret=D_i0ftP\$example>66Vp" java $JAVA_OPTS ``` Produces: ``` ~# ./test.sh Picked up JAVA_TOOL_OPTIONS: -Dalfresco.secureComms.secret=D_i0ftP$example>66Vp openjdk version "17.0.3" 2022-04-19...

I've had some deployments where the alfresco-content service was not enabled. That was caused aparently by a change in the premissions of the alfresco-content.service file: Now owned by root: https://github.com/Alfresco/alfresco-ansible-deployment/blob/dfdb55583a9a00abafbfb99c7ee033d65ab69bae/roles/tomcat/tasks/main.yml#L122...