Control Web Panel

WebPanel => Installation => Topic started by: changlee on December 06, 2023, 04:07:37 PM

Title: Logrotate configuration not working
Post by: changlee on December 06, 2023, 04:07:37 PM
I created the config (https://gcdnb.pbrd.co/images/yGqAnzUhdSDR.png?o=1) but when I run it, I get: No such file or directory at every line.

My logs are getting huge. Please advise.
Title: Re: Logrotate configuration not working
Post by: rcschaff on December 06, 2023, 09:36:18 PM
You have to put the full path to the log files in the logrotate config.  Please post the contents of that file...
Title: Re: Logrotate configuration not working
Post by: changlee on December 07, 2023, 07:13:41 AM
I created that file:
Code: [Select]
# Logrotate CWP
/usr/local/apache/domlogs/*.log {
        compress
        delaycompress
        daily
        missingok
}
/usr/local/apache/logs/*.log {
        compress
        delaycompress
        daily
        missingok
}
Title: Re: Logrotate configuration not working
Post by: overseer on December 07, 2023, 02:23:43 PM
Did you create the file manually via a shell or did you use the CWP built-in facility?
https://fornex.com/en/help/logrotate-centos-7/ (https://fornex.com/en/help/logrotate-centos-7/)
Title: Re: Logrotate configuration not working
Post by: rcschaff on December 07, 2023, 07:51:47 PM
Your missing the very important part.  You need a "rotate" option for how many files to keep.  Add " rotate 1 " as an option and it might work.
Title: Re: Logrotate configuration not working
Post by: changlee on December 18, 2023, 04:15:45 PM
I understand nothing. I ask for paid support for a) Updates and b) log space cleaning. I think CWP will need to improve to that.
Title: Re: Logrotate configuration not working
Post by: rcschaff on December 18, 2023, 09:26:21 PM
Change your files to:

Code: [Select]
# Logrotate CWP
/usr/local/apache/domlogs/*.log {
        compress
        delaycompress
        daily
        missingok
        rotate 1
}
/usr/local/apache/logs/*.log {
        compress
        delaycompress
        daily
        missingok
        rotate 1
}
Title: Re: Logrotate configuration not working
Post by: changlee on December 19, 2023, 06:37:03 PM
Is that official please? Have you tried that? Thanks for the help.
Title: Re: Logrotate configuration not working
Post by: rcschaff on December 19, 2023, 07:28:35 PM
Try it and find out if it works.  But I know that if logrotate doesn't have a number of backups to keep, it will fail.  Hence why all that was added is "rotate 1", which tells it to keep ONLY 1 backup.  If you need more days, increase that number.