不兼容特性:
systemctl的命令是固定不变的;
由非systemd启动的服务,systemctl无法与之通信,意味着systemd无法控制此服务;
二、systemctl命令
2.1 管理系统服务
其实我们使用很多次systemctl命令来管理服务,对于RHEL 7以上来说,只要是service以及其它类型的unit的文件,都是由systemd进行管控的,而且还能兼容/etc/init.d/目录下的各个服务脚本,而且对于命令的使用也很好掌握。
RHEL 7:service等类型的unit文件;
systemctl命令:
systemctl - Control the systemd system and service manager
systemctl [OPTIONS...] COMMAND [NAME...]
对于该命令来说,拥有着许多的子命令,我们就了解systemctl命令,而后看一下与CentOS 6的对比区别。
启动:service NAME start ==> systemctl start NAME.service
停止:service NAME stop ==> systemctl stop NAME.service
重启:service NAME restart ==> systemctl restart NAME.service
状态:service NAME status ==> systemctl status NAME.service
条件式重启:service NAME condrestart ==> systemctl try-restart NAME.service
重载或重启服务:systemctl reload-or-restart NAME.service
重载或条件式重启服务:systemctl reload-try-restart NAME.service
查看某服务当前激活与否的状态:systemctl is-active NAME.service
查看所有已激活的服务:systemctl list-units --type service
查看所有服务(已激活及未激活): chkconfig --list ==> systemctl list-units -t service --all
查看某服务是否能开机自启:chkconfig --list NAME ==> systemctl is-enable NAME.service
禁止某服务设定为开机自启:systemctl mask NAME.service
取消此禁止:systemctl umask NAME.service
查看服务的依赖关系:systemctl list-dependencies NAME.service
以上就是关于service类型的unit文件与CentOS 6中的命令对比,那么我们接下来介绍一下对于target类型的文件是如何进行管理的,我们在刚才的文章中写道unit的常见类型,其中target类型就是用于实现其系统启动的运行级别,一共有七个运行级别,从0开始,到6结束,我们介绍一下这七个运行级别。
0:关机;
1:单用户模式,无网络连接,不运行守护进程,不允许非超级用户登录;
2:多用户模式,无网络连接,不运行守护进程;
3:多用户模式,正常启动系统;
4:用户自定义;
5:多用户模式,图形界面;
6:重启;
而在RHEL 7带有systemd功能中使用target代替Runlevel,例如:multi-user.target相当于是init 3,但systemd可以向后兼容其运行级别,目前的绝大多数发行版采用systemd代替Unix SystemV。
那么现在说一下在systemd命令中所对应的运行级别以及在CentOS 6上对应的的运行切换等命令:
运行级别:
0 ==> runlevel0.target, poweroff.target
1 ==> runlevel1.target, rescue.target
2 ==> runlevel2.target, multi-user.target
3 ==> runlevel3.target, multi-user.target
4 ==> runlevel4.target, multi-user.target
5 ==> runlevel5.target, graphical.target
6 ==> runlevel6.target, reboot.target
切换切换:init N ==> systemctl isolate NAME.target
查看级别:runlevel ==> systemctl list-utits --type target
查看所有级别:systemctl list-units -t target -a
获取默认运行级别:systemctl get-default
修改默认运行级别:systemctl get-default NAME.target
切换至紧急救援模式:systemctl rescre
切换至emergency模式:systemctl emergency
以上就是管理常见的target类型的命令,我们还有一些其它常用命令来进行总结。
其它常用命令:
关机:systemctl halt, systemctl poweroff
重启:systemctl reboot
挂起:systemctl suspend
快照:systemctl hibernate
快照并挂起:systemctl hybrid-sleep
三、systemd unit file
在我们介绍完systemd以及讲解了systemctl命令之后,我们了解unit file架构是什么样子的,以及如何写出unit file。
而unit文件是由描述各其行为及配置指令组成的,其配置文件属于.ini风格,通过各种指令来管理以上的功能。
那么unit file共有三部分组成.
service unit file
文件通常由三部分组成:
[Unit]: 定义与Unit类型无关的通用选项;用于提供unit的描述信息,unit行为及依赖关系等;
[Service]:与特定类型相关的专用选项;此处为Service类型;
[Install]:定义由"systemctl enable"及"systemctl disable"命令在实现服务启用或禁用时用到的一些选项;
以上就是unit配置文件的结构,接下来我们说一下这三部分的常用选项。
首先我们来说unit配置段: