cancel
Showing results for 
Search instead for 
Did you mean: 

Share no work with port 80

acasado
Champ in-the-making
Champ in-the-making
Hi all, i installed alfresco 3.3 (full installation in linux) and both alfresco and share work ok. I configured auth with Oracle LDAP and its works ok. I changed port in server.xml of Tomcat:

<Connector port="80" protocol="HTTP/1.1" URIEncoding="UTF-8"
               connectionTimeout="20000"
               redirectPort="8443" />

And this configuration in alfresco-global.properties:

alfresco.context=alfresco
alfresco.host=${localname}
alfresco.port=80
alfresco.protocol=http
#
share.context=share
share.host=${localname}
share.port=80
share.protocol=http


Alfresco works ok, but share no work:

java.io.IOException: Unable to test document path: alfresco/site-data/configurations/slingshot.site.configuration.xml in remote store: alfresco due to error: 498 Connection refused

Thansks a lot.
Bye
2 REPLIES 2

masonjm
Champ in-the-making
Champ in-the-making
I just finished fighting with this. web-extension/webscript-framework-config-custom.xml.sample defines some overrides for the endpoints that Share uses to talk to Alfresco. Copy those overrides into web-extensions/share-config-custom.xml (it looks like someone forgot to add the webscript-framework-config override file to the spring configuration).

I also set repo.remote.url in alfresco-global.properties and changed the port number in a bunch of .wsdl files. I'm not sure if those are necessary or not.

ahamed_rasmi
Champ in-the-making
Champ in-the-making
You could enable both port 80 and 8080 in server.xml without changing any other config.. In interior Share use 8080 to get alfresco repo.. From URL we need not to give 8080 port



<Connector port="8080" protocol="HTTP/1.1" URIEncoding="UTF-8"
               connectionTimeout="20000"
               redirectPort="8443" />
   <Connector port="80" protocol="HTTP/1.1" URIEncoding="UTF-8"
               connectionTimeout="20000"
               redirectPort="8443" />

I hope this helps

-Ahamed