Adapted from the forked gist and this blog. Adjusted to our own implementation.
The provided file should work with systemd version 219 or later. It might work with earlier versions.
The easiest way to check your systemd version is to run systemctl --version
.
We will assume the following:
- that you want to run traefik as user
traefik
and grouptraefik
, with UID and GID 321 - you are working from a non-root user account that can use 'sudo' to execute commands as root
Adjust as necessary or according to your preferences.
First, put the traefik binary in the system wide binary directory and give it appropriate ownership and permissions:
sudo cp /path/to/traefik /usr/local/bin
sudo chown root:root /usr/local/bin/traefik
sudo chmod 755 /usr/local/bin/traefik
Give the traefik binary the ability to bind to privileged ports (e.g. 80, 443) as a non-root user:
sudo setcap 'cap_net_bind_service=+ep' /usr/local/bin/traefik
Set up the user, group, and directories that will be needed:
sudo groupadd -g 321 traefik
sudo useradd \
-g traefik --no-user-group \
--shell /usr/sbin/nologin \
--system --uid 321 traefik
sudo mkdir /etc/traefik
sudo mkdir /etc/traefik/acme
sudo mkdir /etc/traefik/config
sudo chown -R root:root /etc/traefik
sudo chown -R root:root /etc/traefik/config
sudo chown -R traefik:traefik /etc/traefik/acme
Place your traefik configuration files ("traefik.yaml" and "service.yaml") in the proper directory and give it appropriate ownership and permissions:
sudo cp /path/to/traefik.yaml /etc/traefik/
sudo chown root:root /etc/traefik/traefik.yaml
sudo chmod 644 /etc/traefik/traefik.yaml
sudo cp /path/to/service.yaml /etc/traefik/config/
sudo chown root:root /etc/traefik/config/service.yaml
sudo chmod 644 /etc/traefik/config/service.yaml
Install the systemd service unit configuration file, reload the systemd daemon, and start traefik:
sudo cp /path/to/traefik.service /etc/systemd/system/
sudo chown root:root /etc/systemd/system/traefik.service
sudo chmod 644 /etc/systemd/system/traefik.service
sudo systemctl daemon-reload
sudo systemctl start traefik.service
Have the traefik service start automatically on boot if you like:
sudo systemctl enable traefik.service
If traefik doesn't seem to start properly you can view the log data to help figure out what the problem is:
journalctl --boot -u traefik.service
If your GNU/Linux distribution does not use journald with systemd then check any logfiles in /var/log
.
If you want to follow the latest logs from traefik you can do so like this:
journalctl -f -u traefik.service