2.7 KiB
Running headscale on Linux
Requirements
- Ubuntu 20.04 or newer, Debian 11 or newer.
Goal
Get Headscale up and running.
This includes running Headscale with SystemD.
Migrating from manual install
If you are migrating from the old manual install, the best thing would be to remove the files installed by following the guide in reverse.
You should not delete the database (/var/lib/headscale/db.sqlite
) and the
configuration (/etc/headscale/config.yaml
).
Installation
-
Download the latest Headscale package for your platform (
.deb
for Ubuntu and Debian).HEADSCALE_VERSION="" # See above URL for latest version, e.g. "X.Y.Z" (NOTE: do not add the "v" prefix!) # Or you can use the following bash one liner which intercepts the latest redirect to a specific version number and extracts the version. # HEADSCALE_VERSION="$(curl -v https://github.com/juanfont/headscale/releases/latest 2>&1 |grep location | awk -F'/' '{print $NF}' | sed -e 's/v//' | |tr -d '\r')" HEADSCALE_ARCH="" # Your system architecture, e.g. "amd64" # Or you can use dpkg to figure out the architecture of the box. # HEADSCALE_ARCH="$(dpkg --print-architecture)" wget --output-document=headscale.deb \ "https://github.com/juanfont/headscale/releases/download/v${HEADSCALE_VERSION}/headscale_${HEADSCALE_VERSION}_linux_${HEADSCALE_ARCH}.deb"
-
Install Headscale:
sudo apt install ./headscale.deb
-
Enable Headscale service, this will start Headscale at boot:
sudo systemctl enable headscale
-
Configure Headscale by editing the configuration file:
nano /etc/headscale/config.yaml
-
Start Headscale:
sudo systemctl start headscale
-
Check that Headscale is running as intended:
systemctl status headscale
Using Headscale
Create a user
headscale users create myfirstuser
Register a machine (normal login)
On a client machine, run the tailscale
login command:
tailscale up --login-server <YOUR_HEADSCALE_URL>
Register the machine:
headscale --user myfirstuser nodes register --key <YOUR_MACHINE_KEY>
Register machine using a pre authenticated key
Generate a key using the command line:
headscale --user myfirstuser preauthkeys create --reusable --expiration 24h
This will return a pre-authenticated key that is used to
connect a node to headscale
during the tailscale
command:
tailscale up --login-server <YOUR_HEADSCALE_URL> --authkey <YOUR_AUTH_KEY>