Langkah untuk melakukan log rotate
- Masuk ke production server terlebih dahulu
- Periksa list log pada folder aplikasi untuk rails biasanya berada pada folder log
- Buka file /etc/logrotate.conf mengunakan vim atau nano
- Tambahkan path aplikasi kita dan value info untuk log
- Berikut penjelasan untuk nama value
- daily – Rotate the log files each day. You can also use weekly or monthly here instead - missingok – If the log file doesn’t exist, ignore it - rotate 7 – Only keep 7 days of logs around - compress – GZip the log file on rotation - delaycompress – Rotate the file one day, then compress it the next day so we can be sure that it won’t interfere with the Rails server - notifempty – Don’t rotate the file if the logs are empty - copytruncate – Copy the log file and then empties it. This makes sure that the log file Rails is writing to always exists so you won’t get problems because the file does not actually change. If you don’t use this, you would need to restart your Rails application each time.
- Setelah selesai simpan perubahan
- Kemudian untuk melakukan check manual run code berikut sudo /usr/sbin/logrotate -f /etc/logrotate.conf
- Periksa file pada folder log aplikasi bila berhasil akan ada file seperti berikut
- Selanjutnya kita tinggal mengatur jadwal untuk melakukan deleted log . kita bisa menggunakan gem whenever documentasi disini
/home/deploy/APPNAME/current/log/*.log { daily missingok rotate 7 compress delaycompress notifempty copytruncate }
Tidak ada komentar:
Posting Komentar