bash 如何让我的 init.d 脚本更改用户

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/19849718/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-18 08:32:30  来源:igfitidea点击:

How to make my init.d script change users

linuxbashinitinit.d

提问by Drexl

I have this script which I would like to switch to the user "terraria" before starting the daemon. I can't figure out how to do it. My research brings me to bash scripts using su my_user -c, but I don't think that works in this case.

我有这个脚本,我想在启动守护程序之前切换到用户“terraria”。我不知道该怎么做。我的研究使我使用 bash 脚本su my_user -c,但我认为在这种情况下不起作用。

#!/bin/bash
# Terraria daemon
# chkconfig: 345 20 80
# description: Terraria Server
# processname: TerrariaServer.exe

DAEMON_PATH="/usr/Terraria"

DAEMON=TerrariaServer.exe
DAEMONOPTS="-world This_Land.wld -port 7777 "

NAME=TerrariaServer
DESC="Terraria Server"
PIDFILE=/var/run/TerrariaServer.pid
SCRIPTNAME=/etc/init.d/Terraria-Server

case "" in
start)
    printf "%-50s" "Starting $NAME..."
    cd $DAEMON_PATH
    PID=`mono $DAEMON $DAEMONOPTS > /dev/null 2>&1 & echo $!`
    #echo "Saving PID" $PID " to " $PIDFILE
        if [ -z $PID ]; then
            printf "%s\n" "Fail"
        else
            echo $PID > $PIDFILE
            printf "%s\n" "Ok"
        fi
;;
status)
        printf "%-50s" "Checking $NAME..."
        if [ -f $PIDFILE ]; then
            PID=`cat $PIDFILE`
            if [ -z "`ps axf | grep ${PID} | grep -v grep`" ]; then
                printf "%s\n" "Process dead but pidfile exists"
            else
                echo "Running"
            fi
        else
            printf "%s\n" "Service not running"
        fi
;;
stop)
        printf "%-50s" "Stopping $NAME"
            PID=`cat $PIDFILE`
            cd $DAEMON_PATH
        if [ -f $PIDFILE ]; then
            kill -HUP $PID
            printf "%s\n" "Ok"
            rm -f $PIDFILE
        else
            printf "%s\n" "pidfile not found"
        fi
;;

restart)
    ##代码## stop
    ##代码## start
;;

*)
        echo "Usage: ##代码## {status|start|stop|restart}"
        exit 1
esac

回答by mti2935

Check out the following link for the 'DJB' way of starting up processes as other users: http://thedjbway.b0llix.net/daemontools/uidgid.html

查看以下链接,了解以其他用户身份启动进程的“DJB”方式:http: //thedjbway.b0llix.net/daemontools/uidgid.html

Also, see: How to run a command as a specific user in an init script?

另请参阅: 如何在 init 脚本中以特定用户身份运行命令?