JeromeDL: The Semantic Digital Library - Installation


Running JeromeDL on Different Port

One of the problems you might have when running JeromeDL is that another application is already running on port 8080, used by the Tomcat server in you installation of JeromeDL. To overcome the problem you need to change the default port to some other (called in this section NEWPORT).
  • open webapp/WEB-ING/jeromedl.properties file and change two properties:
    jeromedl.resource.URI = http://localhost:NEWPORT/jeromedl/resource/%s
    jeromedl.sesame.serviceURL = http://localhost:NEWPORT/sesame/
    
  • open apache-tomcat/conf/server.xml and change  
    	<Service name="Catalina">
    	...
    		<Connector port="8080" maxHttpHeaderSize="8192"  >
    		...
    		</Connector>
    	...
    	</Service>
    
    to
    	<Service name="Catalina">
    	...
    		<Connector port="NEWPORT" maxHttpHeaderSize="8192"  >
    		...
    		</Connector>
    	...
    	</Service>