|
You can use the lsof command to list all files opened by the apache user.
lsof -i -u apache
will show you all files opened by the apache user that are currently accessing the network. You can do a lot more with the lsof tool. For more granular information on its options, I would suggest taking a look at the lsof man page.
|