Add *nix port troubleshooting

Luke H-W 2022-06-26 15:50:27 +09:30
parent b436e3e0c9
commit 088a9d8ae6

@ -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 <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 )