mirror of https://github.com/apache/nifi.git
56 lines
2.1 KiB
Bash
Executable File
56 lines
2.1 KiB
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# 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.
|
|
|
|
scripts_dir='/opt/nifi-registry/scripts'
|
|
|
|
[ -f "${scripts_dir}/common.sh" ] && . "${scripts_dir}/common.sh"
|
|
|
|
# Establish baseline properties
|
|
prop_replace 'nifi.registry.web.http.port' "${NIFI_REGISTRY_WEB_HTTP_PORT:-18080}"
|
|
prop_replace 'nifi.registry.web.http.host' "${NIFI_REGISTRY_WEB_HTTP_HOST:-$HOSTNAME}"
|
|
|
|
. ${scripts_dir}/update_database.sh
|
|
|
|
# Check if we are secured or unsecured
|
|
case ${AUTH} in
|
|
tls)
|
|
echo 'Enabling Two-Way SSL user authentication'
|
|
. "${scripts_dir}/secure.sh"
|
|
;;
|
|
ldap)
|
|
echo 'Enabling LDAP user authentication'
|
|
# Reference ldap-provider in properties
|
|
prop_replace 'nifi.registry.security.identity.provider' 'ldap-identity-provider'
|
|
prop_replace 'nifi.registry.security.needClientAuth' 'false'
|
|
|
|
. "${scripts_dir}/secure.sh"
|
|
. "${scripts_dir}/update_login_providers.sh"
|
|
;;
|
|
esac
|
|
|
|
. "${scripts_dir}/update_flow_provider.sh"
|
|
. "${scripts_dir}/update_bundle_provider.sh"
|
|
|
|
# Continuously provide logs so that 'docker logs' can produce them
|
|
tail -F "${NIFI_REGISTRY_HOME}/logs/nifi-registry-app.log" &
|
|
"${NIFI_REGISTRY_HOME}/bin/nifi-registry.sh" run &
|
|
nifi_registry_pid="$!"
|
|
|
|
trap "echo Received trapped signal, beginning shutdown...;" KILL TERM HUP INT EXIT;
|
|
|
|
echo NiFi-Registry running with PID ${nifi_registry_pid}.
|
|
wait ${nifi_registry_pid} |