这里以sshd.service为例
1)查看服务启动级别
cat /lib/systemd/system/sshd.service
'''
[Install]
WantedBy=multi-user.target #级别3
'''
2)查看服务状态
systemctl status sshd.service
3)启动服务
systemctl start sshd.service
4)重启服务
systemctl restart sshd.service
5)关闭服务
systemctl stop sshd.service
6)重载服务
reload也叫平滑重启,正在连接的用户是没有感觉的,只有当用户再次连接时,会启用新的配置。
systemctl reload sshd.service
7)开机启动
systemctl enable sshd.service
8)开机不启动
systemctl disable sshd.service
9)查看是否开机启动
systemctl is-enable sshd.service
10)是否在启动状态
systemctl is-active sshd.service
11)重载systemd服务列表
systemctl daemon-reload