02-14-2022 11:14 AM
Hello Everyone,
So i was refered to the Out-of-process Event api to integrate with outside applications.
I followed this link to get it working, https://docs.alfresco.com/content-services/latest/develop/oop-ext-points/event-gateway/ .
But i am getting a couple of errors.
First of all i changed the quay.io link for alfresco-identity-service because i don't have access to that repository , so i substituted it for just alfresco/alfresco-identity-service:1.5.0 and it seemed to work .
I removed the KEYCLOAK_IMPORT and the volume for alfresco-identity-service because i don't have that file and even if i created a blank file docker-compose still gives me error.
After getting all the containers to run successfully with this docker-compose.yml file.
# Using version 2 as 3 does not support resource constraint options (cpu_*, mem_* limits) for non swarm mode in Compose version: "2" services: alfresco-event-gateway: image: alfresco/alfresco-event-gateway-app:2.0.1-SNAPSHOT environment: JAVA_TOOL_OPTIONS: " -agentlib:jdwp=transport=dt_socket,address=*:8888,server=y,suspend=n " JAVA_OPTS: " -Dspring.activemq.brokerUrl=tcp://activemq:61616 -Dspring.datasource.url=jdbc:postgresql://postgres-event-gateway:5432/alfresco-event-gateway -Dspring.datasource.driverClassName=org.postgresql.Driver -Dspring.datasource.username=alfresco-event-gateway -Dspring.datasource.password=alfresco-event-gateway -Dspring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect -Dspring.jpa.hibernate.ddl-auto=update -Dalfresco.event.gateway.publication.jms.broker.my-broker.broker-url=tcp://activemq:61616 -Dkeycloak.auth-server-url=http://{HOST_IP}:8999/auth -Dcontent.service.url=http://alfresco:8080 -Dmanagement.metrics.export.simple.enabled=true -Dmanagement.endpoint.metrics.enabled=true " depends_on: - alfresco - alfresco-identity-service ports: - 7070:8080 - 8888:8888 postgres-event-gateway: image: postgres:13.1 mem_limit: 512m environment: - POSTGRES_PASSWORD=alfresco-event-gateway - POSTGRES_USER=alfresco-event-gateway - POSTGRES_DB=alfresco-event-gateway command: postgres -c max_connections=300 -c log_min_messages=LOG ports: - 5433:5432 alfresco: image: alfresco/alfresco-content-repository-community:7.1.0 mem_limit: 1500m environment: HOST_IP: ${HOST_IP} JAVA_TOOL_OPTIONS: " -Dencryption.keystore.type=JCEKS -Dencryption.cipherAlgorithm=DESede/CBC/PKCS5Padding -Dencryption.keyAlgorithm=DESede -Dencryption.keystore.location=/usr/local/tomcat/shared/classes/alfresco/extension/keystore/keystore -Dmetadata-keystore.password=mp6yc0UD9e -Dmetadata-keystore.aliases=metadata -Dmetadata-keystore.metadata.password=oKIWzVdEdA -Dmetadata-keystore.metadata.algorithm=DESede " JAVA_OPTS: " -Ddb.driver=org.postgresql.Driver -Ddb.username=alfresco -Ddb.password=alfresco -Ddb.url=jdbc:postgresql://postgres:5432/alfresco -Dsolr.host=solr6 -Dsolr.port=8983 -Dsolr.http.connection.timeout=1000 -Dsolr.secureComms=none -Dsolr.base.url=/solr -Dindex.subsystem.name=solr6 -Dshare.host=127.0.0.1 -Dshare.port=8080 -Dalfresco.host=localhost -Dalfresco.port=8080 -Daos.baseUrlOverwrite=http://localhost:8080/alfresco/aos -Dmessaging.broker.url=\"failover:(nio://activemq:61616)?timeout=3000&jms.useCompression=true\" -Ddeployment.method=DOCKER_COMPOSE -DlocalTransform.core-aio.url=http://transform-core-aio:8090/ -Dcsrf.filter.enabled=false -Dauthentication.chain=identity-service1:identity-service,alfrescoNtlm1:alfrescoNtlm -Dalfresco.restApi.basicAuthScheme=true -Didentity-service.enable-basic-auth=true -Didentity-service.authentication.validation.failure.silent=false -Didentity-service.auth-server-url=http://${HOST_IP}:8999/auth -Didentity-service.realm=alfresco -Didentity-service.resource=alfresco -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80 " transform-core-aio: image: alfresco/alfresco-transform-core-aio:2.5.2 mem_limit: 1536m environment: JAVA_OPTS: " -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80" ports: - 8090:8090 share: image: alfresco/alfresco-share:7.1.0-M2 mem_limit: 1g environment: REPO_HOST: "alfresco" REPO_PORT: "8080" JAVA_OPTS: " -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80 -Dalfresco.host=localhost -Dalfresco.port=8080 -Dalfresco.context=alfresco -Dalfresco.protocol=http " postgres: image: postgres:13.1 mem_limit: 512m environment: - POSTGRES_PASSWORD=alfresco - POSTGRES_USER=alfresco - POSTGRES_DB=alfresco command: postgres -c max_connections=300 -c log_min_messages=LOG ports: - 5432:5432 solr6: image: alfresco/alfresco-search-services:2.0.2 mem_limit: 2g environment: #Solr needs to know how to register itself with Alfresco - SOLR_ALFRESCO_HOST=alfresco - SOLR_ALFRESCO_PORT=8080 #Alfresco needs to know how to call solr - SOLR_SOLR_HOST=solr6 - SOLR_SOLR_PORT=8983 #Create the default alfresco and archive cores - SOLR_CREATE_ALFRESCO_DEFAULTS=alfresco,archive #HTTP by default - ALFRESCO_SECURE_COMMS=none ports: - 8083:8983 #Browser port activemq: image: alfresco/alfresco-activemq:5.16.1 mem_limit: 1g ports: - 8161:8161 # Web Console - 5672:5672 # AMQP - 61616:61616 # OpenWire - 61613:61613 # STOMP proxy: image: alfresco/alfresco-acs-nginx:3.1.1 mem_limit: 128m environment: DISABLE_PROMETHEUS: "true" DISABLE_SYNCSERVICE: "true" DISABLE_ADW: "true" depends_on: - alfresco ports: - 8080:8080 links: - alfresco - share alfresco-identity-service: image: alfresco/alfresco-identity-service:1.5.0 environment: - KEYCLOAK_USER=admin - KEYCLOAK_PASSWORD=admin # - KEYCLOAK_IMPORT=/tmp/alfresco-realm.json - DB_VENDOR=h2 # volumes: # - ./realms/alfresco-realm.json:/tmp/alfresco-realm.json ports: - 8999:8080
but i am still getting an error when i view the logs for alfresco-event-gateway
Debugger failed to attach: handshake failed - received >GET /subscription < - expected >JDWP-Handshake<
I would appreciate any help.
Explore our Alfresco products with the links below. Use labels to filter content by product module.