Hello All,
Please help me in configuring network drive using aos .
I install fresh copy of alfresco and try to mapped network drive using aos It running successfully.
But when I configured SSL on alfresco, I m not able mapped as network drive
I use below steps to configure SSL.
1) Generate keystore using below command
D:\Installations\ACS\java\bin>keytool -genkey -alias localhost -keyalg RSA -keystore test.jks -keysize 512
2) Keep keystore file at appropriate path and note path
3) Open startup.bat file which is under tomcat/bin folder and add below line
set JAVA_OPTS= -Djavax.net.ssl.trustStore=D:\Installations\test.jks -Djavax.net.ssl.trustStorePassword=test
4) Open server.xml under tomcat/conf and comment out custom http port and add below tag
<Connector port="443" URIEncoding="UTF-8"
protocol="org.apache.coyote.http11.Http11Protocol"
SSLEnabled="true" maxThreads="150" scheme="https"
keystoreFile="D:\Installations\test.jks"
keystorePass="test"
keystoreType="JCEKS"
secure="true" connectionTimeout="240000"
clientAuth="false"
sslProtocol="TLS"
allowUnsafeLegacyRenegotiation="true"
maxHttpHeaderSize="32768"
sslEnabledProtocols="TLSv1.2,TLSv1.1,TLSv1,SSLv2Hello" />
5) Open shared-config-custom.xml under tomact/shared/classes/web-extensions and replace all http://localhost:<CustomPort>/alfresco to https://localhost/alfresco
6) Open alfresco-global.properties and change below lines as depicted below
alfresco.context=alfresco
alfresco.host=127.0.0.1
alfresco.port=443
alfresco.protocol=https
share.context=share
share.host=127.0.0.1
share.port=443
share.protocol=https