mirror of https://github.com/apache/lucene.git
'**' is unsupported bulleted list syntax - switch to '-', add some vertical whitespace
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1676356 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
093d86901b
commit
29b2d2b062
|
@ -80,25 +80,32 @@ Upgrading from Solr 5.1
|
||||||
to track the respective stats. Advanced users with client code manipulating these objects will
|
to track the respective stats. Advanced users with client code manipulating these objects will
|
||||||
need to update their code accordingly. See SOLR-7325 and SOLR-7336 for more info.
|
need to update their code accordingly. See SOLR-7325 and SOLR-7336 for more info.
|
||||||
|
|
||||||
* Solr has internally been upgraded to use Jetty 9. See SOLR-4839 for full details, but there are a few key details all Solr users should know when upgrading:
|
* Solr has internally been upgraded to use Jetty 9. See SOLR-4839 for full details, but there are
|
||||||
** It is no longer possible to run "java -jar start.jar" from inside the server directory.
|
a few key details all Solr users should know when upgrading:
|
||||||
The bin/solr script is the only supported way to run Solr. This is necessary to support
|
|
||||||
HTTP and HTTPS modules in Jetty which can be selectively enabled by the bin/solr scripts.
|
- It is no longer possible to run "java -jar start.jar" from inside the server directory.
|
||||||
In case you have a pressing need to run solr the old way, you can run
|
The bin/solr script is the only supported way to run Solr. This is necessary to support
|
||||||
"java -jar start.jar --module=http" to get the same behavior as before.
|
HTTP and HTTPS modules in Jetty which can be selectively enabled by the bin/solr scripts.
|
||||||
** The way SSL support is configured has been changed. Before this release,
|
In case you have a pressing need to run solr the old way, you can run
|
||||||
the SOLR_SSL_OPTS property configured in solr.in.sh (linux/mac) or solr.in.cmd (windows)
|
"java -jar start.jar --module=http" to get the same behavior as before.
|
||||||
was used to enable/disable SSL but starting in 5.2.0, new properties named as
|
|
||||||
SOLR_SSL_KEY_STORE, SOLR_SSL_KEY_STORE_PASSWORD, SOLR_SSL_TRUST_STORE,
|
- The way SSL support is configured has been changed. Before this release,
|
||||||
SOLR_SSL_TRUST_STORE_PASSWORD, SOLR_SSL_NEED_CLIENT_AUTH and SOLR_SSL_WANT_CLIENT_AUTH
|
the SOLR_SSL_OPTS property configured in solr.in.sh (linux/mac) or solr.in.cmd (windows)
|
||||||
have been introduced. The bin/solr scripts configure the SOLR_SSL_OPTS property
|
was used to enable/disable SSL but starting in 5.2.0, new properties named as
|
||||||
automatically based on the above new properties.
|
SOLR_SSL_KEY_STORE, SOLR_SSL_KEY_STORE_PASSWORD, SOLR_SSL_TRUST_STORE,
|
||||||
You should *not* configure the SOLR_SSL_OPTS property directly inside solr.in.{sh,cmd}.
|
SOLR_SSL_TRUST_STORE_PASSWORD, SOLR_SSL_NEED_CLIENT_AUTH and SOLR_SSL_WANT_CLIENT_AUTH
|
||||||
** Support for SOLR_SSL_PORT property has been removed. Instead use the regular SOLR_PORT
|
have been introduced. The bin/solr scripts configure the SOLR_SSL_OPTS property
|
||||||
property or specify the port while invoking the bin/solr script using the "-p" switch.
|
automatically based on the above new properties.
|
||||||
** Furthermore, it is now possible to configure the HTTP client with
|
|
||||||
different SSL properties than the ones used for Jetty using the same files.
|
You should *not* configure the SOLR_SSL_OPTS property directly inside solr.in.{sh,cmd}.
|
||||||
** Please refer to the "Enabling SSL" section in the Solr Reference Guide for complete details.
|
|
||||||
|
- Support for SOLR_SSL_PORT property has been removed. Instead use the regular SOLR_PORT
|
||||||
|
property or specify the port while invoking the bin/solr script using the "-p" switch.
|
||||||
|
|
||||||
|
- Furthermore, it is now possible to configure the HTTP client with
|
||||||
|
different SSL properties than the ones used for Jetty using the same files.
|
||||||
|
|
||||||
|
- Please refer to the "Enabling SSL" section in the Solr Reference Guide for complete details.
|
||||||
|
|
||||||
Detailed Change List
|
Detailed Change List
|
||||||
----------------------
|
----------------------
|
||||||
|
|
Loading…
Reference in New Issue