systemctl 시작은 tty에 따라 다릅니다.

systemctl 시작은 tty에 따라 다릅니다.

내 컴퓨터에서 Apache를 자동으로 시작하고 싶지만 TTY1에서 로그인한 경우에만 가능합니다(디스플레이 관리자를 실행하지 않음). 다른 TTY에서 로그인하면 시작되지 않습니다. 내 안에는 bash_profile:

[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && systemctl start httpd

그러나 이것은 작동하지 않습니다. 다른 명령도 이와 같이 작동하므로 문제는 권한과 관련된 것이라고 가정합니다( surun 만 해당 systemctl). TTY에 의존하는 httpd 서버를 시작하는 다른 방법이 있습니까?

저는 Arch를 실행하고 있습니다(참조이 페이지예를 들어, 디스플레이 관리자 없이 로그인 시 X가 어떻게 시작됩니까?

답변1

TTY 및 사용자별로 데몬을 시작하려는 경우 두 가지 간단한 솔루션이 있습니다.

  1. 이 경우 systemctl게시물 에서 언급한 대로 쉘 rc 또는 쉘 rc 내 에서 직접 실행 하십시오 .
    httpd.xinitrc

  2. 사용 systemctl --user.
    사용자 세션이 그다지 안정적이지 않고 공식적인 지원이 없기 때문에 이는 현재 권장되지 않습니다.


httpd솔직히 말해서 저는 아직도 왜 TTY별 서비스를 시작하려는지 알아내려고 노력 중입니다 .

답변2

우분투에는 스크립트 Perl(아마도 데비안의 유산일 것임 /usr/bin/deb-systemd-invoke)이 있어 적어도 실행 중인지, errorcode언제 종료되는지 확인할 수 있어 유용할 수 있습니다.

#!/usr/bin/env perl
# vim:ts=4:sw=4:expandtab
# © 2013 Michael Stapelberg <[email protected]>
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
#     * Redistributions of source code must retain the above copyright
#       notice, this list of conditions and the following disclaimer.
#
#     * Redistributions in binary form must reproduce the above copyright
#       notice, this list of conditions and the following disclaimer in the
#       documentation and/or other materials provided with the distribution.
#
#     * Neither the name of Michael Stapelberg nor the
#       names of contributors may be used to endorse or promote products
#       derived from this software without specific prior written permission.
# .
# THIS SOFTWARE IS PROVIDED BY Michael Stapelberg ''AS IS'' AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL Michael Stapelberg BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

=head1 NAME

deb-systemd-invoke - wrapper around systemctl, respecting policy-rc.d

=head1 SYNOPSIS

B<deb-systemd-invoke> start|stop|restart S<I<unit file> ...>

=head1 DESCRIPTION

B<deb-systemd-invoke> is a Debian-specific helper script which asks
/usr/sbin/policy-rc.d before performing a systemctl call.

B<deb-systemd-invoke> is intended to be used from maintscripts to start
systemd unit files. It is specifically NOT intended to be used interactively by
users. Instead, users should run systemd and use systemctl, or not bother about
the systemd enabled state in case they are not running systemd.

=cut

use strict;
use warnings;

if (@ARGV < 2) {
    print STDERR "Syntax: $0 <action> <unit file> [<unit file> ...]\n";
    exit 1;
}

my $policyhelper = '/usr/sbin/policy-rc.d';
my @units = @ARGV;
my $action = shift @units;
if (-x $policyhelper) {
    for my $unit (@units) {
        system(qq|$policyhelper $unit "$action"|);

        # 104 means run
        # 101 means do not run
        my $exitcode = ($? >> 8);
        if ($exitcode == 101) {
            print STDERR "$policyhelper returned 101, not running '" . join(' ', @ARGV) . "'\n";
            exit 0;
        } elsif ($exitcode != 104) {
            print STDERR "deb-systemd-invoke only supports $policyhelper return code 101 and 104!\n";
            print STDERR "Got return code $exitcode, ignoring.\n";
        }
    }
}

exec '/bin/systemctl', @ARGV;

관련 정보