You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I pipe the output to Perl logger, only one logger is working.
sh -c "tail -f /var/log/httpd/access_log | logger -p local6.notice -t apache" & ## works
sh -c "tail -f /var/log/httpd/error_log | logger -p local6.error -t apache" & ## terminates
The above is running from a shell script on CentOS-7 and only the first logger is running.
With one logger running in the background, when I run logger test it hangs without doing anything.
Python logger don't exhibit such problem.
(logger is installed as /usr/local/bin/logger which is a symlink to /usr/local/bin/logger.pl).
The text was updated successfully, but these errors were encountered:
When I pipe the output to Perl logger, only one logger is working.
The above is running from a shell script on CentOS-7 and only the first logger is running.
With one
logger
running in the background, when I runlogger test
it hangs without doing anything.Python logger don't exhibit such problem.
(
logger
is installed as/usr/local/bin/logger
which is a symlink to/usr/local/bin/logger.pl
).The text was updated successfully, but these errors were encountered: