Does ColdFusion 8 application server still run the CF scheduled tasks when apache is stopped?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Do you mean for URLs on the box itself? If your CFM pages are run via Apache, then it won't do any good if CF is running.

link|improve this answer
True... Thanks. – Bubby4j Mar 21 '11 at 14:54
1  
To clarify: Scheduled Tasks are run by making an HTTP call, so if there is no web server running, on-box tasks will fail. – Ben Doom Mar 22 '11 at 21:15
feedback

Yes, it can still run them but they may not work. The ColdFusion Application Server is a separate process from the Apache Web server (httpd).

If the Apache httpd is shut down but the ColdFusion service is still running, it will attempt to run the scheduled tasks. If the task URLs themselves reference a URI space served by Apache, they will fail. If they reference a local built-in Web server (like on port 8500) or on another server entirely they will still be executed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.