Initialization or clearing of log files
2009-12-22
158 words
1 min read
Like all Unix file systems, open log files can cause a real problem when they get too large and need to be deleted. The problem is, if you delete an open file, the link is removed, but all of the inodes are lost. Even worse, if the program continues to log to the file, the link never re-appears, and additional inodes are lost and are unrecoverable. I suggest two solutions to the above problems.
If you have lost inodes, a simple reboot (make sure FSCK is run on startup) will recover lost inodes and missing filespace.
To empty (or zero out) an open log file, simply issue the following command:
date > logfile
This will 'empty' the file and insert as the first line the output from the date command. If you want a completely empty file, don't enter date,
just > logfile.
This works great on apache and other web server logs, without ever stopping the service.
Related Articles:
- 2009/12/22 7 Examples for Sed Hold and Pattern Buffer Operations
- 2009/12/19 Change information for the user on Linux machine.
- 2009/12/19 Chrome – Chromium on Linux (repo)
- 2009/12/10 Tip: Using find Command in Linux
- 2009/12/08 One click install for Linux systems.
Authored By Amit Agarwal
Amit Agarwal, Linux and Photography are my hobbies.Creative Commons Attribution 4.0 International License.