systemctl


通常使わないサービスの自動起動をやめる
$ systemctl disable httpd.service
$ systemctl disable firewalld.service 



自動起動させるには
$ systemctl enable httpd.service

サービス起動
$ systemctl start httpd.service

サービス停止
$ systemctl stop httpd.service
$ systemctl stop firewalld.service

サービス状態確認
$ systemctl status httpd.service

現在有効になっているサービスの一覧
$ systemctl -t service


ipatables.serviceがfirewalld.serviceに変更になった