Skip to content

Commit

Permalink
RANGER-4915:Fix the default SSL Ciphers are too weak issue for user s…
Browse files Browse the repository at this point in the history
…ync service (#375)
  • Loading branch information
tyoushinya committed Sep 13, 2024
1 parent f7fda3c commit e671f86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unixauthservice/scripts/ranger-usersync-services.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ if [ "${action}" == "START" ]; then
fi
fi
SLEEP_TIME_AFTER_START=5
nohup java -Dproc_rangerusersync -Dlogback.configurationFile=file:${USERSYNC_CONF_DIR}/logback.xml ${JAVA_OPTS} -Duser=${USER} -Dhostname=${HOSTNAME} -Dlogdir="${logdir}" -cp "${cp}" org.apache.ranger.authentication.UnixAuthenticationService -enableUnixAuth > ${logdir}/auth.log 2>&1 &
nohup java -Dproc_rangerusersync -Djdk.tls.ephemeralDHKeySize=2048 -Dlogback.configurationFile=file:${USERSYNC_CONF_DIR}/logback.xml ${JAVA_OPTS} -Duser=${USER} -Dhostname=${HOSTNAME} -Dlogdir="${logdir}" -cp "${cp}" org.apache.ranger.authentication.UnixAuthenticationService -enableUnixAuth > ${logdir}/auth.log 2>&1 &
VALUE_OF_PID=$!
echo "Starting Apache Ranger Usersync Service"
sleep $SLEEP_TIME_AFTER_START
Expand Down

0 comments on commit e671f86

Please sign in to comment.