Search code examples
solr

Solr: find ULR and port


I have solr-4.10.3 installed in my Ubuntu server, I have forgot the URL and port.

Where can I find this infos in my Solr config files ?

Thanks for help.


Solution

  • The admin UI should be accessible at

    http://localhost:8983/solr

    Default port: 8983

    To change a port

    java -Djetty.port=9999 -jar start.jar
    

    For solr 5.4.1 for example

    solr-5.4.1\bin\solr start -p XXXX

    Please visit https://cwiki.apache.org/confluence/display/solr/Taking+Solr+to+Production for more information.