ColdFusion hanging

Hi,
I have a ColdFusion 8 application that connects to a MySQL 5.1 database.  Client variables are stored in the database.  Every so often (once every few days or so), one of our users will experience a hanging issue, usually triggered by the user attempting to log in and start a new session.  And once the user triggers this hanging issue, all other pages (session or non-session pages) experience this hang, even if called under another browser session.  I'm wondering if this is a session issue or something to do with the cfapplication tag?
This seems to happen with users using MSIE as their browser, although I can't be certain this is always the case.  I should also note that the login section of our site starts a secure (SSL) session, although I'm not sure if this has anything to do with the hanging issue.
Finally, I should note that my application is hosted on a shared server.  I don't believe that shared traffic is the issue here though because in troubleshooting this issue with my hosting company, they actually moved my site to a dedicated server and we still experienced the hanging issue periodically.
I've been troubleshooting this issue with my hosting company for almost two months now with no fix.  I've searched all the forums and although I've seen other posts regarding ColdFusion hanging (mostly in MX), they do not seem to address the same issue I'm having.
Has anyone else experienced this problem and found a fix?
Thanks,
Tony

Yes, here is code from my login page that starts the user's session:
<cfquery name="GetUser" datasource="SiteDB" maxrows="1">
select * from USERS
where USERNAME = '#Username#' and PASSWORD = '#Password#'
</cfquery>
<cfif isDefined("Client.User_ID")>
<cfset Deleted = DeleteClientVariable("User_ID")>
</cfif>
<cfapplication name="UserSession"
clientmanagement="Yes"
clientstorage="SiteDB"
setclientcookies="Yes"
sessionmanagement="Yes"
sessiontimeout="#createTimeSpan(1,0,30,0)#"
applicationtimeout="#createTimeSpan(1,0,30,0)#"
setdomaincookies="No">
<cfset Client.User_ID = #GetUser.ID#>
<cfcookie name="SiteUser" value="#GetUser.ID#" expires="Never">
<cfif isDefined("AutoLogin")>
<cfcookie name="SiteLogin" value="#GetUser.ID#" expires="Never">
</cfif>
And here is the code my my application.cfm file:
<cfapplication name="UserSession"
clientmanagement="Yes"
clientstorage="SiteDB"
setclientcookies="Yes"
sessionmanagement="Yes"
sessiontimeout="#createTimeSpan(1,0,30,0)#"
applicationtimeout="#createTimeSpan(1,0,30,0)#"
setdomaincookies="No">
<cfif isDefined("Client.User_ID")>
<cfquery name="GetUser" datasource="SiteDB" maxrows="1">
  select *
  from USERS
  where ID = #client.User_ID#
</cfquery>
<cfif GetUser.recordCount gt "0">
   <cfquery name="RecordUserHit" datasource="SiteDB">
    update USERS
    set HITCOUNT = HITCOUNT + 1,
     LASTHIT = #Now()#
    where ID = #client.User_ID#
   </cfquery>
<cfelse>
  <cfoutput>
   <script language="JavaScript">
    top.location.replace("../index.cfm");
   </script>
  </cfoutput>
  <cfabort>
</cfif>
<cfelse>
<cfoutput>
  <script language="JavaScript">
   top.location.replace("../index.cfm");
  </script>
</cfoutput>
<cfabort>
</cfif>
Thanks for your help.

Similar Messages

  • Coldfusion hangs

    Hi everybody,
    Since a while it looks like our Coldfusion server random
    decides to hang. After looking in the CF-log files we cannot point
    out what causes the hanging. Since the end of May an error message
    appears in the Application- and Exception-log files:
    Application-log:
    "Error","jrpp-5623","07/13/06","03:54:31",,"Error Executing
    Database Query.Timed out trying to establish connection The
    specific sequence of files included or processed is:
    /toolbox/test/http/cfajax/AJAX.cfm, line: 6 "
    Exception-log:
    "Error","jrpp-5623","07/13/06","03:54:31",,"Error Executing
    Database Query.Timed out trying to establish connection The
    specific sequence of files included or processed is:
    /toolbox/test/http/cfajax/AJAX.cfm, line: 6 "
    coldfusion.tagext.sql.QueryTag$DatabaseQueryException: Error
    Executing Database Query.
    at
    coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:579)
    at
    cfip_check2ecfm1523298093.runPage(/toolbox/test/http/cf/ip_check.cfm:6)
    at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
    at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
    at
    coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1915)
    at
    cfApplication2ecfm1941991993.runPage(/toolbox/test/http/Application.cfm:40)
    at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
    at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
    at
    coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
    at
    coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:33)
    at
    coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:156)
    at
    coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
    at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
    at
    coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
    at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
    at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
    at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
    at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at
    coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
    at coldfusion.CfmServlet.service(CfmServlet.java:107)
    at
    coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
    at
    jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:318)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:264)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    These two messages are the last entries before the Coldfusion
    server hangs. When we look in the mentioned file AJAX.CFM on line 6
    there is nothing strange. It is a line in the middle of a query.
    Does anybody have a clue where we can search for what is
    causing the problem? Or does anybody have a solution?
    Thanx allready!!!
    Kind regards,
    Paul de Snaijer

    Hi,
    Thanx for your quick answer. Here are my answers:
    Is the datasource you are querying on the same server as
    /toolbox/test/http/cfajax/AJAX.cfm or is it on a different box?
    The database is installed on another server. The Coldfusion
    server runs on a UNIX machine and the Oracle database runs on a
    Windows machine
    How are you connecting to the datasource (ODBC, etc.)?
    We are connecting to the database thru the Oracle driver
    (chosen in the CF Administrator)
    Is the datasource used by other processes?
    The datasource is used by this application only. But in the
    application it is used serveral times and also at the same time.
    Thanx again!
    Kind regards,
    Paul de Snaijer

  • Coldfusion hang

    I have CFMX7 application serber and it connected to Oracle
    9i, there is 3 database links on this DB server. On my code, i have
    query to select union data from 3 database links. I define the
    timeout requests setting to be 15 seconds to terminate long request
    more than 15 sec.
    The problem is occured when a query (which have the db links)
    sometimes take long time and no response from it the db and then
    coldfusion server hanged and heap memory filled and requests queued
    increased becuase this request does not terminated by CF server(15
    sec setting).
    The error may be on db link that related to another network
    and the link sometimes interupted. Is there any hint to solve this
    problem? and is there any exception on my code or setting to
    terminate the not response query abnormally without hang
    CFMX?

    I would advise to try putting timeout on the query itself.
    There is a timeout attribute there. It will timeout the request
    after whatever number of seconds you specify there and release the
    thread that is processing that request. The problem with Page
    Request Timeout alone is that it will timeout the whole page but I
    believe it won't drop the thread that is doing the request. That's
    the reason why you would see hanging situation in this case.

  • Too many open socket connections causing ColdFusion to crash?

    I’m currently working on an e-commerce site which sends and receives information to/from the client’s order management system via XML over a TCP/IP socket.  It uses a very old java-based custom tag called CFX_JSOCKET (which appears to have been written in 2002) to open the socket, send the data, and get the response.  The code that calls the custom tag and sends/receives data from the OMS pre-dates my working on the site, but its always worked, so I haven’t paid it much attention.
    Back in the summer of 2009 we started experiencing issues with ColdFusion (v.7 on Window 2003 at the time) locking up on a more and more frequent basis, until it ultimately became a daily issue.  After extensive research we narrowed the issue down to the communication between the web server and our client’s order management server.  It seemed the issue with ColdFusion hanging was either related to there being too many connections open, or to these connections hanging and resulting in dead threads.  This an educated guess based on a blog post I’d seen online, not actual monitoring of either CF or the TCP/IP connections.  As soon as we dialed back the timeout on the CFX_JSOCKET tag from 20 seconds to 10, the issue disappeared, so we left it at that and moved on.
    Fast forward to this January. The site is hosted at a new location, on a 64-bit Windows 2008 box running ColdFusion 9.  Over the years traffic on the site has continued to grow.  The nature of the clients business means that August and January are their business times of the year (back to school for college kids) and in January ColdFusion once again started locking up on an almost-daily basis.  
    One significant difference is that the address cleansing software that previously ran on the box and was used to verify shipping addresses is not available for 64-bit, so when we moved to the new server last summer, that task was moved to the client’s order management software and handled via XML like all other interaction with that system. However, while most XML calls to that server (order input, inventory check, etc) take under a second to complete, the address cleansing call regularly takes over 5 seconds to return data, and frequently times out. 
    Once we eliminated the address cleansing call from the checkout process, ColdFusion once again stopped locking up regularly.  So it appears that once again it’s the communication between the web server and the order management server that’s causing problems. We currently have that address cleansing call disabled on the web site in order to keep ColdFusion from crashing, but that’s not a long term solution.
    We don’t have, nor can I find online, the source code for the CFX_JSOCKET custom tag, so I decided I’d write some CF code utilizing the java methods to open the socket, send the data, get the response, and close the connection.  My test code is working fine (under no load).  However, in trying to troubleshoot an issue I had with it, I started monitoring the TCP/IP connections using TCPView.  And I noticed that all the connections to the order management server, whether opened via the custom tag or my new code, remain open in either a TIME_WAIT or FIN_WAIT2 status for well over 2 minutes, even though I know for a fact that my new code is definitely closing the connection from the web server side. 
    They do all close eventually, but I’m wondering 1. Why they’re remaining open that long; 2. Is that normal; and 3. If all these connections remaining open could be what’s causing ColdFusion to choke. 
    Does this sound plausible?  If so, does anyone have any suggestions/recommendations about how to fix it?  My research seems to indicate this might be a matter of the order management system not closing the connection on its end, but I’m in way over my head, and before I go to client and tell them it’s their OMS causing the issue, I need to feel a little more confident that I’m on the right track. 
    Any help or advice would be very greatly appreciated.  And thanks for taking the time to read through my long-winded explanation of the problem.
    Set-up details:
    ColdFusion Version: 9,0,0,251028  Standard 
    Operating System: Windows Server 2008 
    Java Version: 1.6.0_14 
    Java VM Name: Java HotSpot(TM) 64-Bit Server VM 
    Java VM Version: 14.0-b16 
    Thanks,
    Laurie

    Hi Laurie,
    Not aware of custom tag called CFX_JSOCKET. I guess the process you described very well is consuming a resource then you are getting a problem. Trick is what parameter to adjust. Perhaps you are running out of one the threads in CFadmin > Server Settings > Request Tuning.
    I expect if you enable CF Metrics logging where you can log the threads and other resources then you can find out which parameter needs adjusting. Let me know if you want some details on enabling CF Metrics. Perhaps others will have much better idea than me and help without the overhead of logging.
    The other interesting thing is you are using CF9.0.0. Do you have some reasons for not being on updater1 CF9.0.1?
    HTH, Carl.
    PS I posted before however seems to have gone, just hope does not come back and then I have posted twice.

  • Need for ColdFusion admin for contract job

    The general manager of a large Web site in San Antonio is
    looking for a contractor to investigate occasional ColdFusion
    hangs. Here's what I know:
    They have been running CF on two Windows boxes for some time.
    Several weeks ago, they upgraded from CF 6 to CF 7. Their stability
    problems began about a week ago. It seems that "for no particular
    reason," ColdFusion will hang.
    They need someone to take a look at the setup of their
    servers and see if there is something amiss. If the consultant is
    in San Antonio, great. However, they would be willing to consider
    allowing the consultant to remote in. If your interested, or for
    more information, contact [email protected]
    TIA

    Isn't it nice to see a good, precise one-liner job ad rather than the same old churned-out corporate bullsh*t that normally accompanies a vacancy description.
    Oh wait.
    Search and Replace "ColdFusion" for "any other web technology" and you've got yourself an ad for pretty much every job in IT ever written. Doesn't even mention what kinds of coffee are on offer.

  • Problems uploading images with uppercase (.JPG) file extension.

    I am using coldfusion 8 and have no problems uploading an image using CFFile when the image has a lowercase file extensions such as .jpg however if the same file has a Uppercase file extension .JPG coldfusion hangs and then just times out. The files are exactly the same just different cases in the extensions.
    Any idea?
    My cffile is set as such   <cffile accept="image/*" action="upload" destination="#uploadfolder2#" filefield="profilePictureFileBrowser" nameconflict="makeunique" >
    I tried changing the accept property to image/*, image/jpg, image/JPG but that did not fix the problem either

    Thanks for the quick reply. So I removed the tag and even though I get an error after submitting the form it appears to not hang anyways. Any idea how to fix this?
    I am on a windows 2003 server so cases sensitifity should not be a problem. I am perplexed as to why this would work with lowercase extensions an not upper?

  • 32-bit Software & 64-bit hardware Compatibility

    We have install Coldfusion MX 7.0.2 on a 64-bit Xeon Duo-Core
    Intel server running Windows 2003 32-bit Server. Is this OK or are
    there issues running 32-bit OS and Coldfusion MX 7 on a 64-bit
    machine?? We are experiencing Coldfusion "freezes" or hangs. The
    problem goes away when the server is restarted or the Coldfusion
    service is restarted. Our web developers suggest a corrupt OS so I
    was going to buy another server but can only find 64-bit
    processors. Is the 32-bit OS, 32-bit Java and 32-bit Coldfusion MX
    7 running on a 64-bit hardware causing my problem??? I don't want
    to buy a new 64-bit machine to have the same issue. We are a K-12
    public school with limited resources.... the $499.00 fee to ask
    Adobe this question is hard to swallow! Thank You!

    There are many forum threads that discuss coldfusion hangs.
    There are also many technotes that discuss troubleshooting of
    these. Start by reviewing them.
    To begin with review your cfusionmx7\logs and
    cfusionmx7\runtime\logs. Initially review your application logs.
    Fix the errors there and in the exception log. You may want to
    archive all existing logs and start with clean logs. Next time you
    hang look to see what kinds of errors you are seeing at the end of
    the log.
    Thread dumps are a typical troubleshooting tool for hangs.
    Review the technotes on these.
    Unless there are other obvious signs of a problem with your
    OS, there is no reason to suspect it. Coldfusion 32 bit runs fine
    on 64 bit hardware.

  • Wepshere and ColdFusion Mx 7- Java Hangs

    Hi folks,
    We just recently went live with our new web server and are
    experiencing occaisional hangs with Websphere/CF. IBM has diagnosed
    the following, and I am hoping you might be able to help shed
    further light on how we might correct or alleviate the problem.
    I see out of memory exceptions and the current thread is deep
    in ColdFusion code...
    Current Thread Details
    "WebContainer : 19" (TID:0x30785DD8,
    sys_thread_t:0x4B70F1A0, state:R, native ID:0x4DF4) prio=5
    at
    coldfusion.runtime.NeoBodyContent.getString(NeoBodyContent.java(Compiled
    Code))
    at
    coldfusion.tagext.lang.ThistagScope.setBodyContent(ThistagScope.java(Compiled
    Code))
    at
    coldfusion.tagext.lang.ModuleTag.doAfterBody(ModuleTag.java(Compiled
    Code))
    at
    cffbx_fusebox30_CF50_nix2ecfm97317734._factor2(fbx_fusebox30_CF50_nix.cfm:286)
    at
    cffbx_fusebox30_CF50_nix2ecfm97317734._factor4(fbx_fusebox30_CF50_nix.cfm:258)
    at
    cffbx_fusebox30_CF50_nix2ecfm97317734._factor5(fbx_fusebox30_CF50_nix.cfm:1)
    at
    cffbx_fusebox30_CF50_nix2ecfm97317734.runPage(fbx_fusebox30_CF50_nix.cfm:1)
    at
    coldfusion.runtime.CfJspPage.invoke(CfJspPage.java(Compiled Code))
    at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java(Compiled
    Code))
    at
    coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java(Compiled
    Code))
    at cfindex2ecfm1859906939.runPage(index.cfm:19)
    at
    coldfusion.runtime.CfJspPage.invoke(CfJspPage.java(Compiled Code))
    at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java(Compiled
    Code))
    at
    coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java(Compiled
    Code))
    at
    coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java(Compiled
    Code))
    at
    coldfusion.filter.PathFilter.invoke(PathFilter.java(Compiled Code))
    at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java(Compiled
    Code))
    at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java(C ompiled
    Code))
    at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java(Compiled
    Code))
    at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java(Compiled
    Code))
    at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java(Compiled
    Code))
    at coldfusion.CfmServlet.service(CfmServlet.java(Compiled
    Code))
    at
    coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java(Compiled
    Code))
    at
    com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java(Compiled
    Code))
    at
    com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java(Compiled
    Code))
    at
    com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java(Compiled
    Code))
    at
    com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java(Compiled
    Code))
    at
    com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.jav a(Compiled
    Code))
    at
    com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java(Compiled
    Code))
    at
    com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java(Compiled
    Code))
    at
    com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java(Compiled
    Code))
    at
    com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink .java(Compiled
    Code))
    at
    com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.jav a(Compiled
    Code))
    at
    com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java(Compil ed
    Code))
    at
    com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled
    Code))
    at
    com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java(Compiled
    Code))
    at
    com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java(Compiled
    Code))
    at
    com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled
    Code))
    And
    The heapdump also shows coldfusion code with large 8M
    objects. This is the source of the problem.
    21,228,000 [96] 5 com/ibm/ws/util/ThreadPool 0x33a9e748
    21,066,680 [56] 2 java/util/HashMap 0x33a96628
    21,066,600 [48] 8 array of java/util/HashMap$Entry
    0x32be0488
    18,431,608 [32] 3 java/util/HashMap$Entry 0x3726b7f0
    18,352,408 [136] 9 com/ibm/ws/util/ThreadPool$Worker
    0x30785dd8
    18,311,272 [32] 1 java/lang/ThreadLocal$ThreadLocalMap
    0x3781d318
    18,311,240 [112] 23 array of
    java/lang/ThreadLocal$ThreadLocalMap$Entry 0x3ac26e88
    18,307,136 [32] 3 java/lang/ThreadLocal$ThreadLocalMap$Entry
    0x3822ea28
    18,307,104 [160] 15 coldfusion/filter/FusionContext
    0x3e8be278
    9,863,608 [32] 1 coldfusion/runtime/LocalScope 0x3e8b49d8
    8,411,336 [96] 12 coldfusion/runtime/NeoPageContext
    0x3e8b4708
    8,390,800 [96] 11 coldfusion/runtime/NeoPageContext
    0x3e8bcc48
    8,388,904 [80] 4 coldfusion/runtime/NeoBodyContent
    0x3e8c2490
    8,388,664 [40] 2 coldfusion/runtime/CharBuffer 0x3e8b8870
    8,388,624 [8,388,624] 0 char[] 0x3f740130
    8,388,664 [40] 2 coldfusion/runtime/CharBuffer 0x3e8b8870
    160 [80] 4 coldfusion/runtime/NeoBodyContent 0x3e8c0f68
    8,388,904 [80] 4 coldfusion/runtime/NeoBodyContent
    0x3e8c2490
    88 [88] 3 coldfusion/runtime/NeoJspWriter 0x3e8bcaf8
    8,388,904 [80] 4 coldfusion/runtime/NeoBodyContent
    0x3e8c2490
    1,720 [32] 3 coldfusion/runtime/NeoPageContext$TagSet
    0x3e8b8970
    Any help or suggestions you can provide would be most
    appreciated.
    Cheers,
    David

    Hi,
    Please visit the URL below for a sample on how to display
    data in a DataGrid.
    http://livedocs.adobe.com/flex/3/langref/mx/controls/DataGrid.html#includeExamplesSummary
    Hope this helps.

  • Coldfusion 8 hanging on startup

    I'm trying to install coldfusion 8 on leopard, following
    various instructions from the web. But, when I try to start
    coldfusion from terminal with command "sudo
    /Applications/JRun4/bin/jrun -start cfusion", it hangs there with
    lots of error msg, the first being
    michael-kerners-powerbook-g4-15:~ mkerner$ sudo sudo
    /Applications/JRun4/bin/jrun -start cfusion &
    [1] 31541
    michael-kerners-powerbook-g4-15:~ mkerner$ Starting
    Macromedia JRun 4.0 (Build 108487), cfusion server
    12/04 21:05:39 error JRun Naming Service unable to start on
    port 2902
    java.net.BindException: Port in use by another service or
    process: 2902
    at
    jrun.servlet.network.NetworkService.bindToSocket(NetworkService.java:337)
    not sure what the problem is, I installed CF on
    multi-server.

    ok well that is fixed, however now on starting CF from
    terminal, it runs fine up until this line:
    12/04 21:54:46 user CFSwfServlet: init
    12/04 21:54:46 user CFCServlet: init
    12/04 21:54:50 user FlashGateway: init
    12/04 21:54:50 user MessageBrokerServlet: init
    12/04 21:54:56 user CFFormGateway: init
    12/04 21:54:56 user CFInternalServlet: init
    right here at the end it just hangs up - I can't enter
    commands.
    Any suggestions?

  • Coldfusion service hangs when logging into coldfusion administrator

    Hi,
    After changing the maximum number of connections to 1, I can
    no longer enter the coldfusion administrator.
    He allows me to enter the password, and then continues, but
    after showing only the top frame on the left, the coldfusion
    service hangs.
    I use coldfusion mx 6.1 on windows 2003 server and IIS.
    Kind regards,
    Thomas

    If you mean the "Maximum number of simultaneous requests",
    this setting can be changed by making an edit to jrun.xml found in
    \CFusionMX\runtime\servers\default\SERVER-INF\.
    The argument is:<attribute
    name="activeHandlerThreads">8</attribute> in the
    ProxyService section.
    Yours should show <attribute
    name="activeHandlerThreads">1</attribute>.
    Be sure to make a backup copy of the jrun.xml file before
    making any edits.
    You will need to restart ColdFusion after the change.

  • ColdFusion Builder 2 HANGS

    I downloaded and installed the CF Builder 2 (Version: 2.0.1 Build: 282422) and almost daily (but not at any regular time or interval) it hangs, then I have to manually kill the process, and often lose some work. When this happens the CPU resources get pegged at 100% or more by the ColdFusion Builder 2 process. I can't identify any specific operation that appears to cause this either; I'm almost always just typing code when the freeze occurs.
    I'm on Mac OSX 10.9, 16GB RAM
    Has anyone else experienced this? Any work arounds out there?
    I'm going to be running out of free trial time and unfortunately there is no way I can justify paying for this product. I was using Dreamweaver (which I still like and may go back to) but has anyone else seen/used a good CFML editor?
    Thanks in advance,
    Rich

    In the vein of “teaching a man to fish”…
    Doing a google search for:
    cfbuilder.ini osx
    turned up first a result at: http://blog.mxunit.org/2009/07/speeding-up-coldfusion-builder.html
    where Charlie Griefer added a comment saying:
    For OS X folks:
    Go to your \CFBuilder.app, right-click and choose "Show Package Contents".
    You'll find the CFBuilder.ini under Contents > MacOS > CFBuilder.ini
    Does that work for you, Richard?
    If not, let’s ask for clarification: are you running CFBuilder in standalone mode? Or as a plug-in atop Eclipse? If the latter, see the “Mac OS X” section of this page:
    http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.platform.doc.user%2Ftasks%2F running_eclipse.htm
    Let us know if any of that helps.
    /charlie

  • ColdFusion MX7 Reports Hang

    Please see the stack trace below from FusionReactor.  This just started two weeks ago, we had been running great for over three months with no issues like this.  In the past we had seen this once a month or so, but never spent much time on it because it was very infrequent.  Thanks in advance for your help.
    Thread Stack Trace
    Trace Time:   11:47:06.631 16-May-2013
    Request ID:   3273
    Script Name:  https://ecm.wvdrs.org/ecm/fms/index.cfm
    Started:      11:35:37.258 16-May-2013
    Exec Time:    689373ms
    Memory Used:  (8%)41,056KB
    Memory Free:  463,839KB
    Thread ID:    jrpp-164
    Priority:     5
    Hashcode:     8928918
    "jrpp-164" prio=5 tid=0x039a75c0 nid=0x1ed0 waiting on condition
     at java.lang.Thread.sleep(Native Method)
     at coldfusion.runtime.report.Report.runReport(Report.java:323)
     at coldfusion.tagext.lang.ReportTag.doEndTag(ReportTag.java:467)
     at cfdsp_viewreport2ecfm918356850.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\dsp_view report.cfm:47)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_Switch2ecfm1729482829._factor20(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:378)
     at cffbx_Switch2ecfm1729482829._factor21(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:363)
     at cffbx_Switch2ecfm1729482829._factor34(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:354)
     at cffbx_Switch2ecfm1729482829._factor35(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:1)
     at cffbx_Switch2ecfm1729482829.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switch. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_fusebox30_CF502ecfm709174367._factor4(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:241)
     at cffbx_fusebox30_CF502ecfm709174367._factor5(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:1)
     at cffbx_fusebox30_CF502ecfm709174367.runPage(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cfindex2ecfm441293188.runPage(D:\Inetpub\wwwroot\ecm\FMS\index.cfm:94)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
     at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
     at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
     at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
     at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
     at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
     at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
     at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
     at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
     at coldfusion.CfmServlet.service(CfmServlet.java:105)
     at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doHttpServletRequest(FusionRea ctorCoreFilter.java:503)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFusionRequest(FusionReactorC oreFilter.java:337)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilt er.java:246)
     at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 121)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
     at jrun.servlet.FilterChain.service(FilterChain.java:101)
     at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
     at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
     at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
     at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
     at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
     at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
     at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
     at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
     at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Thread Stack Trace
    Trace Time:   11:47:06.740 16-May-2013
    Request ID:   3313
    Script Name:  https://ecm.wvdrs.org/ecm/fms/index.cfm
    Started:      11:36:36.404 16-May-2013
    Exec Time:    630336ms
    Memory Used:  (9%)46,857KB
    Memory Free:  458,038KB
    Thread ID:    jrpp-143
    Priority:     5
    Hashcode:     6763345
    "jrpp-143" prio=5 tid=0x037c80b0 nid=0x1ce4 in Object.wait()
     at java.lang.Object.wait(Native Method)
     - waiting on <0x14680e08> (a java.lang.Object)
     at java.lang.Object.wait(Unknown Source)
     at coldfusion.runtime.report.Report.CheckOut(Report.java:656)
     - locked <0x14680e08> (a java.lang.Object)
     at coldfusion.runtime.report.Report.runReport(Report.java:214)
     at coldfusion.tagext.lang.ReportTag.doEndTag(ReportTag.java:467)
     at cfdsp_viewreport2ecfm918356850.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\dsp_view report.cfm:47)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_Switch2ecfm1729482829._factor20(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:378)
     at cffbx_Switch2ecfm1729482829._factor21(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:363)
     at cffbx_Switch2ecfm1729482829._factor34(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:354)
     at cffbx_Switch2ecfm1729482829._factor35(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:1)
     at cffbx_Switch2ecfm1729482829.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switch. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_fusebox30_CF502ecfm709174367._factor4(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:241)
     at cffbx_fusebox30_CF502ecfm709174367._factor5(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:1)
     at cffbx_fusebox30_CF502ecfm709174367.runPage(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cfindex2ecfm441293188.runPage(D:\Inetpub\wwwroot\ecm\FMS\index.cfm:94)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
     at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
     at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
     at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
     at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
     at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
     at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
     at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
     at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
     at coldfusion.CfmServlet.service(CfmServlet.java:105)
     at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doHttpServletRequest(FusionRea ctorCoreFilter.java:503)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFusionRequest(FusionReactorC oreFilter.java:337)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilt er.java:246)
     at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 121)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
     at jrun.servlet.FilterChain.service(FilterChain.java:101)
     at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
     at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
     at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
     at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
     at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
     at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
     at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
     at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
     at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Thread Stack Trace
    Trace Time:   11:47:06.756 16-May-2013
    Request ID:   3375
    Script Name:  https://ecm.wvdrs.org/ecm/fms/index.cfm
    Started:      11:41:31.919 16-May-2013
    Exec Time:    334837ms
    Memory Used:  (8%)45,188KB
    Memory Free:  459,707KB
    Thread ID:    jrpp-203
    Priority:     5
    Hashcode:     11587838
    "jrpp-203" prio=5 tid=0x08faf5e8 nid=0x1d44 in Object.wait()
     at java.lang.Object.wait(Native Method)
     - waiting on <0x14680e08> (a java.lang.Object)
     at java.lang.Object.wait(Unknown Source)
     at coldfusion.runtime.report.Report.CheckOut(Report.java:656)
     - locked <0x14680e08> (a java.lang.Object)
     at coldfusion.runtime.report.Report.runReport(Report.java:214)
     at coldfusion.tagext.lang.ReportTag.doEndTag(ReportTag.java:467)
     at cfdsp_viewreport2ecfm918356850.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\dsp_view report.cfm:47)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_Switch2ecfm1729482829._factor20(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:378)
     at cffbx_Switch2ecfm1729482829._factor21(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:363)
     at cffbx_Switch2ecfm1729482829._factor34(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:354)
     at cffbx_Switch2ecfm1729482829._factor35(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:1)
     at cffbx_Switch2ecfm1729482829.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switch. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_fusebox30_CF502ecfm709174367._factor4(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:241)
     at cffbx_fusebox30_CF502ecfm709174367._factor5(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:1)
     at cffbx_fusebox30_CF502ecfm709174367.runPage(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cfindex2ecfm441293188.runPage(D:\Inetpub\wwwroot\ecm\FMS\index.cfm:94)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
     at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
     at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
     at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
     at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
     at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
     at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
     at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
     at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
     at coldfusion.CfmServlet.service(CfmServlet.java:105)
     at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doHttpServletRequest(FusionRea ctorCoreFilter.java:503)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFusionRequest(FusionReactorC oreFilter.java:337)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilt er.java:246)
     at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 121)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
     at jrun.servlet.FilterChain.service(FilterChain.java:101)
     at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
     at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
     at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
     at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
     at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
     at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
     at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
     at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
     at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Thread Stack Trace
    Trace Time:   11:47:06.756 16-May-2013
    Request ID:   3416
    Script Name:  https://ecm.wvdrs.org/ecm/fms/index.cfm
    Started:      11:42:08.853 16-May-2013
    Exec Time:    297903ms
    Memory Used:  (8%)42,401KB
    Memory Free:  462,494KB
    Thread ID:    jrpp-241
    Priority:     5
    Hashcode:     3455229
    "jrpp-241" prio=5 tid=0x0381be88 nid=0x3ec in Object.wait()
     at java.lang.Object.wait(Native Method)
     - waiting on <0x14680e08> (a java.lang.Object)
     at java.lang.Object.wait(Unknown Source)
     at coldfusion.runtime.report.Report.CheckOut(Report.java:656)
     - locked <0x14680e08> (a java.lang.Object)
     at coldfusion.runtime.report.Report.runReport(Report.java:214)
     at coldfusion.tagext.lang.ReportTag.doEndTag(ReportTag.java:467)
     at cfdsp_viewreport2ecfm918356850.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\dsp_view report.cfm:47)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_Switch2ecfm1729482829._factor20(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:378)
     at cffbx_Switch2ecfm1729482829._factor21(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:363)
     at cffbx_Switch2ecfm1729482829._factor34(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:354)
     at cffbx_Switch2ecfm1729482829._factor35(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:1)
     at cffbx_Switch2ecfm1729482829.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switch. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_fusebox30_CF502ecfm709174367._factor4(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:241)
     at cffbx_fusebox30_CF502ecfm709174367._factor5(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:1)
     at cffbx_fusebox30_CF502ecfm709174367.runPage(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cfindex2ecfm441293188.runPage(D:\Inetpub\wwwroot\ecm\FMS\index.cfm:94)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
     at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
     at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
     at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
     at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
     at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
     at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
     at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
     at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
     at coldfusion.CfmServlet.service(CfmServlet.java:105)
     at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doHttpServletRequest(FusionRea ctorCoreFilter.java:503)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFusionRequest(FusionReactorC oreFilter.java:337)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilt er.java:246)
     at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 121)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
     at jrun.servlet.FilterChain.service(FilterChain.java:101)
     at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
     at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
     at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
     at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
     at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
     at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
     at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
     at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
     at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Thread Stack Trace
    Trace Time:   11:47:06.756 16-May-2013
    Request ID:   3646
    Script Name:  https://ecm.wvdrs.org/ecm/fms/index.cfm
    Started:      11:46:12.916 16-May-2013
    Exec Time:    53840ms
    Memory Used:  (9%)50,379KB
    Memory Free:  454,516KB
    Thread ID:    jrpp-172
    Priority:     5
    Hashcode:     31620022
    "jrpp-172" prio=5 tid=0x03a45a10 nid=0xf70 in Object.wait()
     at java.lang.Object.wait(Native Method)
     - waiting on <0x14680e08> (a java.lang.Object)
     at java.lang.Object.wait(Unknown Source)
     at coldfusion.runtime.report.Report.CheckOut(Report.java:656)
     - locked <0x14680e08> (a java.lang.Object)
     at coldfusion.runtime.report.Report.runReport(Report.java:214)
     at coldfusion.tagext.lang.ReportTag.doEndTag(ReportTag.java:467)
     at cfdsp_viewreport2ecfm918356850.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\dsp_view report.cfm:47)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_Switch2ecfm1729482829._factor20(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:378)
     at cffbx_Switch2ecfm1729482829._factor21(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:363)
     at cffbx_Switch2ecfm1729482829._factor34(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:354)
     at cffbx_Switch2ecfm1729482829._factor35(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:1)
     at cffbx_Switch2ecfm1729482829.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switch. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_fusebox30_CF502ecfm709174367._factor4(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:241)
     at cffbx_fusebox30_CF502ecfm709174367._factor5(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:1)
     at cffbx_fusebox30_CF502ecfm709174367.runPage(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cfindex2ecfm441293188.runPage(D:\Inetpub\wwwroot\ecm\FMS\index.cfm:94)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
     at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
     at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
     at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
     at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
     at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
     at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
     at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
     at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
     at coldfusion.CfmServlet.service(CfmServlet.java:105)
     at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doHttpServletRequest(FusionRea ctorCoreFilter.java:503)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFusionRequest(FusionReactorC oreFilter.java:337)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilt er.java:246)
     at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 121)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
     at jrun.servlet.FilterChain.service(FilterChain.java:101)
     at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
     at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
     at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
     at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
     at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
     at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
     at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
     at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
     at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Thread Stack Trace
    Trace Time:   11:47:06.756 16-May-2013
    Request ID:   3649
    Script Name:  https://ecm.wvdrs.org/ecm/fms/index.cfm
    Started:      11:46:13.947 16-May-2013
    Exec Time:    52809ms
    Memory Used:  (9%)48,752KB
    Memory Free:  456,143KB
    Thread ID:    jrpp-236
    Priority:     5
    Hashcode:     6502586
    "jrpp-236" prio=5 tid=0x03a44760 nid=0x14f4 in Object.wait()
     at java.lang.Object.wait(Native Method)
     - waiting on <0x14680e08> (a java.lang.Object)
     at java.lang.Object.wait(Unknown Source)
     at coldfusion.runtime.report.Report.CheckOut(Report.java:656)
     - locked <0x14680e08> (a java.lang.Object)
     at coldfusion.runtime.report.Report.runReport(Report.java:214)
     at coldfusion.tagext.lang.ReportTag.doEndTag(ReportTag.java:467)
     at cfdsp_viewreport2ecfm918356850.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\dsp_view report.cfm:47)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_Switch2ecfm1729482829._factor20(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:378)
     at cffbx_Switch2ecfm1729482829._factor21(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:363)
     at cffbx_Switch2ecfm1729482829._factor34(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:354)
     at cffbx_Switch2ecfm1729482829._factor35(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switc h.cfm:1)
     at cffbx_Switch2ecfm1729482829.runPage(D:\Inetpub\wwwroot\ecm\FMS\Authorizations\fbx_Switch. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cffbx_fusebox30_CF502ecfm709174367._factor4(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:241)
     at cffbx_fusebox30_CF502ecfm709174367._factor5(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50 .cfm:1)
     at cffbx_fusebox30_CF502ecfm709174367.runPage(D:\Inetpub\wwwroot\ecm\FMS\fbx_fusebox30_CF50. cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cfindex2ecfm441293188.runPage(D:\Inetpub\wwwroot\ecm\FMS\index.cfm:94)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
     at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
     at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
     at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
     at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
     at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
     at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
     at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
     at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
     at coldfusion.CfmServlet.service(CfmServlet.java:105)
     at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doHttpServletRequest(FusionRea ctorCoreFilter.java:503)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFusionRequest(FusionReactorC oreFilter.java:337)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilt er.java:246)
     at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 121)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
     at jrun.servlet.FilterChain.service(FilterChain.java:101)
     at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
     at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
     at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
     at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
     at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
     at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
     at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
     at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
     at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Thread Stack Trace
    Trace Time:   11:47:06.756 16-May-2013
    Request ID:   3716
    Script Name:  https://ecm.wvdrs.org/ecm/case/case.cfm?form=actionComment&amp;CID=107559
    Started:      11:47:06.303 16-May-2013
    Exec Time:    453ms
    Memory Used:  (9%)45,923KB
    Memory Free:  458,972KB
    Thread ID:    jrpp-160
    Priority:     5
    Hashcode:     23728670
    "jrpp-160" prio=5 tid=0x039a4620 nid=0x19b0 runnable
     at java.net.SocketInputStream.socketRead0(Native Method)
     at java.net.SocketInputStream.read(Unknown Source)
     at macromedia.jdbc.sqlserver.SQLServerByteOrderedDataReader.readPacketIntoPrimaryBuffer(Unkn own Source)
     at macromedia.jdbc.sqlserver.SQLServerByteOrderedDataReader.receive(Unknown Source)
     at macromedia.jdbc.sqlserver.tds.TDSRequest.receive(Unknown Source)
     at macromedia.jdbc.sqlserver.tds.TDSExecuteRequest.submitRequest(Unknown Source)
     at macromedia.jdbc.sqlserver.SQLServerImplStatement.execute(Unknown Source)
     at macromedia.jdbc.base.BaseStatement.commonExecute(Unknown Source)
     at macromedia.jdbc.base.BaseStatement.executeInternal(Unknown Source)
     at macromedia.jdbc.base.BaseStatement.execute(Unknown Source)
     - locked <0x10ae36c8> (a macromedia.jdbc.sqlserver.SQLServerConnection)
     at coldfusion.server.j2ee.sql.JRunStatement.execute(JRunStatement.java:212)
     at coldfusion.sql.Executive.executeQuery(Executive.java:705)
     at coldfusion.sql.Executive.executeQuery(Executive.java:638)
     at coldfusion.sql.Executive.executeQuery(Executive.java:599)
     at coldfusion.sql.SqlImpl.execute(SqlImpl.java:236)
     at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:498)
     at cfactionComment2ecfm627287827.runPage(D:\Inetpub\wwwroot\ecm\Case\actionComment.cfm:26)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1908)
     at cfcase2ecfm50633854._factor20(D:\Inetpub\wwwroot\ecm\Case\case.cfm:715)
     at cfcase2ecfm50633854._factor21(D:\Inetpub\wwwroot\ecm\Case\case.cfm:242)
     at cfcase2ecfm50633854.runPage(D:\Inetpub\wwwroot\ecm\Case\case.cfm:1)
     at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
     at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
     at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
     at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
     at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
     at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
     at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
     at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
     at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
     at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
     at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
     at coldfusion.CfmServlet.service(CfmServlet.java:105)
     at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doHttpServletRequest(FusionRea ctorCoreFilter.java:503)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFusionRequest(FusionReactorC oreFilter.java:337)
     at com.intergral.fusionreactor.filter.FusionReactorCoreFilter.doFilter(FusionReactorCoreFilt er.java:246)
     at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 121)
     at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
     at jrun.servlet.FilterChain.service(FilterChain.java:101)
     at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
     at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
     at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
     at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
     at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
     at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
     at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
     at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
     at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

    sunil106 wrote:
    > How can I backup coldfusion mx7 configuration and data
    sources?
    The datasources depends on the type, most databases have
    dedicated tools
    for backups. For CF configuration I do a nightly filesystem
    backup of
    all files with the following extensions:
    *.xml
    *.properties
    *.config
    Jochem
    Jochem van Dieten
    Adobe Community Expert for ColdFusion

  • ColdFusion Builder 3 - Open a large file causing CF Builder 3 to Hang

    When I try to open a large file having 2700 lines of code in CF Builder 3, it becomes completely unusable and in the task manager showing Not Responding.

    Verified this with a few other guys to make sure this is not just my environment.
    After a closer look, it looks like this file with 3000 lines of code is including (cfinclude) many other files and we think CF Builder 3 is trying to load them as well.
    In Dreamweaver above scenario could be turned off. And I do not see any options in CF Builder 3 to do that.

  • Coldfusion 10 will not start

    I am running CF 10 on Redhat Linux 6 and everything was working fine until recently, but now I cannot get CF to start up.  I had created a datasource to connect to a unidata database and it was not working, so I needed a newer version of the database driver.  I got the new version of the driver (the 2 files needed for the driver are unijdbc.jar and asjava.zip).  I placed the files in the location where I've always placed them while using CF 8:
    /opt/coldfusion10/cfusion/wwwroot/WEB-INF/classes/unijdbc.jar,/opt/coldfusion10/cfusion/ww wroot/WEB-INF/classes/asjava.zip,"%CLASSPATH%"
    and set the class path in the CF Administrator accordingly, then stopped and started CF, and it came up fine, but the datasource to unidata would not verify (see my other recent forum post) -- in reply to that post, someone had recommended I put the drivers in a different location, so I did that, and set the classpath accordingly:
    /opt/coldfusion10/cfusion/runtime/lib/unijdbc.jar,/opt/coldfusion10/cfusion/runtime/lib/as java.zip,"%CLASSPATH%"
    then stopped and started CF, and it came up without problem, but datasource still would not connect. 
    So, I made one more change to the classpath and took the "" off the end so it looks like this:
    /opt/coldfusion10/cfusion/runtime/lib/unijdbc.jar,/opt/coldfusion10/cfusion/runtime/lib/as java.zip,%CLASSPATH%
    and then instead of doing "service coldfusion_10 stop" and "service coldfusion_10 start" as I had been doing, I decided to try "service coldfusion_10 restart".  It said it was stopping CF but then could not start it.  I don't have the exact error but it did end with this:
    The ColdFusion 10 server instance named cfusion is starting up and will be available shortly.
    There has been an error starting ColdFusion 10 server instance named cfusion, please check the logs.
    So I thought perhaps the "restart" left a pid or something hanging and it did not completely shut down, so it could not restart, although it would not let me do the stop command either, nor were there any coldfusion processes running on the server.  So I decided to reboot the server to see if that would help, it did not -- after the server came back up, I tried starting coldfusion again, and keep getting this error: 
    [root@ctc3650z selinux]# service coldfusion_10 start
    Starting ColdFusion 10 server instance named cfusion ...
    nohup: ignoring input and appending output to `nohup.out'
    sh: /opt/coldfusion10/cfusion/runtime/lib/asjava.zip: cannot execute binary file
    sh: line 0: bg: no job control
    The ColdFusion 10 server instance named cfusion is starting up and will be available shortly.
    There has been an error starting ColdFusion 10 server instance named cfusion, please check the logs.
    [root@ctc3650z selinux]#
    I cannot get into the coldfusion administrator to change the classpath, but it does not appear to like the asjava.zip file, which it had no problem wtih before (is same file).  I do not understand this error:
    sh: /opt/coldfusion10/cfusion/runtime/lib/asjava.zip: cannot execute binary file
    Also it says "please check the logs" ... I have looked at all the logs under /opt/coldfusion10/cfusion/logs and nothing in them references this error.
    Here is the entry in the /opt/coldfusion10/cfusion/bin/nohup.out:
    Usage: java [-options] class [args...]
               (to execute a class)
       or  java [-options] -jar jarfile [args...]
               (to execute a jar file)
    where options include:
        -d32          use a 32-bit data model if available
        -d64          use a 64-bit data model if available
        -server       to select the "server" VM
                      The default VM is server.
        -cp <class search path of directories and zip/jar files>
        -classpath <class search path of directories and zip/jar files>
                      A : separated list of directories, JAR archives,
                      and ZIP archives to search for class files.
        -D<name>=<value>
                      set a system property
        -verbose[:class|gc|jni]
                      enable verbose output
        -version      print product version and exit
        -version:<value>
                      require the specified version to run
        -showversion  print product version and continue
        -jre-restrict-search | -jre-no-restrict-search
                      include/exclude user private JREs in the version search
        -? -help      print this help message
        -X            print help on non-standard options
        -ea[:<packagename>...|:<classname>]
        -enableassertions[:<packagename>...|:<classname>]
                      enable assertions
        -da[:<packagename>...|:<classname>]
        -disableassertions[:<packagename>...|:<classname>]
                      disable assertions
        -esa | -enablesystemassertions
                      enable system assertions
        -dsa | -disablesystemassertions
                      disable system assertions
        -agentlib:<libname>[=<options>]
                      load native agent library <libname>, e.g. -agentlib:hprof
                        see also, -agentlib:jdwp=help and -agentlib:hprof=help
        -agentpath:<pathname>[=<options>]
                      load native agent library by full pathname
        -javaagent:<jarpath>[=<options>]
                      load Java programming language agent, see java.lang.instrument
        -splash:<imagepath>
                      show splash screen with specified image
    [root@ctc3650z logs]#
    Can anyone help?  Thank you very much, and sorry so wordy...
    Julie

    I fixed it myself!!  I could not get back into the CF Admin to undo the syntax change on the classpath on the Java/JVM page, since CF was down, so I dug around on the server and found this file:  /opt/coldfusion10/cfusion/bin/jvm.config  which is the contents of that screen.  I edited it with vi and undid the syntax change I did, then I was able to start up coldfusion.  Still can't get my unidata datasource to connect, but that's another issue...

  • CF 10 sp 12 Enterprise  high CPU usage hangs services, 2012 server on 2012 Hyper-V host

    The last 2 days - my [removed link] CF site has suffered from high CPU usage (on and off) that stops functionality.
    This will last several minutes then suddenly the high usage stops a few minute later the high cpu usage starts again.
    I don't have any scheduled processes allowed to run.
    Restarting the coldfusion service  during a high CPS incident - the cpu usage just picks up where it left off when restarted.
    I have assigned 4 CPUs (normal) or 8CPUs  (as a test) to the VM and I get the same high CPU then low usage. This is a fresh install several months ago on a new VM.
    I'd like some Adobe support on this issue but can't seem to find the contact phone number.
    This series of high and low cpu usage first started Monday AM about midnight until 7:00 AM  Tuesday was quiet and Wednesday this AM I'm having the same issues.
    Ideas?
    Update:  While waiting for this to post - the high CPU usage started again and this time I stopped and restarted the Jetty service ... and the CPU usage went away...
    Update: the high cpu started again and a restart of the jetty service didn't help --- neither did the .net service restart... the cf10 application service did stop the high usage...
    Jay Bietz
    Message was edited by: Jay Bietz after post accepted.

    After 2 hang free days -- Friday midnight (above is the gcviewer )  and ~2 hours later had the hang condition again.  Current java.config includes
    java.args=-server  -Xms4096m -Xmx4096m -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005 -XX:PermSize=512m -XX:MaxPermSize=512m -XX:+UseParallelGC -Xbatch -Dcoldfusion.home={application.home} -Dcoldfusion.rootDir={application.home} -Dcoldfusion.libPath={application.home}/lib -Dorg.apache.coyote.USE_CUSTOM_STATUS_MSG_IN_HEADER=true -Dcoldfusion.jsafe.defaultalgo=FIPS186Random -Dcom.sun.management.jmxremote.port=8701 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Xmn1024m -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintHeapAtGC -verbose:gc -Xloggc:cfwhispererGClive4.log -Dcoldfusion.classPath={application.home}/lib/updates,{application.home}/lib,{application .home}/lib/axis2,{application.home}/gateway/lib/,{application.home}/wwwroot/WEB-INF/flex/j ars,{application.home}/wwwroot/WEB-INF/cfform/jars,C:\\CFusion10\\cfusion\\verisign\\payfl owpro\\Java\\PFProColdFusion,C:\\CFusion10\\cfusion\\verisign\\payflowpro\\Java\\PFProCold Fusion\\Verisign.jar
    GCviewer shows that the full GCcollections suddenly start firing off many times in a short period of time.
    Jay
    will work on the tomcatlog issues next.

Maybe you are looking for

  • Multiple iCloud mail accounts on one computer

    We had a family pack on mac.com and when we moved the accounts to icloud (on  the same mac), the mac can no longer get email from one of the accounts... icloud is not accepting the pasword for this account - however, withut making any changes to the

  • Flash poor performance with vector art (.svg)

    When using multiple pieces of vector art I've noticed that performance gets rather sloppy, so I created a simple test program that displays 100 copies of the same graphic and allows zooming. I used what I believe to be a fairly simple vector image (c

  • XI - FILE Scenario

    Hi everyone. In my scenario, i send a file to XI. Then i make a mapping and create another file with timestamp. Question is ... how can i create the file with the same name as the outbound file but adding the timestamp? Regards.

  • DTR: Ping on server ... returned: 401 Unauthorized

    Hi there, has anyone experienced (and solved) the following: when trying to connect to the DTR from NWDS, I get the following mesage in my Command Output: DTR: Ping on server ... returned: 401 Unauthorized Logging on via browser (http://<srv>:<port>/

  • I'm trying to add another mail account to T-bird but keep getting an "Incoming server already exists" error.

    T-bird was hanging when trying to get email from my elitemail.org account (sub-domain of Fastmail.fm) so I tried deleting the account and starting over. I "thought" I cleaned out all instances of the incoming/outgoing servers and passwords, but appar