Xilai Dai created KARAF-2890:
--------------------------------
Summary: The env variables can't be read while running karaf as a
Linux service
Key: KARAF-2890
URL: https://issues.apache.org/jira/browse/KARAF-2890
Project: Karaf
Issue Type: Bug
Affects Versions: 2.3.3
Reporter: Xilai Dai
Install karaf as a Linux service following steps:
1. features:install wrapper
2. wrapper:install -s AUTO_START -n talend-runtime -d talend-runtime -D "Talend
Runtime Service"
$ ln -s /Talend/runtime/bin/talend-runtime-service /etc/init.d/talend-runtime
the fragment from generated script:
{code}
# Still want to change users, recurse. This means that the user will only be
# prompted for a password once.
su -m $RUN_AS_USER -s /bin/sh -c "$REALPATH $1"
{code}
it should be:
{code}
# Still want to change users, recurse. This means that the user will only be
# prompted for a password once.
su - -m $RUN_AS_USER -c "$REALPATH $1"
{code}
Because the user login script (.bash_profile) can't be executed without '-'
after 'su'; and '-s /bin/sh' is not standard, the default shell of the run_as
user (e.g. bash) should be used.
--
This message was sent by Atlassian JIRA
(v6.2#6252)