<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Error with docker-compose installation at solr6 download in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134363#M36160</link>
    <description>&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="docker.PNG" style="width: 587px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://connect.hyland.com/t5/image/serverpage/image-id/1449i0055A5B3BF59958A/image-size/large?v=v2&amp;amp;px=999" role="button" title="image" alt="image" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 02 Oct 2023 06:22:43 GMT</pubDate>
    <dc:creator>Remmuel1</dc:creator>
    <dc:date>2023-10-02T06:22:43Z</dc:date>
    <item>
      <title>Error with docker-compose installation at solr6 download</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134357#M36154</link>
      <description>&lt;P&gt;Trying to deploy a trial environment with docker-compose on Ubuntu 20.04 server.&lt;/P&gt;&lt;P&gt;The deployment does not finish downloading images. It gets stuck on an "unauthorized access" error when it comes to the solr6 download (please see image).&lt;/P&gt;&lt;P&gt;The error is thrown when it comes to pull solr6 with "access to the requested resource is not authorized"&lt;/P&gt;&lt;P&gt;Up to this point it pulls in other resources fine.&lt;/P&gt;&lt;P&gt;I have not made any modifications to the docker-compose.yml file.&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="access error" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Image"&gt;&lt;img src="https://connect.hyland.com/t5/image/serverpage/image-id/1450i86D49565A095EB9F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Image" alt="Image" /&gt;&lt;/span&gt;&lt;SPAN class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;access error&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 06 Mar 2022 17:18:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134357#M36154</guid>
      <dc:creator>incagarcilaso</dc:creator>
      <dc:date>2022-03-06T17:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error with docker-compose installation at solr6 download</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134358#M36155</link>
      <description>&lt;P&gt;Based on your tag, it seems you are trying to use community edition 7, but why would you use images from quay.io. Images from this repo are meant for enterprise edition, and hence the error is likely. You should be using images from hub.docker.com if you meant to use community edition.&lt;/P&gt;
&lt;P&gt;What you see here must be a &lt;A href="https://github.com/Alfresco/acs-deployment/issues/660" target="_self" rel="nofollow noopener noreferrer"&gt;typo/issue&lt;/A&gt; :&amp;nbsp;&lt;A href="https://github.com/Alfresco/acs-deployment/blob/master/docker-compose/community-docker-compose.yml#L85" target="_blank" rel="nofollow noopener noreferrer"&gt;https://github.com/Alfresco/acs-deployment/blob/master/docker-compose/community-docker-compose.yml#L85&lt;/A&gt; , alfresco is in the process of fixing it:&amp;nbsp;&lt;A href="https://github.com/Alfresco/acs-deployment/pull/655" target="_blank" rel="nofollow noopener noreferrer"&gt;https://github.com/Alfresco/acs-deployment/pull/655&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;You can use the below example docker-compose.yml to launch the stack:&lt;/P&gt;
&lt;PRE&gt;version: "2"

