What is systemd's target, service and socket?

Service units:

A unit configuration file whose name ends in .service encodes
information about a process controlled and supervised by systemd.

— systemd.service(5)

Systemd service units are the units that actually execute and keep track of programs and daemons, and dependencies are used to make sure that services are started in the right order. They are the most commonly used type of units.

Socket units:

A unit configuration file whose name ends in ".socket" encodes
information about an IPC or network socket or a file system FIFO
controlled and supervised by systemd, for socket-based activation.

— systemd.socket(5)

Socket units on the other hand don't actually start daemons on their own. Instead, they just sit there and listen on an IP address and a port, or a UNIX domain socket, and when something connects to it, the daemon that the socket is for is started and the connection is handed to it.

This is useful for making sure that big daemons that take up a lot of resources but are rarely used aren't running and taking up resources all the time, but instead they are only started when needed.

Target units:

A unit configuration file whose name ends in ".target" encodes
information about a target unit of systemd, which is used for grouping
units and as well-known synchronization points during start-up.

— systemd.target(5)

Targets are used for grouping and ordering units. They are somewhat of a rough equivalent to runlevels in that at different targets, different services, sockets, and other units are started. Unlike runlevels, they are much more free-form and you can easily make your own targets for ordering units, and targets have dependencies among themselves.

For instance, multi-user.target is what most daemons are grouped under, and it requires basic.target to be activated, which means that all services grouped under basic.target will be started before the ones in multi-user.target.


The documentation for systemd is excellent for such a relatively new project. To start with targets, from man systemd.target:

Target units do not offer any additional functionality on top of the generic functionality provided by units. They exist merely to group units via dependencies (useful as boot targets), and to establish standardized names for synchronization points used in dependencies between units. Among other things, target units are a more flexible replacement for SysV runlevels in the classic SysV init system.

These "groups of units" cover an array of different functionalities, from basic.target which essentially covers system bootup, through to everyhting from dbus, gettys, mount points to swap and timers. You can see the full list with man systemd.special.

service files are the basic units for running processes controlled by systemd. Again, from man systemd.service:

A unit configuration file whose name ends in .service encodes information about a process controlled and supervised by systemd.

These constitute the daemons that can be started, stopped, restarted, reloaded.

Finally, sockets, from man systemd.socket:

A unit configuration file whose name ends in ".socket" encodes information about an IPC or network socket or a file system FIFO controlled and supervised by systemd, for socket-based activation.

These cover a socket in the file-system or on the Internet, as well as classic FIFOs as transport. Each socket unit has a matching service unit, that is started if the first connection comes in on the socket or FIFO.

In additon to the man pages, it is well worth reading Lennart's series of blog posts, systemd for Administrators, which provides an in-depth look at the architecture and implementation of systemd (there are currently 20 posts in the series).

Tags:

Systemd