Rename Access.log to Access.log.bak, where will the new Apache log be placed? This article transferred from the 51cto Lee blog 2017-09-30-08:11:41 original works, allow reprint, please be sure to use hyperlinks in the form of the original source of the article , author information and this statement. Otherwise, the legal liability will be investigated. http://lidao.blog.51cto.com/3388056/1936543
Topic
Assuming Apache generates a log file named Access_log, when Apache is running, execute the command MV Access_log Access_log.bak, after execution, ask the new Apache log will print to where, why?
Answer:
The new log will be printed in Access_log.bak, because Apache will find the Access_log file at boot time, ready to add log information to the file, although the file is renamed, but because the service is running because its inode node location has not changed, The program Open FD will still point to the original inode, not because the file name changes. Apache will continue to append the log to the renamed file, but if the Apache service is restarted, the system will check for the existence of the Access_log file and create it if it does not exist.
Note
This article is from the "Lee blog" blog, make sure to keep this source http://lidao.blog.51cto.com/3388056/1936543
Rename Apache log where the new log files will be placed