systemd 入門

systemd のコマンド例

■ 現在稼働中のサービス一覧

% systemctl list-units --type=service

■ 現在のサービスの状態の確認

% systemctl status postfix.service

■ serviceの再起動

% systemctl restart postfix.service

■ serviceの再読み込み

% systemctl reload postfix.service

■ サーバ起動時の自動起動の有効化/無効化

無効化
% systemctl disable postfix

有効化
% systemctl enable postfix

実ファイル

% ls /usr/lib/systemd/system/

http://d.hatena.ne.jp/enakai00/20130915/1379212787