StartSolrJetty now emulates java -jar start.jar

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1298528 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan McKinley 2012-03-08 19:26:49 +00:00
parent 455ba2465f
commit 2488497c69
1 changed files with 2 additions and 2 deletions

View File

@ -39,12 +39,12 @@ public class StartSolrJetty
// Set some timeout options to make debugging easier.
connector.setMaxIdleTime(1000 * 60 * 60);
connector.setSoLingerTime(-1);
connector.setPort(8080);
connector.setPort(8983);
server.setConnectors(new Connector[] { connector });
WebAppContext bb = new WebAppContext();
bb.setServer(server);
bb.setContextPath("/");
bb.setContextPath("/solr");
bb.setWar("webapp/web");
// // START JMX SERVER