website/content/blog/non-root-systemd-scripts.md

110 lines
3.2 KiB
Markdown
Raw Permalink Normal View History

2022-03-16 00:11:21 -04:00
---
2023-02-18 13:12:02 -05:00
date: 2022-03-15 23:55:19-04:00
2022-03-16 00:11:21 -04:00
draft: false
math: false
2023-01-05 14:04:45 -05:00
medium_enabled: true
2023-02-18 13:12:02 -05:00
medium_post_id: f527d0f12fb8
tags:
- Linux
title: Non-Root Systemd Scripts
2022-03-16 00:11:21 -04:00
---
I know of two ways to run systemd services not as root. They both have their pros and cons associated with them.
### 1. Define User/Group
The first method is one I have done before in my [docker-compose startup post](/blog/composesystemd/). It involves adding the `User` and `Group` fields to the `Service` component of the Systemd unit file.
Filename: `/etc/systemd/system/docker-compose.service`
```ini
[Unit]
Description=Docker Compose Application Service
Requires=docker.service
After=docker.service
[Service]
Type=oneshot
User=brandonrozek
Group=brandonrozek
RemainAfterExit=yes
WorkingDirectory=/home/brandonrozek/docker/
ExecStart=/usr/bin/docker-compose up -d
ExecStop=/usr/bin/docker-compose down
TimeoutStartSec=0
[Install]
WantedBy=multi-user.target
```
You can then start and enable it at boot with
```bash
sudo systemctl start docker-compose
sudo systemctl enable docker-compose
```
### 2. User-Level Systemd with Lingering Users
An alternative is to have the service file in the user's systemd config directory and add the `--user` flag during the systemd call.
Filename: `/home/brandonrozek/.config/systemd/user/docker-compose.service`
```ini
[Unit]
Description=Docker Compose Application Service
Requires=docker.service
After=docker.service
[Service]
Type=oneshot
RemainAfterExit=yes
WorkingDirectory=/home/brandonrozek/docker/
ExecStart=/usr/bin/docker-compose up -d
ExecStop=/usr/bin/docker-compose down
TimeoutStartSec=0
[Install]
WantedBy=multi-user.target
```
To start and enable:
```bash
systemctl --user start docker-compose
systemctl --user enable docker-compose
```
An issue with this approach as it is right now is that the service will only run while the user is logged in. If you want the service to run despite whether or not the user is logged in, then you'll need to mark the user as lingering.
```bash
sudo loginctl enable-linger $USER
```
You can check if a user already has that property:
```bash
sudo loginctl show-user $USER --property Linger
```
You can even list all users with the linger property:
```bash
ls /var/lib/systemd/linger
```
To disable that property:
```bash
sudo loginctl disable-linger $USER
```
Now what does linger even do?
From [FreeDesktop](https://www.freedesktop.org/software/systemd/man/loginctl.html), if linger is enabled for a sepcific user, then a user manager is spawned for that user at boot which handles the user's services and is kept around even after logouts. If linger is not enabled, then a user's services will not start at boot and will stop after the user has no sessions running.
### Pros/Cons
For a multi-user system, one can argue that linger is not a good property to have because users can then have a lot of processes spawned and persistent even if they are not using the system. In that case, having an admin individually add systemd unit files using the first approach makes sense.
2023-02-18 13:12:02 -05:00
The second approach has the benefit that the admin only has to set the linger property of the user once, and then the user can create as many systemd unit services as they'd like.