AUTH_HOWTO 441 B

12345678910111213
  1. There are two ways to run the auth server.
  2. One, if you have Plan 9 Port installed, you can simply use listen1:
  3. sudo /usr/local/plan9/bin/listen1 tcp!*!567 chroot util/auth /bin/authsrv9
  4. (run that command from the harvey root)
  5. The second option is to add it to /etc/inetd.conf:
  6. 567 stream tcp nowait root /usr/sbin/chroot chroot /path/to/harvey/util/auth /bin/authsrv9
  7. Once you've saved the file, do "pkill -HUP inetd" to restart it.