MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    pm2 doesnt work with crontab

    Scheduled Pinned Locked Moved Troubleshooting
    45 Posts 8 Posters 14.2k Views 6 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • K Offline
      keineAhnung123
      last edited by

      Hello,

      Im trying to restart my MM every day in the night so i want to use a crontab.

      Might be easy:

      sudo crontab -e
      

      and add

      59 23 * * * pm2 restart mm
      

      But that doesnt work.
      The crontab seems to work:

      Feb 27 13:37:01 raspberrypi CRON[3581]: (root) CMD (pm2 restart mm)
      
      

      And i did a pm2 flush before and after the crontab did its job there is nothing in the log:

      pi@raspberrypi:~ $ pm2 logs --lines=100
      [TAILING] Tailing last 100 lines for [all] processes (change the value with --lines option)
      /home/pi/.pm2/pm2.log last 100 lines:
      /home/pi/.pm2/logs/mm-error.log last 100 lines:
      /home/pi/.pm2/logs/mm-out.log last 100 lines:
      0|mm       | [27.02.2021 13:38.28.339] [INFO]  Newsfeed-Fetcher: Broadcasting 39 items.
      
      

      so it seems that pm2 didnt do anything.

      Next try after some online research:

      pi@raspberrypi:~ $ which node
      /home/pi/.config/nvm/versions/node/v10.23.0/bin/node
      pi@raspberrypi:~ $ which pm2
      /home/pi/.config/nvm/versions/node/v10.23.0/bin/pm2
      
      

      i changed the crontab to

      1 14 * * * /home/pi/.config/nvm/versions/node/v10.23.0/bin/node /home/pi/.config/nvm/versions/node/v10.23.0/bin/pm2 restart mm
      
      

      (1 14 is for testing)

      It still doesnt work: no output in pm2 log.

      Does anyone have an idea?

      Thanks :)

      S AssassinsA 2 Replies Last reply Reply Quote 0
      • S Offline
        sdetweil @keineAhnung123
        last edited by sdetweil

        @keineahnung123 u need to run pm2 as the user that did the save and where mm was running. it cannot be rootScreenshot_20210227-074511_Chrome.jpg

        you also create a user specific crontab in /var/spool/cron
        user needs to own the file, then username is not required on the contab entries themselves

        Each user, including root, can have a cron file. These files don't exist by default, but can be created in the /var/spool/cron directory using the crontab -e command that's also
        

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        K 1 Reply Last reply Reply Quote 0
        • K Offline
          keineAhnung123 @sdetweil
          last edited by

          @sdetweil Thanks.

          With

          sudo nano /etc/crontab
          

          and

          30 16   * * *   pi      /home/pi/.config/nvm/versions/node/v10.23.0/bin/node /home/pi/.config/nvm/versions/node/v10.23.0/bin/pm2 stop mm
          

          it seems to work :)

          S 1 Reply Last reply Reply Quote 0
          • S Offline
            sdetweil @keineAhnung123
            last edited by

            @keineahnung123 i don’t think u need those paths now

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            K 1 Reply Last reply Reply Quote 0
            • K Offline
              keineAhnung123 @sdetweil
              last edited by keineAhnung123

              @sdetweil

              45 16   * * *   pi      pm2 stop mm
              

              doesnt work. I have to set the paths.

              I think there went something wrong when i upgraded to buster.
              I had a shellscript with

              cd ~/MagicMirror && npm start
              

              which worked fine and after the upgrade to buster i have to use

              cd ~/MagicMirror && /home/pi/.config/nvm/versions/node/v10.23.0/bin/npm start
              

              otherwise it says “npm: not found”

              Same seems to be with crontab…

              S 1 Reply Last reply Reply Quote 0
              • S Offline
                sdetweil @keineAhnung123
                last edited by

                @keineahnung123 looks like u need to reinstall nvm

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                K 1 Reply Last reply Reply Quote 0
                • K Offline
                  keineAhnung123 @sdetweil
                  last edited by

                  @sdetweil said in pm2 doesnt work with crontab:

                  @keineahnung123 looks like u need to reinstall nvm

                  nvm or npm?

                  S 1 Reply Last reply Reply Quote 0
                  • S Offline
                    sdetweil @keineAhnung123
                    last edited by

                    @keineahnung123 nvm

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    1 Reply Last reply Reply Quote 0
                    • AssassinsA Offline
                      Assassins @keineAhnung123
                      last edited by

                      @keineahnung123
                      Hello, i Can send you a script om monday, where you make backup to a small .img and where is restart you MagicMirror on the same time.

                      plainbrokeP 1 Reply Last reply Reply Quote 0
                      • plainbrokeP Offline
                        plainbroke @Assassins
                        last edited by

                        @Assassins
                        I would like to see this script. Please.

                        1 Reply Last reply Reply Quote 0
                        • plainbrokeP Offline
                          plainbroke
                          last edited by

                          This is all I use in my crontab -e
                          15 07 * * * pm2 start mm
                          30 21 * * * pm2 stop all
                          Shuts MM down at 9:30 pm
                          Starts MM backup at 7:15 am
                          EVERYDAY.
                          I have a Black background color and the bar at the bottom using black background which makes it look like the screen is off basically.
                          That way it doesn’t flood the room with light at night.
                          Also less read / writes to the ssd drive I use for my MM.

                          plainbrokeP 1 Reply Last reply Reply Quote 0
                          • plainbrokeP Offline
                            plainbroke @plainbroke
                            last edited by

                            @sdetweil
                            My old crontab does not work in debian 12 aka bookworm
                            Is there something i need to add to it to get it to work again?
                            Really liked how it worked and the fact that I was getting a fresh restart of mm every morning…

                            15 07 * * * pm2 start mm
                            30 21 * * * pm2 stop all
                            

                            Tried this too.

                            15 07 * * * pi  pm2 start mm
                            30 21 * * * pi  pm2 stop all
                            
                            S 1 Reply Last reply Reply Quote 0
                            • S Offline
                              sdetweil @plainbroke
                              last edited by

                              @plainbroke what userid did the pm2 jobs get created under?

                              Sam

                              How to add modules

                              learning how to use browser developers window for css changes

                              plainbrokeP 1 Reply Last reply Reply Quote 0
                              • plainbrokeP Offline
                                plainbroke @sdetweil
                                last edited by plainbroke

                                @sdetweil
                                pi is my user. I know not very original or safe but it is on a closed network.
                                that is why I tried the pi user in the crontab.
                                and it shows up when I do crontab -l.
                                So I think it is setup under pi correctly.
                                Do I need to do it as root sudo crontab -e and use pi or root as the user?

                                S karsten13K 2 Replies Last reply Reply Quote 0
                                • S Offline
                                  sdetweil @plainbroke
                                  last edited by

                                  @plainbroke no. what fo the pm2 logs show?

                                  pm2 logs --lines=xxx
                                  xxx is number of most recent lines, default 15

                                  Sam

                                  How to add modules

                                  learning how to use browser developers window for css changes

                                  plainbrokeP 1 Reply Last reply Reply Quote 0
                                  • karsten13K Offline
                                    karsten13 @plainbroke
                                    last edited by

                                    @plainbroke

                                    you can do cron restart with pm2 too, see https://pm2.keymetrics.io/docs/usage/restart-strategies/

                                    S 1 Reply Last reply Reply Quote 0
                                    • plainbrokeP Offline
                                      plainbroke @sdetweil
                                      last edited by

                                      This post is deleted!
                                      S 1 Reply Last reply Reply Quote 0
                                      • S Offline
                                        sdetweil @plainbroke
                                        last edited by sdetweil

                                        @plainbroke i mean after cron trying to start
                                        pm2

                                        set a cron entry for an hour from now stop MagicMirror and flush the logs

                                        pm2 stop all
                                        pm2 flush

                                        see what the logs say then

                                        Sam

                                        How to add modules

                                        learning how to use browser developers window for css changes

                                        plainbrokeP 1 Reply Last reply Reply Quote 0
                                        • S Offline
                                          sdetweil @karsten13
                                          last edited by

                                          @karsten13 yes, but he wants stop and start

                                          Sam

                                          How to add modules

                                          learning how to use browser developers window for css changes

                                          1 Reply Last reply Reply Quote 0
                                          • plainbrokeP Offline
                                            plainbroke @sdetweil
                                            last edited by plainbroke

                                            @sdetweil
                                            Got ya, I miss understood before.
                                            Running and waiting for results now…

                                            Finally got results useing the proper path.
                                            @sdetweil
                                            You can mark this resolved.

                                            S 1 Reply Last reply Reply Quote 1

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 1 / 3
                                            • First post
                                              Last post
                                            Enjoying MagicMirror? Please consider a donation!
                                            MagicMirror created by Michael Teeuw.
                                            Forum managed by Sam, technical setup by Karsten.
                                            This forum is using NodeBB as its core | Contributors
                                            Contact | Privacy Policy