Control Services and Daemons
Dennis Kibbe
This slide presentation was created using Reveal.js . You can access a transcript of this presentation by pressing S for speaker notes. You can access navigation help by pressing the question mark key. Audio for this presentation is artificially generated.
Module Outline
Introduction
Identify Automatically Started System Processes
Guided Exercise
Control System Services
Guided Exercise
Key Takeaways
Resources
Graded Lab
Learning Objectives
After completing the work in this module you will be able to:
List system daemons and network services started by the systemd units.
Control system daemons and network services, using systemctl
.
Control Services and Daemons (replace me)
The systemd Daemon
After the kernel loads itself into memory systemd is the first process (PID 1) run and is responible for bring up the rest of the system. It spawns all the following processes using fork and exec.
Core Features of systemd
The boot process is much simpler compared to the older init process.
Concurrent and parallel starting of processes allows faster boot speed.
Processes are tracked using control groups, not by PIDs.
Improved handling of boot and service dependencies.
System snapshots and restore points
Crashed services can be restarted.
Low memory footprint
journald module for event logging
Describing Service Units
.service units : Used to start frequently accessed daemons.
.socket units : Represent inter-process communication (IPC) sockets that systemd should monitor.
.path units : Used to delay the activation of a service until a specific file system change occurs.A systemd unit defines objects that the system knows how to manage. A unit has a name and a unit type.
Listing Service Units
Viewing Service States
This screenshot shows that the chrony daemon is running and is enabled so that it will run if the system is rebooted.
Verifying the Status of a Service
Guided Exercise
Identify Automatically Started System Processes
In this exercise, you list installed service units and identify which services are currently enabled and active on a server.
Control System Services
The systemctl
command is used to start, stop, restart, and reload services.
Check the Status of a Service
Note:
Starting a Service
Note: Starting a service does not keep it running if the system reboots. The service must also be enabled.
Stopping a Service
Restarting a Service
Reloading a Service
Reloading is used when you just want to re-read the configuration file. Current connections continue using the same Process ID>
List Unit Dependencies
Masking a Service
Enabling Services at Boot
Guided Exercise
Control System Services
In this exercise, you use systemctl
to stop, start, restart, reload, enable, and disable a systemd-managed service.
Key Takeaways
systemd is the first process that runs on the system and spawns all following processes.
systemd enables faster reboot times and easier management of services.
The systemctl
command is used to start, stop, reload, enable, and disable services.
Reloading a service keeps the same PID and doesn't terminate connections.
The systemctl status
command is used to determine the status of system daemons and network services.
The systemctl list-dependencies
command lists all service units upon which a specific service unit depends.
systemd can mask a service unit so that it does not run even to satisfy dependencies.
Graded Lab
Control Services and Daemons
In this lab, you will configure several services to be enabled or disabled, running or stopped, based on a specification that is provided to you.
Resume presentation
Control Services and Daemons Dennis Kibbe Mesa Community College This slide presentation was created using Reveal.js . You can access a transcript of this presentation by pressing S for speaker notes. You can access navigation help by pressing the question mark key. Audio for this presentation is artificially generated.