Hi,
OK, maybe this work better for you
Install the vMA.
Configruation for the ESXi to send syslog traffic
Use SSH to connect to vMA
Type vifpinit <ESX_host_name> ro reset vi-fastpass. Example:
vifpinit myvMA.vmware.com
Type vicfg-syslog -s <IP_address_of_vMA> to configure syslog on the ESXi host.
Example:
vicfg-syslog -s 10.18.137.187
Configure vMA as a syslog receiver
Use SSH to connect to vMA.
Type "sudo service syslog stop" to shut down syslog on vMA
Type "sudo nano /etc/sysconfig/syslo" to edit the syslog conifguration file.
Locate the line with the text SYSLOGD_OPTIONS="-m 0"
Replace it with SYSLOGD_OPTIONS="-r -m 0". It is the -r that turnsthis into a receiver.
Type "sudo service syslog start" to start the syslog daemon.
Type sudo tail /var/log/messages to confirm that syslog has restarted and is now able to receive messages. Look for the syslogd restart reception" message at the end of the log file.
Type "sudo iptables -I INPUT -i eth0 -p udp --dport 514 -j ACCEPT" to open the firewall on vMA to receive syslog traffic.
Type "sudo nano /etc/rc.local to edit the rc.local file in the nano text editor.
Type the iptables -IINPUT -i eth0 -p udp --dport 514 -j ACCEPT" inito the file after the line touch /var/lock/subsys/local.
Press Ctrl+X to exit the nanao editor.
Save your changes to the file.
Test your syslog receiver.
Use SSH to connect to the ESXi Host.
Go into the unsupportet mode.
Type logger This is a test from my esx host.
Use SSH to connect to vMA
Type "sudo tail /var/log/messages.
You should be able to the the test message.
Or by a KIWI Syslog Server:
http://www.kiwisyslog.com/kiwi-cattools-overview/
And configure your ESXi Host to send logs to that server.
Frank
If you find this information useful, please award points for "correct" or "helpful".