From 088a9d8ae6a8c0562b05b9d056b36f0d53b157c6 Mon Sep 17 00:00:00 2001 From: Luke H-W Date: Sun, 26 Jun 2022 15:50:27 +0930 Subject: [PATCH] Add *nix port troubleshooting --- Troubleshooting.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Troubleshooting.md b/Troubleshooting.md index 859d34d..50acc40 100644 --- a/Troubleshooting.md +++ b/Troubleshooting.md @@ -17,10 +17,12 @@ The server uses ports: `8888`, `443`, `80`, and `22102` (by default) **Potential places for error**: - The dispatch (web/HTTP[S]) server has double-bounded. - One of the above ports (or any you've specified) has been bound to by another process. +- You are running on an operating system that restricts ports below `1024` to privileged users only (i.e. not Windows). **Solutions**: - If an SSL certificate error is logged to the console, check your `keystore.p12` is in the correct place and with the correct password. - Run `netstat -aon | find /i "listening"` to find processes with the server ports. Then kill the process with `taskkill /PID `. +- Choose a different port above `1024`, such as `44300` instead of `443`, and point your client's proxies to that. ## Client Can't Connect To The Server ( Error 4206 For Client )