cancel
Showing results for 
Search instead for 
Did you mean: 

Alfresco Share Login Problem with Port 443

roopa_movvqa
Champ in-the-making
Champ in-the-making
Hi,
I have configured Alfresco to use SSL on port 443. In server.xml file both port 80 and port 443 are enabled. Now alfresco is working fine with both http and https.
But I want alfresco to run only through https. I have commented the port 80 connector in "server.xml" file.
The standard Alfresco web client works fine and I can access it via localhost(https://localhost/alfresco) and also through domain(https://alfresco.xxxxxx.com/alfresco)
But when I am trying to log in into Share with the same account I get the following error message: "The remote server may be unavailable or your authentication details have not been recognised."
I have tried in so many ways by replacing the port 8080 with 443 in configuration files.
But i was failed to resolve this issue.

Please Can anyone tell the solution?

Thanks in advance.
3 REPLIES 3

mikeh
Star Contributor
Star Contributor
You should be able to update the <endpoint>s by taking webscript-framrwork-config-custom.xml.sample, place it in tomcat/shared/classes/alfresco/web-extension (removing the .sample extension) and edit the endpoint urls to match your new configuration.

If this isn't working, please raise the issue in JIRA.

Thanks,
Mike

jasswalkjr
Champ in-the-making
Champ in-the-making
Hello: Has anyone come up with a solution to the Alfresco Share Login Problem with Port (8)443?  Mike, I don't understand your post above… Can you please elaborate?

s_palyukh
Star Contributor
Star Contributor
I think you forgot about share-config-custom.xml where you should change port




   <config evaluator="string-compare" condition="Remote">
      <remote>
         <endpoint>
            <id>alfresco-noauth</id>
            <name>Alfresco - unauthenticated access</name>
            <description>Access to Alfresco Repository WebScripts that do not require authentication</description>
            <connector-id>alfresco</connector-id>
            <endpoint-url>http://localhost:8080/alfresco/s</endpoint-url>
            <identity>none</identity>
         </endpoint>

         <endpoint>
            <id>alfresco</id>
            <name>Alfresco - user access</name>
            <description>Access to Alfresco Repository WebScripts that require user authentication</description>
            <connector-id>alfresco</connector-id>
            <endpoint-url>http://localhost:8080/alfresco/s</endpoint-url>
            <identity>user</identity>
         </endpoint>

         <endpoint>
            <id>alfresco-feed</id>
            <name>Alfresco Feed</name>
            <description>Alfresco Feed - supports basic HTTP authentication via the EndPointProxyServlet</description>
            <connector-id>http</connector-id>
            <endpoint-url>http://localhost:8080/alfresco/s</endpoint-url>
            <basic-auth>true</basic-auth>
            <identity>user</identity>
         </endpoint>
        
         <endpoint>
            <id>activiti-admin</id>
            <name>Activiti Admin UI - user access</name>
            <description>Access to Activiti Admin UI, that requires user authentication</description>
            <connector-id>activiti-admin-connector</connector-id>
            <endpoint-url>http://localhost:8080/alfresco/activiti-admin</endpoint-url>
            <identity>user</identity>
         </endpoint>
      </remote>
   </config>