天天看点

linux修改服务运行级别,CentOS7/RHEL7 如何修改启动模式(运行级别)

linux修改服务运行级别,CentOS7/RHEL7 如何修改启动模式(运行级别)

CentOS6/RHEL6 及之前的版本修改启动模式,都是在 /etc/inittab 文件里修改,修改id后面的数字就可以

# inittab is only used by upstart for the default runlevel.

#

# ADDING OTHER CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.

#

# System initialization is started by /etc/init/rcS.conf

#

# Individual runlevels are started by /etc/init/rc.conf

#

# Ctrl-Alt-Delete is handled by /etc/init/control-alt-delete.conf

#

# Terminal gettys are handled by /etc/init/tty.conf and /etc/init/serial.conf,

# with configuration in /etc/sysconfig/init.

#

# For information on how to write upstart event handlers, or how

# upstart works, see init(5), init(8), and initctl(8).

#

# Default runlevel. The runlevels used are:

# 0 - halt (Do NOT set initdefault to this)

# 1 - Single user mode

# 2 - Multiuser, without NFS (The same as 3, if you do not have networking)

# 3 - Full multiuser mode

# 4 - unused

# 5 - X11

# 6 - reboot (Do NOT set initdefault to this)

#

id:3:initdefault:

CentOS7/RHEL7 之后版本修改启动模式,也在 /etc/inittab 里有介绍

# inittab is no longer used when using systemd.

#

# ADDING CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.

#

# Ctrl-Alt-Delete is handled by /usr/lib/systemd/system/ctrl-alt-del.target

#

# systemd uses 'targets' instead of runlevels. By default, there are two main targets:

#

# multi-user.target: analogous to runlevel 3

# graphical.target: analogous to runlevel 5

#

# To view current default target, run:

# systemctl get-default

#

# To set a default target, run:

# systemctl set-default TARGET.target

查看当前的启动模式

[[email protected] ~]# systemctl get-default

multi-user.target

修改启动模式

[[email protected] ~]# systemctl set-default graphical.target

Removed symlink /etc/systemd/system/default.target.

Created symlink from /etc/systemd/system/default.target to /usr/lib/systemd/system/graphical.target.

查看当前的启动模式

[[email protected] ~]# systemctl get-default

graphical.target

附运行级别:

runlevel0.target -> poweroff.target

runlevel1.target -> rescue.target

runlevel2.target -> multi-user.target

runlevel3.target -> multi-user.target

runlevel4.target -> multi-user.target

runlevel5.target -> graphical.target

runlevel6.target -> reboot.targe

修改完成,重启服务器,即生效。

最后编辑:2016-05-07作者:劳福喜

linux修改服务运行级别,CentOS7/RHEL7 如何修改启动模式(运行级别)

这个作者貌似有点懒,什么都没有留下。