services:
  alfresco:
    image: alfresco/alfresco-content-repository-community:7.1.1.2
    mem_limit: 1600m
    environment:
      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=secret
        -Dsolr.sharedSecret=secret
        -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&amp;amp;jms.useCompression=true\"
        -Ddeployment.method=DOCKER_COMPOSE
        -DlocalTransform.core-aio.url=http://transform-core-aio:8090/
        -Dcsrf.filter.enabled=false
        -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80
        "

  transform-core-aio:
    image: alfresco/alfresco-transform-core-aio:2.5.7-A6
    mem_limit: 1536m
    environment:
      JAVA_OPTS: " -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80"
    ports:
      - "8090:8090"

  share:
    image: alfresco/alfresco-share:7.1.1
    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.3
    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.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"
      # HTTPS or SECRET
      ALFRESCO_SECURE_COMMS: "secret"
      # SHARED SECRET VALUE
      JAVA_TOOL_OPTIONS: "
          -Dalfresco.secureComms.secret=secret
      "
    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.2.0
    mem_limit: 128m
    environment:
      DISABLE_PROMETHEUS: "true"
      DISABLE_SYNCSERVICE: "true"
      DISABLE_ADW: "true"
    depends_on:
      - alfresco
    ports:
      - "8080:8080"
    links:
      - alfresco
      - share&lt;/PRE&gt;</description>
      <pubDate>Mon, 07 Mar 2022 03:14:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134358#M36155</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2022-03-07T03:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Error with docker-compose installation at solr6 download</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134359#M36156</link>
      <description>&lt;P&gt;Thank you for the reply Abinavmishra. The answer to your question why I would use quay.io is that I simply do not know. I have to say that for newcomers to Alfresco the installation process for testing or initial set up is very confusing. It is very very difficult to find the installation files for the different types of installation available. I went for the docker install in the end because I could not find the wget file that I would have used to install directly on Ubuntu from the command line. The only wget file that I can find is version 5.2 from 2017. Any help on where to locate these would also be appreciated.&lt;/P&gt;&lt;P&gt;I don't really know what I am doing with docker so please clarify. I understand that if I substitute the docker-compose.yml file that I was using for the one you have provided it should run OK. Is that correct? I am really working blind here and it is really not easy for a newcomer to Alfresco to just get an initial install of the community edition to run a trial version for evaluation. It is important for me to have the most recent version.&lt;/P&gt;&lt;P&gt;Many thanks for the .yml. If you can also provide the reference for the wget file for the manual install on Ubuntu (or if anyone else can) I would be very grateful, as I also want to evaluate the different deployment methods. The only wget I can find is "wget &lt;A href="https://download.alfresco.com/release/community/201707-build-00028/alfresco-community-installer-201707-linux-x64.bin" target="_blank" rel="nofollow noopener noreferrer"&gt;https://download.alfresco.com/release/community/201707-build-00028/alfresco-community-installer-201707-linux-x64.bin&lt;/A&gt;" but this is version 5.2.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 11:27:33 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134359#M36156</guid>
      <dc:creator>incagarcilaso</dc:creator>
      <dc:date>2022-03-07T11:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: Error with docker-compose installation at solr6 download</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134360#M36157</link>
      <description>&lt;P&gt;I know installing manually could be difficult for someone who is new to the alfresco world, but most of the info is also available in documentation here:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.alfresco.com/content-services/community/install/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://docs.alfresco.com/content-services/community/install/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.alfresco.com/content-services/community/install/zip/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://docs.alfresco.com/content-services/community/install/zip/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;You may have missed the initial documentation and release notes, alfresco no longer provides installers from 6.x onwards. And encourgaed to use docker based installation or anisble or manual setup via distribution.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To understand docker based insallation, you need to first understand what's docker, docker-compose, docker-compose.yml, DockerFile etc.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Docker compose at a high level:&amp;nbsp;&lt;A href="https://www.simplilearn.com/tutorials/docker-tutorial/docker-compose" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.simplilearn.com/tutorials/docker-tutorial/docker-compose&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;You can also check this video:&amp;nbsp;&lt;A href="https://www.youtube.com/watch?v=UqQPQWthab0" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.youtube.com/watch?v=UqQPQWthab0&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;A good read as well:&amp;nbsp;&lt;A href="https://hub.alfresco.com/t5/alfresco-content-services-blog/deploying-and-running-alfresco-content-services-6-0/ba-p/293225" target="_blank" rel="nofollow noopener noreferrer"&gt;https://hub.alfresco.com/t5/alfresco-content-services-blog/deploying-and-running-alfresco-content-services-6-0/ba-p/293225&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would suggest you go through this doc:&amp;nbsp;&lt;A href="https://docs.alfresco.com/content-services/community/install/containers/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://docs.alfresco.com/content-services/community/install/containers/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;If you wish to install usinh ansible:&amp;nbsp;&lt;A href="https://docs.alfresco.com/content-services/community/install/ansible/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://docs.alfresco.com/content-services/community/install/ansible/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;If you want to setup manually you can use this post:&amp;nbsp;&lt;A href="https://javaworld-abhinav.blogspot.com/2021/06/setup-acs70-ass201-and-transformation-service.html" target="_blank" rel="nofollow noopener noreferrer"&gt;https://javaworld-abhinav.blogspot.com/2021/06/setup-acs70-ass201-and-transformation-service.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 17:34:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134360#M36157</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2022-03-07T17:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Error with docker-compose installation at solr6 download</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134361#M36158</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/74498"&gt;@abhinavmishra14&lt;/A&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I know installing manually could be difficult for someone who is new to the alfresco world, but most of the info is also available in documentation here:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.alfresco.com/content-services/community/install/" target="_blank" rel="noopener nofollow noreferrer"&gt;https://docs.alfresco.com/content-services/community/install/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.alfresco.com/content-services/community/install/zip/" target="_blank" rel="noopener nofollow noreferrer"&gt;https://docs.alfresco.com/content-services/community/install/zip/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You may have missed the initial documentation and release notes, alfresco no longer provides installers from 6.x onwards. And encourgaed to use docker based installation or anisble or manual setup via distribution.&amp;nbsp;&lt;/P&gt;&lt;P&gt;To understand docker based insallation, you need to first understand what's docker, docker-compose, docker-compose.yml, DockerFile etc.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Docker compose at a high level:&amp;nbsp;&lt;A href="https://www.simplilearn.com/tutorials/docker-tutorial/docker-compose" target="_blank" rel="noopener nofollow noreferrer"&gt;https://www.simplilearn.com/tutorials/docker-tutorial/docker-compose&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You can also check this video:&amp;nbsp;&lt;A href="https://www.youtube.com/watch?v=UqQPQWthab0" target="_blank" rel="noopener nofollow noreferrer"&gt;https://www.youtube.com/watch?v=UqQPQWthab0&lt;/A&gt;&lt;/P&gt;&lt;P&gt;A good read as well:&amp;nbsp;&lt;A href="https://hub.alfresco.com/t5/alfresco-content-services-blog/deploying-and-running-alfresco-content-services-6-0/ba-p/293225" target="_blank" rel="noopener nofollow noreferrer"&gt;https://hub.alfresco.com/t5/alfresco-content-services-blog/deploying-and-running-alfresco-content-services-6-0/ba-p/293225&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would suggest you go through this doc:&amp;nbsp;&lt;A href="https://docs.alfresco.com/content-services/community/install/containers/" target="_blank" rel="noopener nofollow noreferrer"&gt;https://docs.alfresco.com/content-services/community/install/containers/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you wish to install usinh ansible:&amp;nbsp;&lt;A href="https://docs.alfresco.com/content-services/community/install/ansible/" target="_blank" rel="noopener nofollow noreferrer"&gt;https://docs.alfresco.com/content-services/community/install/ansible/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you want to setup manually you can use this post:&amp;nbsp;&lt;A href="https://javaworld-abhinav.blogspot.com/2021/06/setup-acs70-ass201-and-transformation-service.html" target="_blank" rel="noopener nofollow noreferrer"&gt;https://javaworld-abhinav.blogspot.com/2021/06/setup-acs70-ass201-and-transformation-service.html&lt;/A&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;BR /&gt;All very useful information, but most a little above my level with Alfresco.&lt;/P&gt;&lt;P&gt;Your post on the manual install of version 7 is very detailed and clear. Unfortunately my platform is not CentOS but Linux Ubuntu. Is that post also appropriate for Ubuntu? No sure that I have the knowledge to adapt the commands there to the Ubuntu syntax.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 07:51:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134361#M36158</guid>
      <dc:creator>incagarcilaso</dc:creator>
      <dc:date>2022-04-08T07:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Error with docker-compose installation at solr6 download</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134362#M36159</link>
      <description>&lt;P&gt;Unfortunately there is no specific steps documented for ubuntu. Its hard to write those steps for all type of OSs. Redhat/CentOS is standard when it comes to production deployment and Alfresco's docker containers are also based out of CentOS so i wrote the steps for CentOS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But i believe all the steps should remain identical except the package manager steps. So instead of "yum" you would be able to use "apt-get".&lt;/P&gt;
