From a5bc41c3f595d516bbb75583102dcfa5dba834d7 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Fri, 9 May 2025 16:43:12 +0200 Subject: [PATCH] add netstat/windows example --- Server-Diagnostics---Troubleshooting.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Server-Diagnostics---Troubleshooting.md b/Server-Diagnostics---Troubleshooting.md index bb22bac..974cee0 100644 --- a/Server-Diagnostics---Troubleshooting.md +++ b/Server-Diagnostics---Troubleshooting.md @@ -58,6 +58,13 @@ tcp 0 0 127.0.0.1:5232 0.0.0.0:* LISTEN tcp6 0 0 ::1:5232 :::* LISTEN 4117/python3 ``` +Example for Windows OS: + +```cmd +netstat -na | find ":5232 " +... +``` + # Connection tests (plain-text) Direct connection tests, for tests via reverse proxy see [Reverse-Proxy-Diagnostics-Troubleshooting](Reverse-Proxy-Diagnostics-Troubleshooting)