Closed gour closed 2 years ago
After restart it seems it starts OK (again):
$ systemctl --user status radicale
● radicale.service - A simple CalDAV (calendar) and CardDAV (contact) server
Loaded: loaded (/home/atmarama/.config/systemd/user/radicale.service; enabled; vendor preset: enabled)
Active: active (running) since Wed 2022-07-06 17:07:39 CEST; 2s ago
Main PID: 3244340 (python3)
Tasks: 1 (limit: 154486)
Memory: 14.7M
CPU: 74ms
CGroup: /user.slice/user-1736.slice/user@1736.service/app.slice/radicale.service
└─3244340 python3 -m radicale --debug
Jul 06 17:07:39 s30.wservices.ch env[3244340]: [2022-07-06 15:07:39 +0000] [3244340] [INFO] Skipped missing config file '/etc/radicale/config'
Jul 06 17:07:39 s30.wservices.ch env[3244340]: [2022-07-06 15:07:39 +0000] [3244340] [INFO] Loaded config file '/home/atmarama/.config/radicale/config'
Jul 06 17:07:39 s30.wservices.ch env[3244340]: [2022-07-06 15:07:39 +0000] [3244340] [INFO] Loaded command line arguments
Jul 06 17:07:39 s30.wservices.ch env[3244340]: [2022-07-06 15:07:39 +0000] [3244340] [INFO] Starting Radicale
Jul 06 17:07:39 s30.wservices.ch env[3244340]: [2022-07-06 15:07:39 +0000] [3244340] [INFO] auth type is 'radicale.auth.htpasswd'
Jul 06 17:07:39 s30.wservices.ch env[3244340]: [2022-07-06 15:07:39 +0000] [3244340] [INFO] storage type is 'radicale_remind'
Jul 06 17:07:39 s30.wservices.ch env[3244340]: [2022-07-06 15:07:39 +0000] [3244340] [INFO] rights type is 'radicale.rights.from_file'
Jul 06 17:07:39 s30.wservices.ch env[3244340]: [2022-07-06 15:07:39 +0000] [3244340] [INFO] web type is 'radicale.web.internal'
Jul 06 17:07:39 s30.wservices.ch env[3244340]: [2022-07-06 15:07:39 +0000] [3244340] [INFO] Listening on '[127.0.0.1]:62013'
Jul 06 17:07:39 s30.wservices.ch env[3244340]: [2022-07-06 15:07:39 +0000] [3244340] [INFO] Radicale server ready
make sure remind
is in $PATH
.
closing as it seems fixed :).
make sure
remind
is in$PATH
.closing as it seems fixed :).
No, it's not fixed, since after attempting to access Radicale's admin, the same thing does happen!!
so do as I said:
make sure remind is in $PATH.
so do as I said:
make sure remind is in $PATH.
But it is in $PATH:
$ echo $PATH
/home/atmarama/bin /home/atmarama/.local/bin /usr/local/bin /usr/bin /bin /usr/games
Any other hint?
I guess that's not the $PATH
systemd uses (at least not by default). I guess you can change the radicale.service
to set it with something like:
[Service]
Environment=PATH=/home/atmarama/bin:/home/atmarama/.local/bin:/usr/local/bin:/usr/bin:/bin:/usr/games
Ahh, that helped. Thanks a lot!
I've re-installed Radicale, but this time with proper storage type. The service starts, but when I try to access Radicale's admin, I get
and systemd-status gives:
although I've statically compiled remind on the system:
Any idea what might be wrong?