The 'JobServerChild.exe' processes with ID '6632' has been running on this

Hi team,
Automated tiket is being generated for the below following issue.
can any one suggest me how to move forward to solve the issue
The Windows Process Monitor script has determined that the 'JobServerChild.exe' processes with ID '6632' has been running on this computer for longer than the maximum acceptable time of 18000 seconds (5 hours).
Thanks
Murthy

Hi Murthy,
It sounds as though you have a schedule which is long running or the jobserverchild.exe process has become orphaned.
If you check with the Instance Manager you chould be able to see if any schedules are taking much longer than usual. The Task Manager on the XI3.1 server will also show you if any jobserverchild.exe processes are hung i.e. not consuming any CPU\memory - once located you can kill the process.
I would also recommend that you apply the -type OUTPROC switch on the Job Servers to ensure that in future the jobserverchild.exe processes are killed upon completion of the schedule task.
I hope this is a very helpful answer to you.
Kind regards,
John

Similar Messages

  • The maximum report processing jobs limit configured has been reached -Error

    I have Created a common page that has a CrystalReportViewerControl (name of this page is ShowReport.aspx). The report name and database name that required for the report is being passed in a querystring. The database connection info is being pulled from the web.config file. All of the reports that I am dealing with have dynamic parameters and the Crystal Prompt page is automatically being created by the crystal viewer for these. Everything in my application is working fine except that when I try to access any report for the 76th. time I get the following error "The maximum report processing jobs limit configured by your system administrator has been reached."
    I have already researched this error and am aware that the PrintJobLimit can be modifed to increase this limit or can be set to -1 if we need to allow unlimited connections. However doing this is not an option due to the degradation of server performance.
    The other option that I have tried is to make sure I close and dispose of the report document object on the Page_unload or the page_SavedStateComplete() however on doing so even the session variable that I am using to store the originally created reportdocument is loosing all of the values it requires to display the report. The session variable is still available i.e. it is still of type report document but it has no values for any of the properties like FileName, database etc , basically for all of those properties it show an error "Invalid File Path" when viewed in debug mode.
    I have already tried several approaches but with no luck. Every single time I close the originally created ReportDocument object I loose all the required values in the Session
    I am using Crystal Report XI R2 , .Net 2.0 and ASP.net
    Following is the code: (Any help will be highly appreciated) Thanks:
    Option Strict On
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Imports System.Data.SqlClient
    Imports System.IO
    Partial Class _ShowReport
    Inherits System.Web.UI.Page
    Private FechReport As ReportDocument
    Dim strSelectedDatabase As String
    Dim strReportsFolderPath As String =
    System.Configuration.ConfigurationManager.AppSettings("ReportsFolderPath").ToString()
    Dim strReportFileName As String
    Dim strReportFullPath As String
    Dim iInsertedLogId As Integer 'This variable is used to store the inserted log id for the executed report.
    Dim strConnString As String = System.Configuration.ConfigurationManager.AppSettings("ConnString").ToString()
    Dim strServerName As String = System.Configuration.ConfigurationManager.AppSettings("CR_ServerName").ToString()
    Dim strUserName As String = System.Configuration.ConfigurationManager.AppSettings("CR_UserName").ToString()
    Dim strPassword As String = System.Configuration.ConfigurationManager.AppSettings("CR_Password").ToString()
    Protected Sub Page_OnSaveStateComplete(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.SaveStateComplete
    If IsPostBack Then
    If iInsertedLogId > 0 Then
    UpdateReportLog_ReportServedTime(iInsertedLogId)
    If Not FechReport Is Nothing Then
    FechReport.Close()
    End If
    End If
    End If
    End Sub
    Sub Page_Unload(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Unload
    If Not FechReport Is Nothing Then
    'FechReport.Close()
    'FechReport.Dispose()
    'GC.Collect()
    End If
    End Sub
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    Dim sRptFileName As String
    If Request.QueryString("database") "" Then
    strSelectedDatabase = Request.QueryString("database")
    Else
    Response.Write("A Valid Database has not been supplied to this page")
    Response.End()
    End If
    If Request.QueryString("ReportFileName") "" Then
    strReportFileName = Request.QueryString("ReportFileName")
    strReportFullPath = strReportsFolderPath & strReportFileName
    Else
    Response.Write("A Valid Report has not been supplied to this page")
    Response.End()
    End If
    sRptFileName = strReportFullPath
    If Not IsPostBack Then
    FechReport = New ReportDocument
    If Not FechReport Is Nothing Then
    ShowReport(sRptFileName)
    End If
    Else
    If (Session("oReportDocument") Is Nothing) Then
    FechReport = New ReportDocument
    ShowReport(sRptFileName)
    Else
    'FechReport = New ReportDocument
    'FechReport = CType(Session("oReportDocument"), ReportDocument)
    myCrystalReportViewer.ReportSource = Session("oReportDocument")
    'myCrystalReportViewer.ReportSource = FechReport
    End If
    End If
    End Sub
    Public Function ShowReport(ByVal strReportFileName As String) As Boolean
    Dim blNoErrors As Boolean = True
    Dim crDatabase As Database
    Dim crTables As Tables
    Dim crTable As Table
    Dim crTableLogOnInfo As TableLogOnInfo
    Dim crConnectionInfo As ConnectionInfo
    FechReport.FileName = strReportFileName
    myCrystalReportViewer.ReportSource = FechReport
    crConnectionInfo = New ConnectionInfo()
    With crConnectionInfo
    .ServerName = strServerName
    .DatabaseName = strSelectedDatabase
    .UserID = strUserName
    .Password = strPassword
    End With
    Try
    crDatabase = FechReport.Database
    crTables = crDatabase.Tables
    For Each crTable In crTables
    crTableLogOnInfo = crTable.LogOnInfo
    crTableLogOnInfo.ConnectionInfo = crConnectionInfo
    crTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    Catch ex As Exception
    Response.Write(ex.Message & ControlChars.NewLine & ex.InnerException.ToString & ControlChars.NewLine)
    Exit Function
    End Try
    Session("oReportDocument") = FechReport
    'FechReport.Close()
    'FechReport.Dispose()
    'GC.Collect()
    Return blNoErrors
    End Function
    End Class

    I have looked into Caching the report document as well. However, as you mentioned in the post it, it will only be usefull when the DB and the report parameters remain the same which is not the case in our application. We have multiple identical databases and hundreds of reports. Our users have the option of using a combination of any database and any reports, each report having numerous parameters.
    Since one user can only access one report at a time. i do have cleanup code that removes the session variable used to store the reportdocument object in the page that is initially used to call the ShowReport.aspx page.
    I understand now that the CR.net SDK is only good for light reporting only. Unfortunately when we started development based on all of the articles that I gathered, I didn't anticipate running to issues like this. But I guess that's the nature of the business :-).  And hence there are people like you who go out of the way to answer these difficult questions.
    Regards,

  • When I close Firefox, the window closes but the Firefox.exe process and Plug-in Container remain running in the background and have to be shut down using Windows Task Manager.

    This happens frequently. Something in Firefox continues to run even when the program is closed. The process has to be stopped before I can open Firefox again.

    Thanks. Closing with File/Exit instead of the X closes Firefox properly. AT LAST! A solution!

  • The RemoteFX Manager process stopped working and has been restarted

    I'm seeing the above warning in the Event Log of a new Hyper-V Server 2012 R2 installation but can't find any information on what's causing it.
    It references a VM that seems to be working fine and continues to log the same event even when the VM is shutdown.
    The VM did have a RemoteFX GPU assigned to it but I've tried removing that as well but still no reduction in the Events being logged.
    Anyone got any ideas?
    Cheers for now
    Russell

    Hi Russell,
    Fist of all ,please ensure that the VMs are enterprise edition win8/8.1 or win7 with RDP8.0 update if you want to use RemoteFX VGpu .
    please refer to following link :
    http://blogs.msdn.com/b/rds/archive/2012/11/26/remotefx-features-for-windows-8-and-windows-server-2012.aspx
    I assume that all VMs are Ent and just one VM with that issue.
    For troubleshooting please try the items below :
    a. remove the VGPU from the problematic VM
    b. create a new VM add VGPU for it to check whether the log will arise
    If the issue do not persists , please try to focus on the VM system (mabe you need to check the integration serive version )
    If the issue still arises please try to update the driver for physical GPU .
    Hope it helps
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • I just received an alert on my iPhone and Macbook that the iMessage account associated with my email has been set up with "iPad" I do not own an iPad. Can i look up all devices using my iMessage account?

    Help Guys!! I want to figure out who this is before I reset everything.

    There's no way you can access that information.  Not even sure if Apple could.

  • HI GEETING THE FOLLOW ERROR WHEN USING SFARI. HAS ANYONE RUN ACROSS THIS?

    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread

    re-intall safari...... or download google chrome, its free, way faster, and is very effective and easy to use

  • After rebooting my Windows Vista 64 bit system, could not access iTunes; after uninstalling I tried reinstalling, but it has been running for more than 24 hrs. Should I cancel installation?

    I had been updating my Windows Vista 64 bit system and as a result of a problem, had to reboot my system. Afterwards, I was no longer able to access iTunes.  I got a message stating that there was a problem with some of the files associated with the application.  A phone rep at Apple's Customer Service provided me with emails linking instructions on completely uninstalling and reinstalling iTunes. I did the uninstall, then checked for lingering iTunes files and couldn't completely remove some, but tried intalling the latest version of iTunes. It has been running for roughly 24 hours.  The status bar is green all the way across, and when I try to cancel, I get the following message: "Are you sure you want to cancel iTunes installation?"  I keep hitting "no," but am staring to wonder if there is a problem with the install.  Should it take this long if I have roughly 134 gigs of music?  I can still see the music in my computer's C drive, so I am worried that there is an error, perhpas because I didn't clear out all the lingering C:\Program Files\Common Files\Apple\ and all the lingering C:\Program Files\iTunes\.  Any thoughts?

    It is not just the HP. I have 3 HP computes and 2 Dell computers. 2 of the HP and 1 Dell suffer the iTunes internet block. Took me a while to figure it out also. But, the one thing that is different on the Dell, is that I can leave iTunes installed and not open it and everything works. As soon as I open it, internet access goes down. BUT secure sites (https:) works fine.

  • BI  Error Logical system name has been changed for this system

    Hello All,
    I have installed the BI system and did a client copy from 000 to 200 client with profile SAP_ALL.
    Now I have loged into the system with client 200 and wen I run RSA1, I am getting the following error
    message: "Logical system name has been changed for this system"
    Thanks
    Sekhar..

    Hi,
    Goto tcode SCC4.
    Switch to change mode. (System will prompt that this table is cross client. Continue)
    Select your client (in this case 200). Click on details button (next to change mode button)
    Enter the proper logical system name in Logical system field.
    Click on Save button.
    Then try RSA1.
    Hope it helps
    regards,
    Pruthvi R

  • I have Lookout 6.5 running with Windows 7, the process has been running for about 2 months with no problems, but today the Citadel stopped working! I am having a hard time getting it started again, need help!

    I have Lookout 6.5 running with Windows 7, the process has been running for about 2 months with no problems, but today the Citadel stopped working!
    How could this have happened and what can I do to get it running again? 

    Didnt realize there was a response, late getting back to you.
    Save your process files outside of the NI progam directory (you should have external backups already right ).  THey should not be deleted.
    Any customizations to the lookout.ini and lookout.sec file may be lost.  
    Mike
    Forshock - Consult.Develop.Solve.

  • Need to restart the explorer.exe process virtually every single time I need to access a file

    As the subject/title says.
    This is on my replacement ThinkPad W530 which replaced my previous T530. I had my T530 from about April until earlier this week when it was picked up. The T530 gave me nothing but problems, including, but not limited to:
    Constant stalling of everything on the laptop with no mouse movement
    An out of the blue nonfunctioning microphone mute button and fingerprint reader a few weeks after I had the T530's motherboard replaced (because of the stalling issue)
    Every hour or so, I would get successive blackouts of the screen that were about 3-5 seconds apart. Sometimes they would reset the maximisation of the windows I had open
    But I digress; those were issues with my previous ThinkPad. Now the major standout issue I have with my W530 is that pretty much any time I want to access a file, I have to close and restart the explorer.exe process. This results from:
    Not being able to access folders or folder shortcuts on my desktop
    Not being able to use anything on my taskbar including the start menu. This includes hitting the windows key
    NOTE: this is an issue with WINDOWS explorer and NOT INTERNET explorer, which one member of your support team was not able to distinguish - this person tried to direct me to WiFi troubleshooting.
    The only way I have been able to remedy this has been to use task manager to reset it.
    In addition, you would expect a W530 with an i7-3740QM and an Nvidia K2000M Quadro to be pretty much buttery smooth, especially considering it's about 2 weeks old, right? Far from it. This is the slowest excuse for a new laptop that is this well spec'd I have ever used.
    I have done factory resets and pretty much everything under the sun within the realms of the Lenovo periperhal programs to try to remedy it (so as to not void my warranty) to no avail.
    If this problem cannot be fixed without me going well out of my way, then I am demanding a refund. Your support team, whilst generally helpful and *usually* knowing what they are talking about, have not been a help, and have honestly just been another hurdle to get past so I can get my money back. I do applaud them for the willingness to sit and walk people through everything.
    If this is the price I pay for the reliability of a Lenovo ThinkPad, then I greatly look forward to the glorious day I can be rid of Lenovo from my life and making about $500 while I go buy an equivalently or better spec'd laptop from quite literally any other computer company on the planet.

    What operating system are you running? I assume they had you install the latest BIOS. True? If it were mine, I would suggest forcing it to use integrated graphics (in the BIOS) to rule out a problem with the NVidia driver.

  • Firefox does not open when clicking on the icon, the firefox.exe process consumes 99 % of the CPU and my computer runs slowly.

    I have been a happy user of Firefox for many years. Around last April first I opened Firefox and was offered an update to v 4.42.0.0 which I accepted. Installation seemingly went well. I forget now exactly what happened but the result has been that ever since April 1 I haven’t been able to open the Firefox browser when clicking on the Firefox icon. My computer now was running very slowly. I tried to uninstall Firefox, but a popup told me I couldn’t because Firefox was in use. This confused me because I couldn’t see it being used. Only now I have found that on Task Manager processes that “firefox.exe” was consuming 99 % of the CPU. After removing firefox.exe by clicking End Process my computer ran better. I uninstalled Firefox I had on my computer and installed Firefox 5.0. Unfortunately I have the same problems: Firefox does not open when clicking on the icon, the firefox.exe process consumes 99 % of the CPU and my computer runs slowly.

    Born2die! Brilliant. I am a desktop clicker and never knew Firefox had a safe mode.
    Thank You!
    I was unable to start in safe mode initially. The second time I disabled all of the Add-Ons and she started up just fine. I enabled them one by one hoping to track down the culprit but the problem seems to have gone away.
    BTW I am running ver. 3.6.8 (in response to cor-el's earlier post) and
    Firefox is in the process of downloading 3.6.10 (which I am starting to think may have been what caused this whole problem to begin with)
    Incidentally, whats up with all of the Java Console Add Ons?
    I have:
    Java Console 6.0.11, Java Console 6.0.13, Java Console 6.0.15
    Java Console 6.0.17, Java Console 6.0.20, and Java Console 6.0.21
    What are they? Do I need them? Can I uninstall them? Is this due to using Open Office?
    Also, .NET Framework 0.0.0 Should I uninstall it?

  • How can I stop and restart the ApplePhotoStreams.Exe process on my Windows 7 computer?

    I sometimes notice my CPU utilization skyrockets and my computer fan switches to high. This happens sporadically. The process causing this is ApplePhotoStreams.Exe. It appears the process goes into some infinite loop trying to update or sync pictures. Applications on my PC slow down and the fan stays on high (which is really loud) until I cancel the ApplePhotoStreams.exe process. I can easily cancel the process using Task Manager, but then any photos I take with my iPhone do not replicate over onto my PC unless I reboot my computer.
    I'm not sure if anyone can easily tell me why ApplePhotoStreams.exe is doing this in the first place, but I would more like to know how to restart the ApplePhotoStreams.exe process after I cancel it without having to reboot my PC.

    you can download a new installer and serial number from Adobe at Adobe - CS2 Downloads

  • The Firefox.exe process hogs 25% of my CPU resources even after I've closed it.

    On a relatively consistent basis, when I close the Firefox windows I have open, the firefox.exe process doesn't end. When I go to open Firefox again later, I get the error message that I can't open Firefox because it's already running or not responding. When I look in Task Manager (on Windows 7 Home Premium 64-bit, BTW), the firefox.exe process is holding steady at 25% CPU usage along with whatever memory usage it already had consumed, even though the Tasks tab doesn't list Firefox as being open.
    == This happened ==
    A few times a week
    == I'm not exactly sure. It sort of just started on its own.

    Ed, this kind of issues are, unfortunately, more common and the we'd like. Thankfully, 99% of the cases are very easy to solve. However, you do need to diagnose what your exact problem is. Do this:
    #run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe-mode] to disable all extensions, themes and plugins. If this fixes your issues, be them with RAM or CPU usage, then you know it's a problem with plugins, themes or extensions. Proceed to number 2. If safe-mode doesn't fix the issues, then read bellow, after this list;
    #update all extensions, themes and plugins in your Firefox. If this doesn't solve the issues, proceed to the following number;
    #disable all extensions, themes and plugins in your Firefox (not running safe-mode). Being certain that, as in safe-mode, the problems you're having have gone away, enable one plugin at a time. You should be certain that you WANT that plugin to be enabled, so keep your overall number of plugins as low as possible. When you encounter the problems, you know you've found a problematic plugin, so disable it for good. Keep enabling all plugins (except problematic ones) until you've gone through them all.
    #enable one extension at a time. Again, be certain that you WANT that extension to be enabled, so keep your overall number of extensions as low as possible. Also, try the theme you want to have installed so see if that is what's causing the problem. When you encounter the problems, you know you've found a problematic extension/theme, so disable it for good. Keep enabling all your extensions (except problematic ones) until you've gone through them all;
    #you're done! You've fixed your problems with problematic add-ons. If you want to keep using those problematic add-ons, please contant their author for support.
    Ok, if disabling all extensions and plugins through safe-mode didn't work to bring Firefox's CPU and RAM usage to good levels, then you have different issue. The most likely scenario is that you have a third party software running on your computer that is messing with Firefox. Do as follows:
    #try reinstalling Firefox. No data will be lost. You can get the latest version for free at [http://www.getfirefox.com/ getfirefox.com]. If that doesn't fix the problem, proceed;
    #do a virus/malware check on your computer. If this doesn't fix it, proceed;
    #disable all software running in the background that you don't want to have running in the background (in windows, this is done by pressing WINDOWS+R in your keyboard, typing "msconfig" (without the commas) and pressing enter. Now, under the "Startup" tab, you can uncheck the software you don't want, and reboot your system for changes to take effect. If you're unsure of what software you want running, ask someone with more experience). If this doesn't fix your issues with Firefox, proceed;
    #check your firewall/antivirus/security suite for enabled functions/features that you don't want and/or may be conflicting with Firefox. You'll find that these features are most likely tied to Internet Security features, such as link scanners or URL checkers and the like. If you're not sure they are conflicting with Firefox, simply try to disable them to see whether or not that's true. As long as you don't browse the web with your antivirus completely off and your firewall completely turned off, there should be no problems. If this doesn't solve the issues, proceed to the following number;
    #check your operating system security options, mainly advanced options that are not configured by default. While it's very unlikely that this may be the cause of the problem (after all, it's the last item on the list), it's remotely possible. If this doesn't work, proceed to the following point;
    #update your modem/router software. There have been some reports that some modem/router software may cause Firefox and other browsers to loose performance and/or stability. If updating doesn't fix your issue, try other versions of the software, if possible. If you need support with this, contact your modem/router manufacturer. If this doesn't help, proceed;
    #clean up your OS registry, using appropriate software. Make sure you've followed my instructions correctly, but if this all doesn't work, [http://support.mozilla.com/en-US/kb/Managing+profiles create a new Firefox profile] (this can be temporary, of course) and see if the issues persist. Report here the results, so we can help you further.

  • TS3048 My MacBook OSX 10.6.8 detects the wireless keyboard apple A1255 but once the passkey is ask the "pairing" process stops and displays a warning saying it was unsuccessful. Bateries are new on the keyboard and it has been paired to this MacBook .

    My MacBook OSX 10.6.8 detects the wireless keyboard apple A1255 but once the passkey step show on the screen the "pairing" process stops and displays a warning saying it was unsuccessful. Bateries are new on the keyboard and it has been paired to this MacBook before. Mouse, iphone and other bluertooth devices have no problem pairing via bluetooth. Any suggestions where to look?

    I read somwhere that firefox disables certain versions of java because it might give control of your computer to other malicious websites
    I think you have to go to the java website and down load the version you need and enable it in firefox's prefrences
    Sorry I may be a veteran in using firefox, but I know very little since I hardly had problems with mozilla untill just very recently hope this helps

  • What is the jrew.exe process???

    In my oracle server\Task Manager are some jrew.exe process and these processes consume CPU.
    What is the jrew.exe process???
    Thanks!

    The jre command executes Java class files. The jrew command is identical to jre, except that with jrew there is no associated console window

Maybe you are looking for

  • What statistical methodology is used to create a trendline in numbers

    I am doing a paper and have a trendline generated by Numbers on a scatter plot, and would like to avoid confirming my 'm' and 'b' values with a least squares calculation.  Does anybody know what methodology is used in the algorithm that calculates tr

  • I need information on my bill, for the last two yrs, how do i go about looking for it

    i need information on my bill for the last two yrs, how i go about looking for it . thanks\

  • Search Package Body for Keywords

    I would like to know if anyone has a query to search a package body for a particular word and then return all of the procedure names where that word (or words) are found. I am in the beginning stages of a 3-5 year upgrade/re-write project and just wh

  • Bars or Stripes in gradient

    My slides use a subtle gradient on the background. I noticed, however, in Keynote 6.1 all my gradients are no longer smooth with gradual transitions. Instead, I see bars, as illustrated by the attached example. The bars exist in horizontal, vertical,

  • Stopping Crystal Printing Too Many Records

    I have a report in crystal.  It is showing some details held on our Case Management System.  If people merge in the template twice they end up with a set of 8 blank details in their case.  This in turn forces Crystal to print many rows for each of th