This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# options that are commonly overridden | |
SOLRROOT=/usr/local/solr1 | |
SOLRHOME=./solr/ | |
SOLRLOG=/usr/local/solr1/logs | |
LISTENPORT=8983 | |
JMINMEM=256M | |
JMAXMEM=1024M | |
JBIN=/usr/bin/java | |
FUSER=/sbin/fuser | |
STOPKEY=solrjunkies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
### BEGIN INIT INFO | |
# Provides: solr | |
# Required-Start: $local_fs $remote_fs $network $syslog $named | |
# Required-Stop: $local_fs $remote_fs $network $syslog $named | |
# Default-Start: 3 4 5 | |
# Default-Stop: 0 1 6 | |
# X-Interactive: true | |
# Short-Description: Start/stop solr web server | |
### END INIT INFO |