Ask questions. Get answers. Find technical product solutions from passionate experts in the NXLog community.
ERROR invalid keyword: CAThumbprint
peggers created
Hey everyone!
I'm attempting to use the om_ssl module on an NXLog Community Edition but checking the logs at "C:\Program Files (x86)\nxlog\data\nxlog" showed the following message:
"ERROR invalid keyword: CAThumbprint"
After not finding anything about the error above, I decided to use a combination of CAFile, CertFile, CertKeyFile and KeyPass on the Output configuration which worked but I'd rather use the CAThumbprint directive. What am I doing wrong?
Output tag from the "C:\Program Files (x86)\nxlog\conf\nxlog.conf" looked like this:
<Output out>
Module om_ssl
CAThumbprint xxxxxxxxxxxxxxxxxxxxxxxxxxxx # numbers and letters, without spaces
Host 10.0.0.10 # representative IP
Port 1514
Exec to_syslog_bsd();
</Output>
peggers created
om_ssl certificate verification failed with AllowUntrusted TRUE
ToddChapman created
Hi,
I'm using om_ssl to send syslog over TLS with the following config.
<Output syslog>
Module om_ssl
Host my_host
Port 514
AllowUntrusted TRUE
OutputType Syslog_TLS
Exec to_syslog_ietf();
</Output>
Nxlog is producing the following error: ERROR SSL certificate verification failed: unable to get local issuer certificate (err: 20)
How do I configure om_ssl to skip all certificate verification?
Thanks!
ToddChapman created