<?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: Could not load PDF content in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/could-not-load-pdf-content/m-p/60516#M37405</link>
    <description>&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Bonjour!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Je ne vois pas l'erreur&amp;nbsp;dans le logs que vous avez joint:&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;transformer.TransformController : this OfficeManager is currently stopped&lt;/PRE&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Veuillez reproduire l'erreur et et attachez les logs.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Cristina.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 03 Sep 2021 10:04:18 GMT</pubDate>
    <dc:creator>cristinamr</dc:creator>
    <dc:date>2021-09-03T10:04:18Z</dc:date>
    <item>
      <title>Could not load PDF content</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/could-not-load-pdf-content/m-p/60513#M37402</link>
      <description>&lt;P&gt;Erreur&lt;/P&gt;&lt;PRE&gt;Could not load PDF content&lt;/PRE&gt;&lt;P&gt;lorsque je veux afficher le contenu d'un document autre que pdf (doc, docx)&lt;BR /&gt;L'affichage fonctionnait normalement jusqu'à il ya une semaine.&lt;/P&gt;&lt;P&gt;le log du container "alfresco/alfresco-transform-core-aio" présente l'erreur "transformer.TransformController : this OfficeManager is currently stopped"&lt;/P&gt;&lt;P&gt;Que faire?&lt;/P&gt;&lt;P&gt;Configuration:&lt;/P&gt;&lt;P&gt;Alfresco Docker install&lt;/P&gt;&lt;P&gt;Docker-compose.yml:&lt;/P&gt;&lt;PRE&gt;version: "2"

