headscale/docs/running-headscale-openbsd.md

203 lines
5.1 KiB
Markdown
Raw Permalink Normal View History

2022-06-05 15:45:38 +08:00
# Running headscale on OpenBSD
!!! warning "Community documentation"
This page is not actively maintained by the headscale authors and is
written by community members. It is _not_ verified by `headscale` developers.
**It might be outdated and it might miss necessary steps**.
2022-06-05 15:45:38 +08:00
## Goal
This documentation has the goal of showing a user how-to install and run `headscale` on OpenBSD.
In addition to the "get up and running section", there is an optional [rc.d section](#running-headscale-in-the-background-with-rcd)
2022-06-05 15:45:38 +08:00
describing how to make `headscale` run properly in a server environment.
## Install `headscale`
2022-06-05 15:58:55 +08:00
1. Install from ports
2022-06-05 15:45:38 +08:00
You can install headscale from ports by running `pkg_add headscale`.
2022-06-05 15:45:38 +08:00
1. Install from source
2022-06-05 15:45:38 +08:00
```shell
# Install prerequistes
pkg_add go
2022-06-05 15:45:38 +08:00
git clone https://github.com/juanfont/headscale.git
2022-06-05 15:45:38 +08:00
cd headscale
# optionally checkout a release
# option a. you can find official release at https://github.com/juanfont/headscale/releases/latest
# option b. get latest tag, this may be a beta release
latestTag=$(git describe --tags `git rev-list --tags --max-count=1`)
2022-06-05 15:45:38 +08:00
git checkout $latestTag
2022-06-05 15:45:38 +08:00
go build -ldflags="-s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=$latestTag" github.com/juanfont/headscale
2022-06-05 15:45:38 +08:00
# make it executable
chmod a+x headscale
2022-06-05 15:45:38 +08:00
# copy it to /usr/local/sbin
cp headscale /usr/local/sbin
```
2022-06-05 15:45:38 +08:00
1. Install from source via cross compile
2022-06-05 15:45:38 +08:00
```shell
# Install prerequistes
# 1. go v1.20+: headscale newer than 0.21 needs go 1.20+ to compile
# 2. gmake: Makefile in the headscale repo is written in GNU make syntax
2022-06-05 15:45:38 +08:00
git clone https://github.com/juanfont/headscale.git
2022-06-05 15:45:38 +08:00
cd headscale
# optionally checkout a release
# option a. you can find official release at https://github.com/juanfont/headscale/releases/latest
# option b. get latest tag, this may be a beta release
latestTag=$(git describe --tags `git rev-list --tags --max-count=1`)
2022-06-05 15:45:38 +08:00
git checkout $latestTag
2022-06-05 15:45:38 +08:00
make build GOOS=openbsd
# copy headscale to openbsd machine and put it in /usr/local/sbin
```
2022-06-05 15:45:38 +08:00
## Configure and run `headscale`
1. Prepare a directory to hold `headscale` configuration and the [SQLite](https://www.sqlite.org/) database:
```shell
# Directory for configuration
2022-06-05 15:45:38 +08:00
mkdir -p /etc/headscale
2022-06-05 15:45:38 +08:00
# Directory for database, and other variable data (like certificates)
mkdir -p /var/lib/headscale
```
2022-06-05 15:45:38 +08:00
1. Create a `headscale` configuration:
2022-06-05 15:45:38 +08:00
```shell
touch /etc/headscale/config.yaml
```
2022-06-05 15:45:38 +08:00
2024-05-29 00:11:39 +08:00
**(Strongly Recommended)** Download a copy of the [example configuration](https://github.com/juanfont/headscale/blob/main/config-example.yaml) from the headscale repository.
2022-06-05 15:45:38 +08:00
1. Start the headscale server:
2022-06-05 15:45:38 +08:00
```shell
headscale serve
```
2022-06-05 15:45:38 +08:00
This command will start `headscale` in the current terminal session.
2022-06-05 15:45:38 +08:00
***
2022-06-05 15:45:38 +08:00
To continue the tutorial, open a new terminal and let it run in the background.
Alternatively use terminal emulators like [tmux](https://github.com/tmux/tmux).
2022-06-05 15:45:38 +08:00
To run `headscale` in the background, please follow the steps in the [rc.d section](#running-headscale-in-the-background-with-rcd) before continuing.
2022-06-05 15:45:38 +08:00
1. Verify `headscale` is running:
2022-06-05 15:45:38 +08:00
Verify `headscale` is available:
2022-06-05 15:45:38 +08:00
```shell
curl http://127.0.0.1:9090/metrics
```
2022-06-05 15:45:38 +08:00
1. Create a user ([tailnet](https://tailscale.com/kb/1136/tailnet/)):
2022-06-05 15:45:38 +08:00
```shell
headscale users create myfirstuser
```
2022-06-05 15:45:38 +08:00
### Register a machine (normal login)
On a client machine, execute the `tailscale` login command:
```shell
tailscale up --login-server YOUR_HEADSCALE_URL
```
Register the machine:
```shell
headscale nodes register --user myfirstuser --key <YOUR_MACHINE_KEY>
2022-06-05 15:45:38 +08:00
```
### Register machine using a pre authenticated key
Generate a key using the command line:
```shell
headscale preauthkeys create --user myfirstuser --reusable --expiration 24h
2022-06-05 15:45:38 +08:00
```
This will return a pre-authenticated key that can be used to connect a node to `headscale` during the `tailscale` command:
```shell
tailscale up --login-server <YOUR_HEADSCALE_URL> --authkey <YOUR_AUTH_KEY>
```
## Running `headscale` in the background with rc.d
This section demonstrates how to run `headscale` as a service in the background with [rc.d](https://man.openbsd.org/rc.d).
1. Create a rc.d service at `/etc/rc.d/headscale` containing:
```shell
#!/bin/ksh
2022-06-05 15:45:38 +08:00
daemon="/usr/local/sbin/headscale"
daemon_logger="daemon.info"
daemon_user="root"
daemon_flags="serve"
daemon_timeout=60
2022-06-05 15:45:38 +08:00
. /etc/rc.d/rc.subr
2022-06-05 15:45:38 +08:00
rc_bg=YES
rc_reload=NO
2022-06-05 15:45:38 +08:00
rc_cmd $1
```
2022-06-05 15:45:38 +08:00
1. `/etc/rc.d/headscale` needs execute permission:
2022-06-05 15:45:38 +08:00
```shell
chmod a+x /etc/rc.d/headscale
```
2022-06-05 15:45:38 +08:00
1. Start `headscale` service:
2022-06-05 15:45:38 +08:00
```shell
rcctl start headscale
```
2022-06-05 15:45:38 +08:00
1. Make `headscale` service start at boot:
2022-06-05 15:45:38 +08:00
```shell
rcctl enable headscale
```
2022-06-05 15:45:38 +08:00
1. Verify the headscale service:
2022-06-05 15:45:38 +08:00
```shell
rcctl check headscale
```
2022-06-05 15:45:38 +08:00
Verify `headscale` is available:
2022-06-05 15:45:38 +08:00
```shell
curl http://127.0.0.1:9090/metrics
```
2022-06-05 15:45:38 +08:00
`headscale` will now run in the background and start at boot.