blob: 17967a938d74df8a6cdf2b3590e73bcb37827541 [file] [log] [blame]
#!/bin/bash
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -e
export LOGSEARCH_PORT={{logsearch_ui_port}}
# path containing LogSearch.jar file
export LOGSEARCH_PATH={{logsearch_dir}}
export LOGSEARCH_CONF_DIR={{logsearch_server_conf}}
export LOGFILE={{logsearch_log_dir}}/logsearch.log
export PID_FILE={{logsearch_pid_file}}
export JAVA_HOME={{java64_home}}
export LOGSEARCH_JAVA_MEM=-Xmx{{logsearch_app_max_memory}}m
if [ "$LOGSEARCH_JAVA_MEM" = "" ]; then
export LOGSEARCH_JAVA_MEM="-Xmx1g"
fi
export LOGSEARCH_DEBUG={{logsearch_debug_enabled}}
export LOGSEARCH_DEBUG_PORT={{logsearch_debug_port}}
{% if logsearch_solr_ssl_enabled or logsearch_ui_protocol == 'https' %}
export LOGSEARCH_SSL="true"
export LOGSEARCH_KEYSTORE_LOCATION={{logsearch_keystore_location}}
export LOGSEARCH_KEYSTORE_PASSWORD={{logsearch_keystore_password}}
export LOGSEARCH_KEYSTORE_TYPE={{logsearch_keystore_type}}
export LOGSEARCH_TRUSTSTORE_LOCATION={{logsearch_truststore_location}}
export LOGSEARCH_TRUSTSTORE_PASSWORD={{logsearch_truststore_password}}
export LOGSEARCH_TRUSTSTORE_TYPE={{logsearch_truststore_type}}
{% endif %}