- Get link
- X
- Other Apps
Automation is a buzzword in today's technology; it makes things faster, effortless, and most of all ease the burden of system administrators. However, automation should be tested thoroughly to avoid any unforeseen circumstances or else instead of making life easier it might deliver some nightmares. For example, removing log files to save space or remove any unwanted or old log files to make room for new files; this task can be done manually or using some automation via a script. In Linux, cron jobs that fires automatically as per schedule is quite ideal to automate removing or deleting log files. This can also be done manually, by simply logging in to the server and delete files. There is nothing wrong in deleting manually but would not be ideal if the operation of the server is operating day and night. There might be a chance that the operation will halt if there is no more room to write the log files. Or simply when there is some issue and wanted to troubleshoot; if log files ar...