I know that this topic has been covered in some details but I have been unable to resole even after reviewing all of the posts, and now I have come to a point where I need to ask questions to fix it. I have made changes to share-config-custom.xml and server.xml; and I can connect to the url https://<server name>/alfresco or https://<server name>/share.
I am able to login with using the admin account on <server name>/alfresco but when I try it for <server name>/share I get the following message "The remote server may be unavailable or your authentication details have not been recognised."
When I review the log I see a number of errors relating to "unable to find valid certification path", and I am not sure if this relates to the share login or another problem that I have caused by making a number of config changes.
It would be great if someone could help or point me in the right direction.
<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>https://localhost:443/alfresco/</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>https://localhost:443/alfresco/</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>https://localhost:443/alfresco/</endpoint-url> <basic-auth>true</basic-auth> <identity>user</identity> </endpoint>
<endpoint> <id>alfresco-api</id> <parent-id>alfresco</parent-id> <name>Alfresco Public API - user access</name> <description>Access to Alfresco Repository Public API that require user authentication. This makes use of the authentication that is provided by parent 'alfresco' endpoint.</description> <connector-id>alfresco</connector-id> <endpoint-url>https://localhost:443/alfresco/api</endpoint-url> <identity>user</identity> </endpoint> </remote> </config>