<?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: Tomcat not setting server.xml in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/tomcat-not-setting-server-xml/m-p/94231#M27829</link>
    <description>&lt;P&gt;There should not be any issue with support of JCEKS - Tomcat simply uses that configuration property to configure the underlying Java keystore, a native API feature, and passes on the store type for Java to handle. So Tomcat does not need to explicitly support a specific keystore type, as the support is already provided by Java / the JVM itself.&lt;/P&gt;</description>
    <pubDate>Tue, 11 Aug 2020 07:00:04 GMT</pubDate>
    <dc:creator>afaust</dc:creator>
    <dc:date>2020-08-11T07:00:04Z</dc:date>
    <item>
      <title>Tomcat not setting server.xml</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/tomcat-not-setting-server-xml/m-p/94229#M27827</link>
      <description>&lt;P&gt;Good morning,&lt;/P&gt;&lt;P&gt;I have run into this issue when I start my Apache Tomcat. Can anyone help?&lt;/P&gt;&lt;P&gt;FYI I have changed the actual password to ******** when posted here.&lt;/P&gt;&lt;PRE&gt;07-Aug-2020 15:09:30.529 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin Match [Server/Service/Connector] failed to set property [SSLEnabled] to [true]
07-Aug-2020 15:09:30.529 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin Match [Server/Service/Connector] failed to set property [maxThreads] to [150]
07-Aug-2020 15:09:30.530 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin Match [Server/Service/Connector] failed to set property [keystoreFile] to [/opt/alfresco/alf_data/keystore/ssl.keystore]
07-Aug-2020 15:09:30.530 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin Match [Server/Service/Connector] failed to set property [keystorePass] to [********]
07-Aug-2020 15:09:30.530 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin Match [Server/Service/Connector] failed to set property [keystoreType] to [JCEKS]
07-Aug-2020 15:09:30.530 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin Match [Server/Service/Connector] failed to set property [connectionTimeout] to [240000]
07-Aug-2020 15:09:30.530 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin Match [Server/Service/Connector] failed to set property [truststoreFile] to [/opt/alfresco/alf_data/keystore/ssl.truststore]
07-Aug-2020 15:09:30.531 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin Match [Server/Service/Connector] failed to set property [truststorePass] to [********]
07-Aug-2020 15:09:30.531 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin Match [Server/Service/Connector] failed to set property [truststoreType] to [JCEKS]
07-Aug-2020 15:09:30.531 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin Match [Server/Service/Connector] failed to set property [clientAuth] to [want]
07-Aug-2020 15:09:30.531 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin Match [Server/Service/Connector] failed to set property [sslProtocol] to [TLS]&lt;/PRE&gt;&lt;P&gt;Below is a copy of my server.xml file located in /opt/tomcat/conf/&lt;/P&gt;&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;

&amp;lt;Server port="8005" shutdown="SHUTDOWN"&amp;gt;
  &amp;lt;Listener className="org.apache.catalina.startup.VersionLoggerListener" /&amp;gt;
  &amp;lt;Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" /&amp;gt;
  &amp;lt;Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" /&amp;gt;
  &amp;lt;Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" /&amp;gt;
  &amp;lt;Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" /&amp;gt;

  &amp;lt;GlobalNamingResources&amp;gt;
    &amp;lt;Resource name="UserDatabase" auth="Container"
              type="org.apache.catalina.UserDatabase"
              description="User database that can be updated and saved"
              factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
              pathname="conf/tomcat-users.xml" /&amp;gt;
  &amp;lt;/GlobalNamingResources&amp;gt;

  &amp;lt;Service name="Catalina"&amp;gt;
    &amp;lt;Connector port="8080" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" /&amp;gt;

    &amp;lt;Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol"
              SSLEnabled="true" maxThreads="150" scheme="https"
              keystoreFile="/opt/alfresco/alf_data/keystore/ssl.keystore"
              keystorePass="********" keystoreType="JCEKS"
              secure="true" connectionTimeout="240000"
              truststoreFile="/opt/alfresco/alf_data/keystore/ssl.truststore"
              truststorePass="********" truststoreType="JCEKS"
              clientAuth="want" sslProtocol="TLS" /&amp;gt;

    &amp;lt;Engine name="Catalina" defaultHost="localhost"&amp;gt;

      &amp;lt;Realm className="org.apache.catalina.realm.LockOutRealm"&amp;gt;
        &amp;lt;Realm className="org.apache.catalina.realm.UserDatabaseRealm"
               resourceName="UserDatabase"/&amp;gt;
      &amp;lt;/Realm&amp;gt;

      &amp;lt;Host name="localhost"  appBase="webapps"
            unpackWARs="true" autoDeploy="true"&amp;gt;
        &amp;lt;Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
               prefix="localhost_access_log" suffix=".txt"
               pattern="%h %l %u %t &amp;amp;quot;%r&amp;amp;quot; %s %b" /&amp;gt;

      &amp;lt;/Host&amp;gt;
    &amp;lt;/Engine&amp;gt;
  &amp;lt;/Service&amp;gt;
