-
|
I've just found this repository and am trying to setup a new container with Proxmox Datacenter Manager. So far so good: installation succeeded and I can reach the application through the webbrowser. However, when I log into the container through ssh, it seems the syslog/journalctl service isn't started. I receive lot's of annoying warnings like Before I spend a lot of time debugging: is this a newby failure? Have I misread something? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hi, the issue is that Debian 13 (trixie) minimal container templates don't include rsyslog by default, so /dev/log socket doesn't exist. Commands that use logger (like adduser and other system utilities) fail with "Connection refused". you can try following; apt install -y rsyslog
systemctl enable --now rsyslogFeel free to give feedback, then we add this into the installer |
Beta Was this translation helpful? Give feedback.
Hi,
the issue is that Debian 13 (trixie) minimal container templates don't include rsyslog by default, so /dev/log socket doesn't exist. Commands that use logger (like adduser and other system utilities) fail with "Connection refused".
you can try following;
apt install -y rsyslog systemctl enable --now rsyslogFeel free to give feedback, then we add this into the installer