Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Running an Auth server on Linux

John Floren edited this page Sep 10, 2021 · 1 revision

There are two ways to run the auth server.

One, if you have Plan 9 Port installed, you can simply use listen1:

sudo /usr/local/plan9/bin/listen1 tcp!*!567 chroot util/auth /bin/authsrv9

(run that command from the harvey root)

The second option is to add it to /etc/inetd.conf:

567	stream	tcp	nowait	root	/usr/sbin/chroot	chroot /path/to/harvey/util/auth /bin/authsrv9

Once you've saved the file, do "pkill -HUP inetd" to restart it.