Linux管理者-systemctlを使用したリソース管理
systemctlsystemdを制御するために使用されるユーティリティです。systemctlは、CentOS管理者に、以下を含むsystemdで多数の操作を実行する機能を提供します。
- systemdユニットを構成する
- systemduntisのステータスを取得する
- サービスの開始と停止
- ランタイムなどのsystemdサービスを有効/無効にします。
systemctlのコマンド構文は非常に基本的ですが、スイッチやオプションと絡む可能性があります。CentOSLinuxの管理に必要なsystemctlの最も重要な機能を紹介します。
Basic systemctl syntax:
systemctl [OPTIONS] COMMAND [NAME]
以下は、で使用される一般的なコマンドですsystemctl -
- start
- stop
- restart
- reload
- status
- is-active
- list-units
- enable
- disable
- cat
- show
systemctlを使用して、開始、停止、再読み込み、再起動、有効化、無効化についてはすでに説明しました。それでは、残りの一般的に使用されるコマンドについて見ていきましょう。
状態
最も単純な形式では、statusコマンドを使用して、システム全体のステータスを確認できます。
[root@localhost rdc]# systemctl status
● localhost.localdomain
State: running
Jobs: 0 queued
Failed: 0 units
Since: Thu 2017-01-19 19:14:37 EST; 4h 5min ago
CGroup: /
├─1 /usr/lib/systemd/systemd --switched-root --system --deserialize 21
├─user.slice
│ └─user-1002.slice
│ └─session-1.scope
│ ├─2869 gdm-session-worker [pam/gdm-password]
│ ├─2881 /usr/bin/gnome-keyring-daemon --daemonize --login
│ ├─2888 gnome-session --session gnome-classic
│ ├─2895 dbus-launch --sh-syntax --exit-with-session
上記の出力は要約されています。実際のsystemctlstatusは、約100行のツリー化されたプロセスステータスを出力します。
ファイアウォールサービスのステータスを確認したいとします-
[root@localhost rdc]# systemctl status firewalld
● firewalld.service - firewalld - dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled; vendor preset: enabled)
Active: active (running) since Thu 2017-01-19 19:14:55 EST; 4h 12min ago
Docs: man:firewalld(1)
Main PID: 825 (firewalld)
CGroup: /system.slice/firewalld.service
└─825 /usr/bin/python -Es /usr/sbin/firewalld --nofork --nopid
ご覧のとおり、ファイアウォールサービスは現在アクティブであり、4時間以上使用されています。
リストユニット
list-unitsコマンドを使用すると、特定のタイプのすべてのユニットを一覧表示できます。systemdで管理されているソケットを確認しましょう−
[root@localhost]# systemctl list-units --type=socket
UNIT LOAD ACTIVE SUB DESCRIPTION
avahi-daemon.socket loaded active running Avahi mDNS/DNS-SD Stack Activation Socket
cups.socket loaded active running CUPS Printing Service Sockets
dbus.socket loaded active running D-Bus System Message Bus Socket
dm-event.socket loaded active listening Device-mapper event daemon FIFOs
iscsid.socket loaded active listening Open-iSCSI iscsid Socket
iscsiuio.socket loaded active listening Open-iSCSI iscsiuio Socket
lvm2-lvmetad.socket loaded active running LVM2 metadata daemon socket
lvm2-lvmpolld.socket loaded active listening LVM2 poll daemon socket
rpcbind.socket loaded active listening RPCbind Server Activation Socket
systemd-initctl.socket loaded active listening /dev/initctl Compatibility Named Pipe
systemd-journald.socket loaded active running Journal Socket
systemd-shutdownd.socket loaded active listening Delayed Shutdown Socket
systemd-udevd-control.socket loaded active running udev Control Socket
systemd-udevd-kernel.socket loaded active running udev Kernel Socket
virtlockd.socket loaded active listening Virtual machine lock manager socket
virtlogd.socket loaded active listening Virtual machine log manager socket
それでは、現在実行中のサービスを確認しましょう-
[root@localhost rdc]# systemctl list-units --type=service
UNIT LOAD ACTIVE SUB DESCRIPTION
abrt-ccpp.service loaded active exited Install ABRT coredump hook
abrt-oops.service loaded active running ABRT kernel log watcher
abrt-xorg.service loaded active running ABRT Xorg log watcher
abrtd.service loaded active running ABRT Automated Bug Reporting Tool
accounts-daemon.service loaded active running Accounts Service
alsa-state.service loaded active running Manage Sound Card State (restore and store)
atd.service loaded active running Job spooling tools
auditd.service loaded active running Security Auditing Service
アクティブです
IS-アクティブコマンドは、ユニットのステータス情報を返すように設計systemctlコマンドの一例です。
[root@localhost rdc]# systemctl is-active ksm.service
active
ネコ
catはめったに使用されないコマンドの1つです。シェルでcatを使用してユニットファイルへのパスを入力する代わりに、systemctlcatを使用するだけです。
[root@localhost]# systemctl cat firewalld
# /usr/lib/systemd/system/firewalld.service
[Unit]
Description=firewalld - dynamic firewall daemon
Before=network.target
Before=libvirtd.service
Before = NetworkManager.service
After=dbus.service
After=polkit.service
Conflicts=iptables.service ip6tables.service ebtables.service ipset.service
Documentation=man:firewalld(1)
[Service]
EnvironmentFile = -/etc/sysconfig/firewalld
ExecStart = /usr/sbin/firewalld --nofork --nopid $FIREWALLD_ARGS
ExecReload = /bin/kill -HUP $MAINPID
# supress to log debug and error output also to /var/log/messages
StandardOutput = null
StandardError = null
Type = dbus
BusName = org.fedoraproject.FirewallD1
[Install]
WantedBy = basic.target
Alias = dbus-org.fedoraproject.FirewallD1.service
[root@localhost]#
今、私たちは両方の探求していることにsystemdとsystemctlをより詳細に、の内のリソースを管理するためにそれらを使用してみましょうのcgroupまたは対照群。