&lt;P&gt;If you are stuck during the process, i can try to help if you post the error here.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 15:54:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134362#M36159</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2022-04-08T15:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error with docker-compose installation at solr6 download</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134363#M36160</link>
      <description>&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="docker.PNG" style="width: 587px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://connect.hyland.com/t5/image/serverpage/image-id/1449i0055A5B3BF59958A/image-size/large?v=v2&amp;amp;px=999" role="button" title="image" alt="image" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 06:22:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/134363#M36160</guid>
      <dc:creator>Remmuel1</dc:creator>
      <dc:date>2023-10-02T06:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: Error with docker-compose installation at solr6 download</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/492496#M40387</link>
      <description>&lt;P&gt;Sounds like the solr6 image might have been deprecated or moved behind restricted access. You could try swapping it with the latest official Solr image or updating the repo source in your docker-compose.yml. Pinning to a supported tag usually clears this kind of roadblock.&lt;/P&gt;&lt;P&gt;&amp;lt;a href ="&lt;A href="https://login360.in/digital-marketing-classes-in-chennai/" target="_blank" rel="noopener"&gt;https://login360.in/digital-marketing-classes-in-chennai/&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;strong&amp;gt; Digital Marketing Classes in Chennai &amp;lt;/strong&amp;gt;&lt;BR /&gt;&amp;lt;/a&amp;gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Aug 2025 05:48:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/error-with-docker-compose-installation-at-solr6-download/m-p/492496#M40387</guid>
      <dc:creator>sijo</dc:creator>
      <dc:date>2025-08-29T05:48:45Z</dc:date>
    </item>
  </channel>
</rss>

