【问题标题】:How to make my init.d script change users如何让我的 init.d 脚本更改用户
【发布时间】:2013-11-19 21:52:50
【问题描述】:

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

#!/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 "$1" 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)
    $0 stop
    $0 start
;;

*)
        echo "Usage: $0 {status|start|stop|restart}"
        exit 1
esac

【问题讨论】:

  • @pinxue 我看到了那个。它没有帮助,或者我不明白它。我尝试在cd $DAEMON_PATH 之后添加su terraria 但这只会使scipt 将您放入该用户的命令提示符中。另外,如果我使用su terraria -c ls 来防止这种情况发生,那么它仍然以 root 身份运行。
  • 以用户身份运行整个脚本应该是su terrario -c /path/to/script

标签: linux bash init init.d


【解决方案1】:

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

另外,请参阅: How to run a command as a specific user in an init script?

【讨论】:

  • 非常感谢您的资源!这就是我一直在寻找的。​​span>
猜你喜欢
  • 1970-01-01
  • 2013-05-09
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2013-09-29
  • 2011-04-05
  • 1970-01-01
  • 2014-08-22
相关资源
最近更新 更多