You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Shutdown options
shutdown: {
httpPort: 9983
httpHost: "0.0.0.0"
# if password is not set, shutdown is not enabled. Make this a secure password!
password: ""
gracefulDelay: "30s"
}
If password is not configured, shutdown port will reject the request.
from the updated README:
Restart / Shutdown
Solr-Undertow listens on the configured shutdown HTTP port (defaults to 9983) for a GET request, single parameter of password which must be set to a value matching the configured password.
If the a shutdown password is not configured then a 403 forbidden error will be returned. If the password does not match, a 401 unauthorized error will be return. Otherwise on success a 200 HTTP response, and on timeout or other error a 500 HTTP response (although the VM will still exit). See the configuration defaults file for the shutdown section.
The text was updated successfully, but these errors were encountered:
Added this, with default configuration:
If password is not configured, shutdown port will reject the request.
from the updated README:
Restart / Shutdown
Solr-Undertow listens on the configured shutdown HTTP port (defaults to 9983) for a GET request, single parameter of
password
which must be set to a value matching the configured password.If the a shutdown password is not configured then a 403 forbidden error will be returned. If the password does not match, a 401 unauthorized error will be return. Otherwise on success a 200 HTTP response, and on timeout or other error a 500 HTTP response (although the VM will still exit). See the configuration defaults file for the
shutdown
section.The text was updated successfully, but these errors were encountered: