Is there a way to restart a coldfusion application without starting the entire server?
There are two coldfusion applications running on a server and I only want to restart one of them.
|
Is there a way to restart a coldfusion application without starting the entire server? There are two coldfusion applications running on a server and I only want to restart one of them. |
||||
|
|
|
If you are using Application.cfc, you can update it so that you can force a call to onApplicationStart() if something specific is passed in the url, or something similar. Simply place a check for that magic token in onRequestStart(), and call onApplicationStart() if it is. If you are not, you can try @Marcos's suggestion. I'm not sure what ramifications that may have in your application. What I would suggest is actually renaming your application, so it starts as a new app. |
|||
|
|
|
If you're on CF9, run |
|||||||||||||
|
|
Here you go, my CF7/8 version of CF9's ApplicationStop. I believe this is thread safe, noting Sean's comment.
As mentioned by Henry, he's my blog post on the subject: http://misterdai.wordpress.com/2010/06/14/cf-flag-application-to-run-onapplicationstart-part-2/ |
|||
|
|
|
A less invasive way of ending your app is to temporarily set the ApplicationTimeout to something very short. Here is an example from an application.cfc file where the app is set to timeout in 10 seconds, which is plenty short for making a change and then checking back:
You might need to limit the session, too. See this article by Ben Nadel for an in-depth look at Application and Session timeouts. |
||||
|
|
|
||||
|
I usually put a reference to each user's session into a struct in my Application scope to monitor what's going on in the app. Maybe doing something similar in the Server scope could help here. Try: <cfset server.runningApplications["myApp"] = Application /> Then you'd have a reference to the actual Application object outside the scope of that application. You could try all manner of destructive things to get rid of it. Try this at your own risk!!! And do it on a dev server before you do it on your production box. ;) |
|||
|
|
|
Use
|
|||||
|
|
If you are using application.cfc, stick this at the top of your onRequestStart function:
Then you can pass a url var to any cfm and the app will reset. |
|||
|
|