1.下載logrotatevim
在Fedora和CentOS安裝spa
yum install logrotate crontabs
Debian和Ubuntu上日誌
apt-get install logrotate cron
2.建立日誌文件在文件裏面添加日誌code
vim /var/log/file.log
3.建立file.log的配置文件添加blog
vim /etc/logrotate.d/file
/vsr/log/file.log{
daily 日誌文件按每一個月輪循 daily 天天 weakly 每星期 yealy 每一年
rotate 5 儲存5個歸檔日誌,對於第六個歸檔,時間最久的自動刪除
compress 以歸檔的文件用gzip進行壓縮
mail address 把轉儲的日誌文件發送到指定的E-mail 地址
nocompress 不須要壓縮時,用這個參數
copytruncate 用於還在打開中的日誌文件,把當前日誌備份並截斷
nocopytruncate 備份日誌文件可是不截斷
create 644 root root 轉儲文件,使用指定的文件模式建立新的日誌文件
size 20M 指定文件當天達到20M的時候才轉儲
dateext 文件後加上當前日期
}
以上的參數能夠根據本身的需求而添加
4.手動切割日誌crontab
logrotate -vf /etc/logrotate.d/file
5.在/var/log/ 目錄下你會看到分割的日誌文件ip
6.還能夠使用crontab定時寫入數據到file.log get
首先檢查crontab是否啓動class
檢查crontab服務是否啓動
service crond status
啓動crontab服務
service crond start
7.使用命令 crontab -e 命令進入編輯模式定時寫入數據到file.log配置
#cron 格式 */1 * * * * echo"ni hao nihao" >>/var/log/file.log #分鐘(0~59) 小時(0~23) 幾號(1~31) 幾月(1~12) 星期幾(0~7) 命令 #每行表明都表明一個任務 #上面代碼意思是每分鐘向文件file.log文件寫入 nihao nihao
8.查看當前任務
crontab -l
9.查看定時任務的數據是否寫入文件
tail -f /var/log/file.log