Looking for the option Configuration....

NetRock

Renowned Member
Apr 23, 2015
78
1
71
Hi ...
Looking for "Configuration/System/Reports" in PROXMOX 4 but cannot see it.
can someone help, please.
Thanks....
 
syslog ....
I need to change the conf file, using WEB interface, to send the logs to an external syslog server as well.
Is there a way to setup the syslog to send the logs to an external syslog serve...
Thank you for your time

Thank you for your quick prompts.
 
Last edited:
As for now you have to to that in combination with syslog-ng for example. This is a bit inconvenient and related to the older systemd release debian ships and will hopefully get better soon.

This should do the trick:[1]
To convince systemd to write to this socket, go to /etc/systemd/journald.conf and set

ForwardToSyslog=yes
then issue a journald restart

systemctl restart systemd-journald
You can install syslog-ng and it should pick up the logs. Test it now by making a log entry with

logger -t WARN zool
and check /var/log/syslog.log

[..]

Configure the syslog-ng.conf’s source src { system(); }; to pick up the socket file:

source src {
unix-dgram("/run/systemd/journal/syslog");
internal();
};