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とユーザーごとにデーモンを起動したい場合は、2つの簡単なソリューションがあります。

  1. この場合は、systemctl記事で述べたようにシェルrcまたはシェルrc内で直接実行してください。
    httpd.xinitrc

  2. 使用systemctl --user
    ユーザーセッションがあまり安定しておらず、正式なサポートがないため、これはお勧めできません。


httpd正直なところ、私はまだなぜTTYサービスを開始したいのかを理解しようとしています。

答え2

UbuntuにはスクリプトPerl(おそらくDebianの遺産である/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;

関連情報