Where are the systemd units/services located in Ubuntu?

The package-provided service files are all usually located in /lib/systemd/system. For example, search for .service in the package index.

From man systemd.unit:

/etc/systemd/system/*
/run/systemd/system/*
/lib/systemd/system/*
...

$XDG_CONFIG_HOME/systemd/user/*
$HOME/.config/systemd/user/*
/etc/systemd/user/*
$XDG_RUNTIME_DIR/systemd/user/*
/run/systemd/user/*
$XDG_DATA_HOME/systemd/user/*
$HOME/.local/share/systemd/user/*
/usr/lib/systemd/user/*

The latter ones are for user sessions. IIRC Ubuntu 16.04 still uses upstart for user sessions, so those files are only applicable from after 16.04.

For a specific service, to see what systemd is reading, run systemctl status <service> or systemctl show <service>:

$ systemctl show ssh.service | grep Path
FragmentPath=/lib/systemd/system/ssh.service
DropInPaths=/etc/systemd/system/ssh.service.d/override.conf
$ systemctl status ssh.service
● ssh.service - OpenBSD Secure Shell server
   Loaded: loaded (/lib/systemd/system/ssh.service; enabled; vendor preset: enabled)
  Drop-In: /etc/systemd/system/ssh.service.d
           └─override.conf
   Active: active (running) since Thu 2017-01-26 16:06:53 JST; 21h ago
 Main PID: 948 (sshd)
   CGroup: /system.slice/ssh.service
           └─948 /usr/sbin/sshd -D

There are good tools to know about whenever you need to locate something.

The first is locate, which is used to locate files by name. It uses a pre-built index, so it's extremely fast. However, it sometimes misses new files that haven't been indexed, or may also miss files with restrictive permissions. In this case, a quick locate command would find all the systemd files on Ubuntu:

locate systemd

If you want to focus on that Plex file, you can use a pipe to filter the results:

locate systemd | grep plex

The other tool to know about is find, which does a live search of a particular directory to find files. It has a lot of options. Check man find for details. To look for plexmediaserver.service anywhere on your system, you would use:

find / -name plexmediaserver.service

Finally, in this case, you probably know which package that the file you are looking for belongs to. If you aren't sure of the exact package name, you can use this syntax to find all the package which contain 'plex' in their name:

dpkg -l '*plex*'

If you find that the package you are interested is named 'plexmediaserver', then you can use this syntax to list all the files in that package:

dpkg -L plexmediaserver

Again, you can use a pipe to filter the results to just the service file you are looking for:

dpkg -L plexmediaserver | grep plexmediaserver.service

Now you'll be able to find files for many common cases.


Using systemd-analyze command:

All folders which can contain user services:

systemd-analyze --user unit-paths

I prefer systemd-analyze --global unit-paths

All folders which can contain system services:

systemd-analyze --system unit-paths

See: manpage

Tags:

Boot

Systemd