Coral: cron configuration detail: Difference between revisions

From The Uniform Server Wiki
Jump to navigation Jump to search
(Created page with "<div id="top" style="margin:0;padding: 0px 0px 0px 5px; color: #000; background-color: #FFFFEB; border: 1px solid darkslateblue;"><span id="top" style="margin:0;padding: 0px;font...")
 
(No difference)

Latest revision as of 13:46, 12 November 2011

CRON - Configuration detail

This page adds more detail to the basic Cron page. It covers additional user configuration and paths to appropriate files.


UniServer 8-Coral
  Home
  Quick Start
  General
  Apache
  MySQL
  PHP
  MSMTP
» CRON
  DtDNS
  Db Backup
  Perl
  Main Index

User Cron script-configuration

Generally there is no need to edit the Cron script! However there is a user configuration section where you can disable logging or change the basic tick rate.

Open file: UniServer\uni_con\cron\run_cron.vbs
Locate this section:

'*** User configuration *******************************************************

 logging   = true           'true = Enable logging false = disable logging
 cron_time = 60             'Set cron time (tick) in seconds. Default 60=1 Min
 cron_loop = cron_time      'Set equal allows immediate first time run

'*************************************************** End User configuration ***

Changing cron_time also changes the resolution time. Sixty seconds is a good compromise and ideal for testing scripts and running a production server.


Test Scripts

Three test files have been included and pre-configured in Cron’s configuration file. Each is a simple command-line script creating a text file when run.

  • UniServer\uni_con\cron\cron_test\test_cron_1.bat File created: UniServer\uni_con\cron\cron_test\test_cron_1_result.txt
  • UniServer\uni_con\cron\cron_test\test_cron_2.vbs File created: UniServer\uni_con\cron\cron_test\test_cron_2_result.txt
  • UniServer\uni_con\cron\cron_test\test_cron_3.php File created: UniServer\uni_con\cron\cron_test\test_cron_3_result.txt


Top

Where to next

CRON - Portable Design

Top