From 0a5d04214527405fc4c51b580088205ab06a95cb Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sat, 16 Mar 2024 08:20:16 +0100 Subject: [PATCH] Created Server Diagnostics / Troubleshooting (markdown) --- Server-Diagnostics---Troubleshooting.md | 39 +++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Server-Diagnostics---Troubleshooting.md diff --git a/Server-Diagnostics---Troubleshooting.md b/Server-Diagnostics---Troubleshooting.md new file mode 100644 index 0000000..970bc6b --- /dev/null +++ b/Server-Diagnostics---Troubleshooting.md @@ -0,0 +1,39 @@ +# Listen Status "Radicale" + +## Radicale started, it's listen on configured IP/ports +- config section: `[server]` +- config option: `hosts` + +Example: + +``` +netstat -nlpt |grep ":5232 " +tcp 0 0 127.0.0.1:5232 0.0.0.0:* LISTEN 4117/python3 +tcp6 0 0 ::1:5232 :::* LISTEN 4117/python3 +``` + +# Connection test to internal web server (if enabled) + +- config section: `[web]` +- config option: `type` + +Example: + +``` +curl http://localhost:5232/.web/ +``` + + +# Connection test to any existing calendar + +Successful result depends on auth and permission +- config section: `[auth]` +- config option: `type` +- config section: `[rights]` +- config option: `type` + `file` + +Example: + +``` +curl http://localhost:5232/testcalendar/ +```