&amp;lt;/Server&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 10 Aug 2020 12:17:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/tomcat-not-setting-server-xml/m-p/94229#M27827</guid>
      <dc:creator>sagard_mowt</dc:creator>
      <dc:date>2020-08-10T12:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: Tomcat not setting server.xml</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/tomcat-not-setting-server-xml/m-p/94230#M27828</link>
      <description>&lt;P&gt;Tomcat currently operates only on&amp;nbsp;JKS,&amp;nbsp;PKCS11&amp;nbsp;or&amp;nbsp;PKCS12&amp;nbsp;format keystores. The&amp;nbsp;JKS&amp;nbsp;format is Java's standard "Java KeyStore" format, and is the format created by the&amp;nbsp;keytool&amp;nbsp;command-line utility. This tool is included in the JDK. The&amp;nbsp;PKCS12&amp;nbsp;format is an internet standard, and can be manipulated via (among other things) OpenSSL and Microsoft's Key-Manager.&lt;/P&gt;&lt;P&gt;It seems&amp;nbsp;JCEKS is not supported by tomcat 8,you can try to change your store typ to JKS&lt;/P&gt;</description>
      <pubDate>Tue, 11 Aug 2020 03:32:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/tomcat-not-setting-server-xml/m-p/94230#M27828</guid>
      <dc:creator>kaynezhang</dc:creator>
      <dc:date>2020-08-11T03:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: Tomcat not setting server.xml</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/tomcat-not-setting-server-xml/m-p/94231#M27829</link>
      <description>&lt;P&gt;There should not be any issue with support of JCEKS - Tomcat simply uses that configuration property to configure the underlying Java keystore, a native API feature, and passes on the store type for Java to handle. So Tomcat does not need to explicitly support a specific keystore type, as the support is already provided by Java / the JVM itself.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Aug 2020 07:00:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/tomcat-not-setting-server-xml/m-p/94231#M27829</guid>
      <dc:creator>afaust</dc:creator>
      <dc:date>2020-08-11T07:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Tomcat not setting server.xml</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/tomcat-not-setting-server-xml/m-p/94232#M27830</link>
      <description>&lt;P&gt;I decided to start over using the Loftuxab Alfresco Ubuntu Install since I am using a Debian server.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://github.com/loftuxab/alfresco-ubuntu-install" target="_blank" rel="nofollow noopener noreferrer"&gt;https://github.com/loftuxab/alfresco-ubuntu-install&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I will set this thread as answered and continue over at&amp;nbsp;&lt;A title="Alfresco Community Edition Installation Instructions" href="https://hub.alfresco.com/t5/alfresco-content-services-forum/alfresco-community-edition-installation-instructions/m-p/300803" target="_self" rel="nofollow noopener noreferrer"&gt;Alfresco Community Edition Installation Instructions.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thank you for your assistance.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Aug 2020 15:32:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/tomcat-not-setting-server-xml/m-p/94232#M27830</guid>
      <dc:creator>sagard_mowt</dc:creator>
      <dc:date>2020-08-11T15:32:01Z</dc:date>
    </item>
  </channel>
</rss>

