Logrotate doesn't rotate logs











up vote
1
down vote

favorite












I want to use logrorate. The logs are written to /var/log/curLog/log.log. As mentioned in the documentation, I create a new file in /etc/logrotate.d/ with name currentLog. The content of currentLog is:



/var/log/curLog/log.log{
size 100k,
rotate 10,
daily,
compress,
notifempty
missingok
}


But the logs increase above the 100k size, and nothing happens.
Should I restart some service or do some other operations?










share|improve this question
























  • No logrotate runs with cron not as a deamon. That article may help:rackspace.com/knowledge_center/article/…
    – alpert
    Aug 25 '14 at 8:44










  • Remove the commas, and it should work fine.
    – Christopher
    Aug 25 '14 at 11:56















up vote
1
down vote

favorite












I want to use logrorate. The logs are written to /var/log/curLog/log.log. As mentioned in the documentation, I create a new file in /etc/logrotate.d/ with name currentLog. The content of currentLog is:



/var/log/curLog/log.log{
size 100k,
rotate 10,
daily,
compress,
notifempty
missingok
}


But the logs increase above the 100k size, and nothing happens.
Should I restart some service or do some other operations?










share|improve this question
























  • No logrotate runs with cron not as a deamon. That article may help:rackspace.com/knowledge_center/article/…
    – alpert
    Aug 25 '14 at 8:44










  • Remove the commas, and it should work fine.
    – Christopher
    Aug 25 '14 at 11:56













up vote
1
down vote

favorite









up vote
1
down vote

favorite











I want to use logrorate. The logs are written to /var/log/curLog/log.log. As mentioned in the documentation, I create a new file in /etc/logrotate.d/ with name currentLog. The content of currentLog is:



/var/log/curLog/log.log{
size 100k,
rotate 10,
daily,
compress,
notifempty
missingok
}


But the logs increase above the 100k size, and nothing happens.
Should I restart some service or do some other operations?










share|improve this question















I want to use logrorate. The logs are written to /var/log/curLog/log.log. As mentioned in the documentation, I create a new file in /etc/logrotate.d/ with name currentLog. The content of currentLog is:



/var/log/curLog/log.log{
size 100k,
rotate 10,
daily,
compress,
notifempty
missingok
}


But the logs increase above the 100k size, and nothing happens.
Should I restart some service or do some other operations?







logrotate






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 24 at 20:09









Rui F Ribeiro

38.3k1476127




38.3k1476127










asked Aug 25 '14 at 8:22









Or Smith

1132




1132












  • No logrotate runs with cron not as a deamon. That article may help:rackspace.com/knowledge_center/article/…
    – alpert
    Aug 25 '14 at 8:44










  • Remove the commas, and it should work fine.
    – Christopher
    Aug 25 '14 at 11:56


















  • No logrotate runs with cron not as a deamon. That article may help:rackspace.com/knowledge_center/article/…
    – alpert
    Aug 25 '14 at 8:44










  • Remove the commas, and it should work fine.
    – Christopher
    Aug 25 '14 at 11:56
















No logrotate runs with cron not as a deamon. That article may help:rackspace.com/knowledge_center/article/…
– alpert
Aug 25 '14 at 8:44




No logrotate runs with cron not as a deamon. That article may help:rackspace.com/knowledge_center/article/…
– alpert
Aug 25 '14 at 8:44












Remove the commas, and it should work fine.
– Christopher
Aug 25 '14 at 11:56




Remove the commas, and it should work fine.
– Christopher
Aug 25 '14 at 11:56










1 Answer
1






active

oldest

votes

















up vote
0
down vote













You have 3 options that dictate the when the rotation occurs.



size 100k   # if size > 100k
daily # once a day
notifempty # not if == 0k


Remove the daily and it should occur more regularly when the file is > 100k



Second, If the process that creates the log file is a daemon that keeps the file open, you will most likely need to restart that process or at least signal it to open a new log file once logrotate has moved the old one.



For example, Apache httpd can graciously reload config and reopen log files with the kill -SIGUSR1 <pid> or /usr/sbin/apachectl graceful command rather than being completely restarted.



postrotate
/usr/sbin/apachectl graceful > /dev/null
endscript





share|improve this answer





















    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "106"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f152028%2flogrotate-doesnt-rotate-logs%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote













    You have 3 options that dictate the when the rotation occurs.



    size 100k   # if size > 100k
    daily # once a day
    notifempty # not if == 0k


    Remove the daily and it should occur more regularly when the file is > 100k



    Second, If the process that creates the log file is a daemon that keeps the file open, you will most likely need to restart that process or at least signal it to open a new log file once logrotate has moved the old one.



    For example, Apache httpd can graciously reload config and reopen log files with the kill -SIGUSR1 <pid> or /usr/sbin/apachectl graceful command rather than being completely restarted.



    postrotate
    /usr/sbin/apachectl graceful > /dev/null
    endscript





    share|improve this answer

























      up vote
      0
      down vote













      You have 3 options that dictate the when the rotation occurs.



      size 100k   # if size > 100k
      daily # once a day
      notifempty # not if == 0k


      Remove the daily and it should occur more regularly when the file is > 100k



      Second, If the process that creates the log file is a daemon that keeps the file open, you will most likely need to restart that process or at least signal it to open a new log file once logrotate has moved the old one.



      For example, Apache httpd can graciously reload config and reopen log files with the kill -SIGUSR1 <pid> or /usr/sbin/apachectl graceful command rather than being completely restarted.



      postrotate
      /usr/sbin/apachectl graceful > /dev/null
      endscript





      share|improve this answer























        up vote
        0
        down vote










        up vote
        0
        down vote









        You have 3 options that dictate the when the rotation occurs.



        size 100k   # if size > 100k
        daily # once a day
        notifempty # not if == 0k


        Remove the daily and it should occur more regularly when the file is > 100k



        Second, If the process that creates the log file is a daemon that keeps the file open, you will most likely need to restart that process or at least signal it to open a new log file once logrotate has moved the old one.



        For example, Apache httpd can graciously reload config and reopen log files with the kill -SIGUSR1 <pid> or /usr/sbin/apachectl graceful command rather than being completely restarted.



        postrotate
        /usr/sbin/apachectl graceful > /dev/null
        endscript





        share|improve this answer












        You have 3 options that dictate the when the rotation occurs.



        size 100k   # if size > 100k
        daily # once a day
        notifempty # not if == 0k


        Remove the daily and it should occur more regularly when the file is > 100k



        Second, If the process that creates the log file is a daemon that keeps the file open, you will most likely need to restart that process or at least signal it to open a new log file once logrotate has moved the old one.



        For example, Apache httpd can graciously reload config and reopen log files with the kill -SIGUSR1 <pid> or /usr/sbin/apachectl graceful command rather than being completely restarted.



        postrotate
        /usr/sbin/apachectl graceful > /dev/null
        endscript






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Aug 25 '14 at 8:55









        Matt

        5,94511625




        5,94511625






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Unix & Linux Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f152028%2flogrotate-doesnt-rotate-logs%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Morgemoulin

            Scott Moir

            Souastre