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 )