Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
5k views

windows service written in c# .NET 4 vs2010 will not install on Server 2008 R2 Enterprise

I've written many versions of windows services and installed them on a 64-Bit system with 32 GB running Server 2008 R2 Enterprise. I create the services using this recipe: ...
4
votes
2answers
1k views

Diagnosing an app that fails to halt

Our Windows app is often hanging in memory and I'm trying to use windbg to track down the problem. I'm very new to windbg and could use some advice (I have started to read Advanced Windows Debugging ...
2
votes
3answers
71 views

How do I detect that a PHP CLI script is in a Hung state

I am using supervisor (http://supervisord.org/) to daemonize a fairly standard PHP script. The script is structured something like: while (1) { // Do a SQL select // for any matching rows, do ...
2
votes
4answers
726 views

Stop reading process output in Python without hang?

I have a Python program for Linux almost looks like this one : import os import time process = os.popen("top").readlines() time.sleep(1) os.popen("killall top") print process the program hangs ...
2
votes
1answer
100 views

Finding/Handling stalled PHP scripts

I use Ajax to kick off a PHP script that can take a few hours to run. It's done asynchronously so the PHP script will complete even if the browser is closed. I need to handle any of these PHP ...
2
votes
3answers
4k views

Runtime.exec causes duplicate JVM to hang indefinitely until killed (Solaris 10)

All, We are running a J2EE application on WebLogic server 9.2 MP2 with a jrockit 64-bit JVM (27.3.1) on Solaris 10. We call use runtime.exec to call an executable called jfmerge to create PDF ...
2
votes
5answers
264 views

Debugging hung php

I have a php web application that is occasionally hanging. When I navigate to the page it will just sit there trying to load for hours, even though max execution is 210. This is an application uses ...
1
vote
1answer
347 views

Remote Get-WmiObject call fails when within Start-Job scriptblock

Alright, I've tried to figure this out, but figured it's time to ask the interwebs. I'm wondering if this is a bug or what. I'm trying to start jobs against multiple computers to determine which ...
1
vote
1answer
706 views

How do I troubleshoot hung phusion passenger process?

Every night when we run our batch jobs, passenger becomes unresponsive to http requests from customers. After a period of time it starts working again. There are no errors in the rails log, actually ...
1
vote
1answer
90 views

MySQL Query still executing after a day..?

I'm trying to isolate duplicates in a 500MB database and have tried two ways to do it. One creating a new table and grouping: CREATE TABLE test_table as SELECT * FROM items WHERE 1 GROUP BY title; ...
1
vote
1answer
1k views

Cant put Apps on IPhone any more

Couldn't register com.mycompany.clack with the bootstrap server. Error: unknown error code. This generally means that another instance of this process was already running or is hung in the ...
1
vote
2answers
538 views

Detect terminated hung application

I created a minimal debug loop which runs and debugs a process. When the process hangs and the user tries to close it, Windows gives the message box with the option to wait or end now. I would like ...
0
votes
0answers
18 views

Activity does not progress, I am lost

I am blocked with a problem in my activity which gets stop but not hung. In a certain moment, when I try a .set"something"() the activity does not progress but the apps is alive and running. This is ...
0
votes
1answer
55 views

Issue when executing asynchronous tasks using ExecutorService

I had asked a question earlier regarding ExecutorService and Apache Velocity initialization. To give a quick recap -- I have a Java EE frontend which accepts user requests and then for each of these ...
0
votes
1answer
279 views

JSch session.connect() hungs with CoreFTP

I have CoreFTP configured for localhost and the next code: JSch.setLogger(new MyJschLogger()); //class for console output Session session = jsch.getSession("user", "localhost", 21); Properties ...
0
votes
1answer
235 views

Hadoop reduce task gets hung

I set up a hadoop cluster with 4 nodes, When running a map-reduce task, the map task finishes quickly, while the reduce task hangs at 27% percent. I checked the log, it's that the reduce task fails to ...
0
votes
2answers
313 views

How can I keep gnu screen from becoming unresponsive after losing my SSH connection?

I use a VPN tunnel to connect to my work network and then SSH to connect to my work PC running cygwin. Once logged in I can attach to a screen session and everything works great. Now, after a while, ...