I run a script tailing a log in a remote server, like so:
ssh userx@someip tail -f /data/current.log|python2.7 monitorlog.py
There are dependencies and service requirements that disallows me to run the script off the remote server. (DB, ACLs, and path to another service is uses)
Is there a way I can tail and monitor a log without using the ssh userx@someip? I thought about generating RSA keys but I think you still need a user to ssh.
netcator offer the logfile in a nfs share and mount it. – THC4k Jun 30 '11 at 3:24