web-dev-qa-db-ja.com

ログアウト後もvncサーバーを存続させることはできますか?

私はOpenSUSEを使用しており、x11vncサーバーの起動時に起動するスクリプトを作成しました。しかし、ユーザーがログアウトすると、x11vncは強制終了されます。自動的に再開したい。ここに私が書いたスクリプトがあります。起動時に完全に機能します。

#!/bin/sh
#
# /etc/init.d/vnc
#
### BEGIN INIT INFO
# Provides:          x11vnc server
# Required-Start:    xdm
# Should-Start: 
# Required-Stop: 
# Should-Stop: 
# Default-Start:     5
# Default-Stop:      0 1 2 6
# Short-Description: 
# Description:       Start or stop vnc server
### END INIT INFO


#INIT SCRIPT VARIABLES
SERVICE=$(basename $0)
#Gets the name of the script

BIN="/usr/bin/x11vnc"
#Binary path
ALLOWED_GROUP=$(getent group g_vnc-usr | awk -F ":" '{ print $4 }')
#Only inf-usr group is allowed to take control of any machine.

AUTH=`ps wwaux | grep '/X.*-auth' | sed -e 's/^.*-auth *//' -e 's/ .*$//' | head -n 1`

OPT="-display :0 -auth ${AUTH} -nopw -unixpw ${ALLOWED_GROUP} -shared -oa /var/log/vnc.log -xkb -bg -verbose -forever"
#Various options of the x11vnc providing auth, user auth, logging and "keep alive" connection.

CMD="${BIN} ${OPT}"
#Both bin and options are stored

. /lib/lsb/init-functions

rc_reset
# Reset status of this service

case "$1" in
    start)
    echo -n "Starting ${SERVICE}..."
        ## Start daemon with startproc(8). 
    /sbin/startproc ${CMD}

    ##>> /dev/null 2>&1
    sleep 2s

    # Remember status and be verbose.
        rc_status -v
    ;;

    stop)
    echo -n "Shutting down ${SERVICE}..."
    ## Stop daemon with killproc(8) 
    /sbin/killproc ${BIN}

    # Remember status and be verbose
    rc_status -v
        ;;

    restart)
    ## Stop the service and regardless of whether it was
    ## running or not, start it again.
    $0 stop
    $0 start

    # Remember status and be quiet
    rc_status
    ;;

    status)
    echo -n "Checking for service ${SERVICE}..."
    ## Check status with checkproc(8), if process is running
    ## checkproc will return with exit status 0.
    /sbin/checkproc ${BIN}

    # Remember status and be verbose
    rc_status -v
    ;;
    *)
    echo -n 
    echo -n "Usage: ${SERVICE} {start|stop|restart|status}"
    exit 1
    ;;
esac
rc_exit

このスクリプトを使用すると、現在誰もログインしていない場合でも、グループのすべてのユーザーがマシンを引き継ぐことができます。

xinitrcを使用して、exec /etc/init.d/vnc restartを追加したかった

ありがとうございました。

1
igor012

RHELボックスで、systemctlを使用して、次の変更を行いました。 「/ bin/atnow」コマンドを追加して、1分後にサービスを開始しました。私の場合、stopコマンドを次のように変更しました。

ExecStop=/bin/sh -c '/usr/bin/vncserver -kill -9 %i > /dev/null 2>&1; echo "systemctl start vncserver@:1.service" | /bin/at now + 1 minute || :'

編集しました:/ etc/systemd/system/vncserver @:1.service

変更を加えた後、次のコマンドを実行してシステムを更新します。systemctlデーモン-リロード

1
Mike Behr

(コメントを回答に変換する)

-loop引数を使用して、x11vncをループで再起動できます。マニュアルページから:

X11vncプロセスが終了するたびに再起動する外部ループを作成します。このモードでは、-bgと-inetdは無視されます(ただし、以下の-loopbgを参照してください)。

Xサーバーが終了して再起動した場合でも続行するのに便利です(その時点で、プロセスはもちろん新しいXサーバーに再接続するためのアクセス許可が必要になります)。

1
Michael Mrozek