TranslateProject/sources/tech/20140901 Awesome systemd Commands to Manage Linux System.md
2014-09-10 22:08:53 +08:00

10 KiB
Raw Blame History

(translating by szrlee) Awesome ! systemd Commands to Manage Linux System

Systemd is the new system and service manager for Linux. It is a replacement for init system and can manage system startup and services. It starts up and supervises the entire system. In article we are using centos 7.0 installed with systemd 216 version and the latest version is available for download from freedesktop.org.

With new player in town, PID 1 is occupied by “systemd” and can be seen from pstree command as well:

[root@linoxide ~]# pstree

Lets explore what systemd is capable of and what possibilities we have with the new replacement for sysVinit.

1. Faster startup

The sysvinit starts the processes serially, one at a time. Systemd starts services in parallel and starts only those services which are actually required, reducing the boot time significantly. You can get the boot process duration with the following command:

[root@linoxide ~]# systemd-analyze

The command systemd-analyze time also shows the same information.

[root@linoxide ~]# systemd-analyze time

If you want to print a list of all running units, the blame option to systemd-analyze command can provide you with that, ordered by the time taken to initialize.

[root@linoxide ~]# systemd-analyze blame

The above screen shows only a small number of processes, you can scroll through the list with arrows just like in less pager.

2. The systemctl command

The systemctl command is the most talked command that comes with systemd. You can manage a whole lot of your system with this command. Lets explore this command before going any further:

2.1 List Units

systemctl command without any option lists all the running units. The list-units switch also does the same.

[root@linoxide ~]# systemctl

or

[root@linoxide ~]# systemctl list-units

2.2 Listing failed units

The failed units can be listed with --failed switch.

[root@linoxide ~]# systemctl --failed

You will see the use of systemctl command at many places in this article.

3. Managing services

Let us now see how services can be managed with systemd.

3.1 Active services

All the active services can be checked with the following command:

[root@linoxide ~]# systemctl list-units -t service

3.2 Service status

In the sysvinit, we could use the “service” command to manage the services, but with systemd, the systemctl command is used to manage services. In ordwer to see whether a service is running or not, we can use the systemctl command like this:

[root@linoxide ~]# systemctl status dnsmasq

3.3 Start a service

To start a service, again we use the systemctl command as:

[root@linoxide ~]# systemctl start dnsmasq

As opposed to service command, this command does not give any output. But of course, we can check the status of the service once again to confirm that its started successfully:

3.4 Stopping a service

Now you are smart enough and already know the command to stop a service with systemd:

[root@linoxide ~]# systemctl stop dnsmasq

3.5 Restart a service

Similarly, restarting a service is managed using systemctl restart :

[root@linoxide ~]# systemctl restart dnsmasq

3.6 Reload a service

In case we need to reload the configuration of service (say ssh), without restarting it, we can use the command:

[root@linoxide ~]# systemctl reload sshd

Although all of the above syntax are working, the official documentation suggests that these command be run with following syntax:

[root@linoxide ~]# systemctl status dnsmasq.service

4. Managing services at boot

The chkconfig command was used to manage services at boot. The same command systemd is used with systemd to manage services at boot.

4.1 Checking service status at boot

In order to check if a service is enabled on boot or not:

[root@linoxide ~]# systemctl is-enabled dnsmasq.service

4.2 Enable a service at boot

systemctl command can be used like this to enable a service at boot (this corresponds to sysvinit chkconfig on)

[root@linoxide ~]# systemctl enable dnsmasq.service

4.3 Disable a service at boot

Similarly, the services can be disabled at boot with systemctl command:

[root@linoxide ~]# systemctl disable dnsmasq.service

5. Managing Remote systems

Typically, all of the ablve systemctl commands can be used to manage a remote host with systemctl command itself. This will use ssh for communication with the remote host. All you need to do is add the user and host to systemctl command like this:

[root@linoxide ~]# systemctl status sshd -H root@1.2.3.4

6. Managing targets:

Systemd has concept of targets having similar purpose to runlevels in sysVinit. The runlevels in sysVinit were mostly numeric (0,1,2,…). Here are the runlevels in sysVinit with their systemd counterparts:

0 runlevel0.target, poweroff.target

1, s, single runlevel1.target, rescue.target

2, 4 runlevel2.target, runlevel4.target, multi-user.target

3 runlevel3.target, multi-user.target

5 runlevel5.target, graphical.target

6 runlevel6.target, reboot.target

emergency emergency.target

6.1 Changing current target

The current target(runlevel) can be changed with the command:

[root@linoxide ~]# systemctl isolate graphical.target

6.2 List current target

If you want to see what target you are in, you need to list all the corresponding units. It might not feel at home with this new way, but its the way systemd works.

[root@linoxide ~]# systemctl list-units --type=target

You can see “graphical.target” listed here. This is what we changed our target into. Now lets change the runlevel again to multi-user.target and then analyze this output:

[root@linoxide ~]# systemctl isolate multi-user.target
[root@linoxide ~]# systemctl list-units --type=target

6.3 List default target

To list the default target, we use systemctl command like this:

[root@linoxide ~]# systemctl get-default

6.4 Change default target

The default target can be set with set-default command with systemctl:

[root@linoxide ~]# systemctl set-default graphical.target

7. Logging in systemd

The systemd has its own logging system called journald. It replaces the syslog daemon from sysVinit. The command journalctl is used to read the logs.

[root@linoxide ~]# journalctl

7.1 Boot messages

To see all boot messages, run the command “journalctl -b”.

[root@linoxide ~]# journalctl -b

7.2 Follow logs

The following command follows the system logs in real time (similar to tail -f).

[root@linoxide ~]# journalctl -f

7.3 Service specific logs

To check logs specific to a particular service or executable, use journalctl like this:

[root@linoxide ~]# journalctl /usr/sbin/dnsmasq

8. Power management

The systemctl command can be used to put the system down, or reboot or hibernate.

To poweroff, reboot, suspend and hibernate, use the following commands respectively:

[root@linoxide ~]# systemctl poweroff

[root@linoxide ~]# systemctl reboot

[root@linoxide ~]# systemctl suspend

[root@linoxide ~]# systemctl reboot

9. Bonus

The systemd brings out the whole new approach to interacting with your operating system. The systemd is so full of features. For example, you can get the hostname and other useful features about your Linux machine, you can use hostnamectl command

[root@linoxide ~]# hostnamectl


via: http://linoxide.com/linux-command/linux-systemd-commands/

作者:Raghu 译者:szrlee 校对:校对者ID

本文由 LCTT 原创翻译,Linux中国 荣誉推出