services:
    alfresco:
        # image: alfresco/alfresco-content-repository-community:7.1.0-M1
        # image: alfresco/alfresco-governance-repository-community:3.5.a
        image: alfresco/alfresco-governance-repository-community:V3.5.0.x-latest
        mem_limit: 1500m
        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=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&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.0
        mem_limit: 1536m
        environment:
            JAVA_OPTS: " -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=80"
        ports:
            - 8090:8090

    share:
        # image: alfresco/alfresco-share:7.1.0-M1
        image: alfresco/alfresco-governance-share-community:V3.5.0.x-latest
        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.1
        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&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Aug 2021 17:15:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/could-not-load-pdf-content/m-p/60513#M37402</guid>
      <dc:creator>nguessankme</dc:creator>
      <dc:date>2021-08-24T17:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: Could not load PDF content</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/could-not-load-pdf-content/m-p/60514#M37403</link>
      <description>&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Bonjour!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Pouvez-vous mettre le log complet du démarrage jusqu'à ce que vous obteniez l'erreur&amp;nbsp;?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Cris.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 07:05:52 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/could-not-load-pdf-content/m-p/60514#M37403</guid>
      <dc:creator>cristinamr</dc:creator>
      <dc:date>2021-08-26T07:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: Could not load PDF content</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/could-not-load-pdf-content/m-p/60515#M37404</link>
      <description>&lt;P&gt;Merci de me repondre.&lt;/P&gt;&lt;P&gt;Voici les fichiers logs&lt;/P&gt;&lt;P&gt;Container REPO: &lt;A title="Container REPO" href="https://drive.google.com/file/d/1sKcaOeKVqurwtR0BLwO_cICdtU4_gd8Y/view?usp=sharing" target="_self" rel="nofollow noopener noreferrer"&gt;https://drive.google.com/file/d/1sKcaOeKVqurwtR0BLwO_cICdtU4_gd8Y/view?usp=sharing&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;COntainer SHARE: &lt;A title="Container SHARE" href="https://drive.google.com/file/d/1kwinNVbWMLfjnNnnf13UF8R2a9klZloL/view?usp=sharing" target="_self" rel="nofollow noopener noreferrer"&gt;https://drive.google.com/file/d/1kwinNVbWMLfjnNnnf13UF8R2a9klZloL/view?usp=sharing&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Container SOLR : &lt;A title="Container SOLR" href="https://drive.google.com/file/d/1Sm6YpCkcSPf-P1L-ckT0G0MBY5LR3B6w/view?usp=sharing" target="_self" rel="nofollow noopener noreferrer"&gt;https://drive.google.com/file/d/1Sm6YpCkcSPf-P1L-ckT0G0MBY5LR3B6w/view?usp=sharing&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Container TRANSFORM: &lt;A title="Container TRANSFORM" href="https://drive.google.com/file/d/1CobPr0e3Jdxe9cOUD84Kb4e5qKX8-8ye/view?usp=sharing" target="_self" rel="nofollow noopener noreferrer"&gt;https://drive.google.com/file/d/1CobPr0e3Jdxe9cOUD84Kb4e5qKX8-8ye/view?usp=sharing&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 09:22:22 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/could-not-load-pdf-content/m-p/60515#M37404</guid>
      <dc:creator>nguessankme</dc:creator>
      <dc:date>2021-09-03T09:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: Could not load PDF content</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/could-not-load-pdf-content/m-p/60516#M37405</link>
      <description>&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Bonjour!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Je ne vois pas l'erreur&amp;nbsp;dans le logs que vous avez joint:&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;transformer.TransformController : this OfficeManager is currently stopped&lt;/PRE&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Veuillez reproduire l'erreur et et attachez les logs.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Cristina.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Sep 2021 10:04:18 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/could-not-load-pdf-content/m-p/60516#M37405</guid>
      <dc:creator>cristinamr</dc:creator>
      <dc:date>2021-09-03T10:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: Could not load PDF content</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/could-not-load-pdf-content/m-p/60517#M37406</link>
      <description>&lt;P&gt;Ah oui, j'ai fait un trancate du log, redemarré les caintainers et j'ai omi de provoquer l'erreur.&lt;BR /&gt;voici donc le logs du tranformer (alfresco/alfresco-transform-core-aio).&lt;/P&gt;&lt;P&gt;&lt;A title="alfresco/alfresco-transform-core-aio" href="https://drive.google.com/file/d/1wGV6Cb-i8el5CEd6cQDpHC4Fd8uTIinG/view?usp=sharing" target="_self" rel="nofollow noopener noreferrer"&gt;https://drive.google.com/file/d/1wGV6Cb-i8el5CEd6cQDpHC4Fd8uTIinG/view?usp=sharing&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Le dernier message d'erreur....&lt;/P&gt;</description>
      <pubDate>Sun, 05 Sep 2021 10:27:06 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/could-not-load-pdf-content/m-p/60517#M37406</guid>
      <dc:creator>nguessankme</dc:creator>
      <dc:date>2021-09-05T10:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: Could not load PDF content</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/could-not-load-pdf-content/m-p/60518#M37407</link>
      <description>&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Bonjour!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;L'erreur principale est la suivante :&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;org.artofsolving.jodconverter.office.OfficeException: failed to start and connect&lt;/PRE&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;On dirait qu'il est pas correctement configuré car Alfresco n'est pas capable de démarrer et de connexion avec jodconverter.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Deux questions : l'avez-vous déjà fait fonctionner? Pourriez-vous nous partager votre configuration de jodconverter (dans alfresco-global.properties)? &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b"&gt;&lt;SPAN&gt;Je vais vous laisser un discussion à ce sujet:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://hub.alfresco.com/t5/alfresco-content-services-forum/alfresco-startup-error-quot-unable-to-start-jodconverter-library/m-p/304334" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN class="lia-message-read"&gt;Alfresco Startup Error "Unable to start JodConverter library" &lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Cristina.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Sep 2021 13:33:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/could-not-load-pdf-content/m-p/60518#M37407</guid>
      <dc:creator>cristinamr</dc:creator>
      <dc:date>2021-09-06T13:33:38Z</dc:date>
    </item>
  </channel>
</rss>

