Hello, I'm trying to set up Solr with a multi core configuration but I'm running into troubles starting using start.jar.
Specifically, running java -jar start.jar inside of the example directory works fine. However, I've created a new directory some place else with the following: solr.xml core0/conf/schema.xml core0/conf/solrconfig.xml core1/conf/schema.xml core1/conf/solrconfig.xml When I run java -Dsolr.solr.home=$(my-project-dir) -jar $(brew --prefix solr)/libexec/example/start.jar I get the following error: java.io.FileNotFoundException: No XML configuration files specified in start.config or command line. at org.eclipse.jetty.start.Main.start(Main.java:506) at org.eclipse.jetty.start.Main.main(Main.java:95) What do I need to do to get this working? This is my first exposure to Jetty, and I'm not an expert in the Java ecosystem at all. Thanks! - James