Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Verify the time of the OS on the up.time Uptime Infrastructure Monitor Monitoring Station and Database Server.
  • Login as the up.time Uptime Infrastructure Monitor user and verify the time configuration of the up.time Uptime Infrastructure Monitor database.
    • On MySQL:

      Code Block
      languagesql
      select now()
    • On SQL Server:

      Code Block
      languagesql
      select current_timestamp;
    • On Oracle:

      Code Block
      languagesql
      select current_timestamp() from dual;
  • To verify the PHP time configuration:
    • Browse to your /<up.time <uptime dir>/GUI directory.
    • Create a file named time.php with the following content: 

      Code Block
      languagephp
      <?php echo "current timestamp:" .time(); echo " current time: " .date("F j, Y, g:i a");?>

...