サービスの設定2017/12/13 |
[1] | サービスの状態は以下のようにして確認できます。 |
# 稼働中のサービスの一覧 [root@dlp ~]# systemctl -t service UNIT LOAD ACTIVE SUB DESCRIPTION abrt-journal-core.service loaded active running Creates ABRT problems from 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 Reporti auditd.service loaded active running Security Auditing Service chronyd.service loaded active running NTP client/server crond.service loaded active running Command Scheduler dbus.service loaded active running D-Bus System Message Bus dracut-shutdown.service loaded active exited Restore /run/initramfs on ..... ..... # 全サービスの一覧 [root@dlp ~]# systemctl list-unit-files -t service UNIT FILE STATE abrt-ccpp.service disabled abrt-journal-core.service enabled abrt-oops.service enabled abrt-pstoreoops.service disabled abrt-vmcore.service enabled abrt-xorg.service enabled abrtd.service enabled arp-ethers.service disabled auditd.service enabled auth-rpcgss-module.service static ..... ..... |
[2] | 不要なサービスを止めるには以下のようにします。例として、smartdを停止し、システムの起動時に自動的に立ち上がらないようにしています。 |
[root@dlp ~]# systemctl stop smartd [root@dlp ~]# systemctl disable smartd |
[3] | 上記サービス(Systemdサービス)以外に旧式のSysVサービスが残っており、こちらの自動起動設定は旧式の chkconfig で制御することになります。最小構成でインストールした場合の SysV サービスは以下の 2つのみで、いずれもデフォルトはオフ設定です。 |
[root@dlp ~]# chkconfig --list Note: This output shows SysV services only and does not include native systemd services. SysV configuration data might be overridden by native systemd configuration. If you want to list systemd services use 'systemctl list-unit-files'. To see services enabled on particular target use 'systemctl list-dependencies [target]'. netconsole 0:off 1:off 2:off 3:off 4:off 5:off 6:off network 0:off 1:off 2:off 3:off 4:off 5:off 6:off # netconsoleの自動起動をオフにする [root@dlp ~]# chkconfig netconsole off |
Sponsored Link |