- Lucene home page –> http://lucene.apache.org/
- Download Lucene from –> http://www.apache.org/dyn/closer.cgi/lucene/java/
- Lucene API Doc –> http://lucene.apache.org/java/docs/api/index.html
- Lucene docs for each release –> http://lucene.apache.org/java/docs/
- Where can I get help from –> java-user@lucene.apache.org
- Lucene wiki –> http://wiki.apache.org/lucene-java/FrontPage
- Lucene , how to improve search speed –> http://wiki.apache.org/lucene-java/ImproveSearchingSpeed
- Lucene , how to improve index speed –> http://wiki.apache.org/lucene-java/ImproveIndexingSpeed
- Lucene FAQ –> http://wiki.apache.org/lucene-java/LuceneFAQ
To change the default HTTP port 8080, you need to edit the “jboss-service.xml” (<jboss>\server\<application>\conf\jboss-service.xml). In your “jboss-service.xml” ,search for the mbean ServiceBindingManager. It will be commented by default. You can uncomment it. It is referring to a sample xml port binding file in the example folder ( ${jboss.home.url}/docs/examples/binding-manager/sample-bindings.xml ). You can either use this xml or copy it to another location and give that path in your “jboss-service.xml”. In the sample-bindings.xml, search for the <server name=”ports-01?> ( as given in your “jboss-service.xml” ) . In this “server name” , search for the “service-config” with <delegate-config portName=”URLPort”/> for the “type=HTTP” and change the port to <binding port=”8180?/> to use 8180 instead of 8080.
Comments
Post a Comment