mirror of
https://github.com/Kozea/Radicale.git
synced 2025-08-01 18:18:31 +00:00
Created Server Diagnostics / Troubleshooting (markdown)
parent
123d0ce393
commit
0a5d042145
1 changed files with 39 additions and 0 deletions
39
Server-Diagnostics---Troubleshooting.md
Normal file
39
Server-Diagnostics---Troubleshooting.md
Normal file
|
@ -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/
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue