NXlog 経由で既にログを Graylog2 に正常に送信しました。ただし、NXlog と Graylog2 はどちらも同じサーバーで実行されます。別のサーバーから NXlog 経由で Graylog2 にログを送信したいのですが、まったく機能しません。私を助けてくれませんか?これは私のNXlog構成です:
User i_cdp
Group int
Panic Soft
#define CERTDIR /opt/cdp/nxlog/opt/var/lib/nxlog/cert
define CONFDIR /opt/cdp/nxlog/opt/var/lib/nxlog
define LOGDIR /opt/cdp/nxlog/opt/var/log/nxlog
define LOGFILE "%LOGDIR%/nxlog.log"
SpoolDir /opt/cdp/nxlog/opt/var/spool/nxlog
# default values:
PidFile /opt/cdp/nxlog/opt/var/run/nxlog/nxlog.pid
CacheDir /opt/cdp/nxlog/opt/var/spool/nxlog
ModuleDir /opt/cdp/nxlog/opt/libexec/nxlog/modules
<Extension _syslog>
Module xm_syslog
</Extension>
<Extension gelf>
Module xm_gelf
</Extension>
<Input in>
Module im_file
File "/opt/cdp/jboss-eap/jboss/standalone/log/*.log*"
Exec if $raw_event =~ /(\d\d\d\d\-\d\d-\d\d \d\d:\d\d:\d\d)/ $EventTime = parsedate($1);
Exec $Hostname = 'bsul0850';
Exec if $raw_event =~ /ERROR/ $SyslogSeverityValue = 3; \
else $SyslogSeverityValue = 6;
Exec $FileName = file_name();
Exec if $raw_event =~ /WARN/ $Message = 'IMPORTANT!! ' + $raw_event;
Exec $SourceName = 'jboss';
</Input>
<Output out>
Module om_udp
Host 10.41.66.84
Port 12009
OutputType GELF
</Output>
<Route r1>
Path in => out
</Route>
<Extension _charconv>
Module xm_charconv
AutodetectCharsets iso8859-2, utf-8, utf-16, utf-32
</Extension>
<Extension _exec>
Module xm_exec
</Extension>
<Extension _fileop>
Module xm_fileop
# Check the size of our log file every hour and rotate if it is larger than 5Mb
<Schedule>
Every 1 hour
Exec if (file_exists(%LOGFILE%) and (file_size(%LOGFILE%) >= 5M)) file_cycle(%LOGFILE%, 8);
</Schedule>
# Rotate our log file every week on sunday at midnight
<Schedule>
When @weekly
Exec if file_exists(%LOGFILE%) file_cycle(%LOGFILE%, 8);
</Schedule>
</Extension>
Nxlog を使用するサーバーと Graylog2 を使用するサーバー間の接続用にポート 12009 を開きました。次に、Graylog-Gui で入力を構成しました: 入力 (ポート 12009 の GELF UDP) しかし、接続を確認すると、次のようになります。
[i_cdp@bsul0850 etc]$ ssh -vvv bsul0959 -p 12009
OpenSSH_5.3p1, OpenSSL 1.0.1e-fips 11 Feb 2013
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to bsul0959 [10.41.66.84] port 12009.
debug1: connect to address 10.41.66.84 port 12009: Connection refused
ssh: connect to host bsul0959 port 12009: Connection refused
それは言う、拒否した。タイムアウトなどがないので、一種の接続がありますね。Graylog サーバーは接続を受け入れません。それで、私の設定の何が問題になっていますか?グレイログは何も受け取りません。
前もって感謝します :)