Configuring Solr Standalone
Use the following procedure to configure Solr Standalone.
Download the
solr_for_audit_setup_v3
file to the/usr/local/
directory:wget https://issues.apache.org/jira/secure/attachment/12761323/solr_for_audit_setup_v3.tgz -O /usr/local/solr_for_audit_setup_v3.tgz
Use the following commands to switch to the
/usr/local/
directory and extract thesolr_for_audit_setup_v3
file.cd /usr/local tar xvf solr_for_audit_setup_v3.tgz
The contents of the .tgz file will be extracted into a
/usr/local/solr_for_audit_setup_v3
directory.Use the following command to switch to the
/usr/local/solr_for_audit_setup_v3
directory.cd /usr/local/solr_for_audit_setup
Use the following command to open the
install.properties
file in the vi text editor.vi install.properties
Set the following property values, then save the changes to the
install.properties
file.Table 4.1. Solr install.properties Values
Property Name Value Description JAVA_HOME <path_to_jdk>, for example: /usr/jdk64/jdk1.8.0_60
Provide the path to the JDK install folder. For Hadoop, you can check /etc/hadoop/conf/hadoop-env.sh
for the value of JAVA_HOME. As noted previously, Solr only supports JDK 1.7 and higher.SOLR_USER solr The Linux user used to run Solr. SOLR_INSTALL_FOLDER /opt/lucidworks-hdpsearch/solr The Solr installation directory. SOLR_RANGER_HOME /opt/lucidworks-hdpsearch/solr/ranger_audit_server The location where the Ranger-related configuration and schema files will be copied. SOLR_RANGER_PORT 6083 The Solr port for Ranger. SOLR_DEPLOYMENT standalone The deployment type. SOLR_RANGER_DATA_FOLDER /opt/lucidworks-hdpsearch/solr/ranger_audit_server/data The folder where the index data will be stored. The volume for this folder should have at least 1 TB free space for the index data, and should be backed up regularly. SOLR_LOG_FOLDER /var/log/solr/ranger_audits The folder for the Solr log files. SOLR_MAX_MEM 2g The memory allocation for Solr. Use the following command to run the Solr for Ranger setup script.
./setup.sh
To start Solr, log in as the
solr
orroot
user and run the following command./opt/lucidworks-hdpsearch/solr/ranger_audit_server/scripts/start_solr.sh
When Solr starts, a confirmation message appears.
Started Solr server on port 6083 (pid=). Happy searching!
You can use a web browser to open the Solr Admin Console at the following address:
http:<solr_host>:6083/solr
Note | |
---|---|
You can use the following command to stop Solr: /opt/lucidworks-hdpsearch/solr/ranger_audit_server/scripts/stop_solr.sh |