Simple setup on Windows: server does not show on local network #1778
-
|
Dear Radicale people, status after installation, i find stuff here: I have been trying to find a solution for two days. Help very welcome. |
Beta Was this translation helpful? Give feedback.
Replies: 8 comments 8 replies
-
|
can it be that radicale is listen on "localhost" (127.0.0.1) instead of "any" (0.0.0.0), if so, please adjust according to documentation ( |
Beta Was this translation helpful? Give feedback.
-
|
I think I found the problem. After installation, there is no config file (at least, I cannot find one anywhere). So I think that Radicale was not listening to the port. What I did, is that after the startup string: Thanks @pbiering, you set me on the right path. |
Beta Was this translation helpful? Give feedback.
-
|
Please extend netstat/windows example added now here https://github.com/Kozea/Radicale/wiki/Server-Diagnostics---Troubleshooting#listen-status then close this issue, thank you! |
Beta Was this translation helpful? Give feedback.
-
|
I will clarify doc, btw. https://radicale.org/master.html#addresses |
Beta Was this translation helpful? Give feedback.
-
|
I am of very willing to help testing, just instruct me. Here is what my Windows CMD says, while Radicale is happily running:
|
Beta Was this translation helpful? Give feedback.
-
|
wiki updated, thank you! |
Beta Was this translation helpful? Give feedback.
-
|
I ran into another problem with the manual. The culprit was this line in the manual: https://radicale.org/master.html#windows-with-nssm---the-non-sucking-service-manager : Now it works. |
Beta Was this translation helpful? Give feedback.
-
|
To finish up this thread, I have a suggestion to change this section of the manual: https://radicale.org/master.html#windows |
Beta Was this translation helpful? Give feedback.
I think I found the problem. After installation, there is no config file (at least, I cannot find one anywhere). So I think that Radicale was not listening to the port. What I did, is that after the startup string:
python -m radicale --storage-filesystem-folder=~/radicale/collections --auth-type none
I added: --server-hosts 0.0.0.0:5232,[::]:5232
Now the server can be found on other devices in the local network, and also DAVx5 responds, and sees all calendars etc.
Thanks @pbiering, you set me on the right path.