↧
Answer by Antitribu for How to find out the log file name that a currently...
The command "lsof" might help you out here. lsof | grep $PID |grep .log or similar should yield you with a list of files that process is accessing.
View ArticleHow to find out the log file name that a currently running process is writing...
We've setup a cron-based invocation of a Java program every minute. This Java program invocation is written in a shell script and is setup as cron job. Each invoked Java program is directed to its own...
View Article