monitoring file changes + process access to files

Strace (as outlined above) is one way to check the actions of a specified running software.

Some command like watch find dir/ -mmin 1 may also help to check for changes of the past minute in some directory.

Depending on what exactly you're looking for, inotify-tools is probably another tool of trade here.

For example, inotifywait -mr dir/ monitors changes in the given directory and instantly gives you feedback of any application trying to open/read/write/close a file. However, inotify doesn't give you feedback on which application or process is accessing the file - that's something strace does do.

Please do know system-level monitoring is usually of limited use for java software running in some application container environment, as you only do see the container (e.g. Tomcat), but not the actual application (e.g. .war)) interacting with the system.


Depending on your exact needs, you might want to look into inotify and/or FAM/GAMIN solutions.


You can get information about which files accessed by process by lsof:

 lsof -n -p `pidof your_app`

And vice verse, you can get pid of process that write/read to some file:

 lsof -n -t file