Ubuntu 20.04
Sponsored Link

初期設定 : サービスの管理2020/04/24

 
サービスの状態の確認や 有効化/無効化 は以下のように実行可能です。
[1] サービスの一覧を表示します。
# 現在起動しているサービスの一覧を表示 ([--all] 付加で全サービスをリスト)

root@dlp:~#
systemctl -t service

  UNIT                                 LOAD   ACTIVE SUB     DESCRIPTION       >
  accounts-daemon.service              loaded active running Accounts Service  >
  apparmor.service                     loaded active exited  Load AppArmor prof>
  apport.service                       loaded active exited  LSB: automatic cra>
.....
.....
  unattended-upgrades.service          loaded active running Unattended Upgrade>
  user-runtime-dir@0.service           loaded active exited  User Runtime Direc>
  user@0.service                       loaded active running User Manager for U>

LOAD   = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB    = The low-level unit activation state, values depend on unit type.

48 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use 'systemctl list-unit-files'.

# サービスの起動設定の一覧を表示

root@dlp:~#
systemctl list-unit-files -t service

UNIT FILE                              STATE           VENDOR PRESET
accounts-daemon.service                enabled         enabled
apparmor.service                       enabled         enabled
apport-autoreport.service              static          enabled
apport-forward@.service                static          enabled
apport.service                         generated       enabled
.....
.....
xfs_scrub@.service                     static          enabled
xfs_scrub_all.service                  static          enabled
xfs_scrub_fail@.service                static          enabled

194 unit files listed.
[2] もし自身の環境で不要なサービスがあれば、以下のようにして停止と自動起動の無効化設定をします。以下の例では Apparmor 停止/無効に設定しています。なお、サービス名末尾の [.service] は省略可能です。
root@dlp:~#
systemctl stop apparmor

root@dlp:~#
systemctl disable apparmor

関連コンテンツ