Zombie process in HP-UX

Hi,
I can see many Zobmie process in my server, I tried to kill using "kill -9" but it's not working.
73 processes: 334 sleeping, 20 running, 219 zombies
Cpu states:
CPU LOAD USER NICE SYS IDLE BLOCK SWAIT INTR SSYS
0 1.23 20.7% 0.0% 6.2% 73.1% 0.0% 0.0% 0.0% 0.0%
1 1.26 87.5% 0.0% 2.2% 10.4% 0.0% 0.0% 0.0% 0.0%
avg 1.24 54.1% 0.0% 4.2% 41.7% 0.0% 0.0% 0.0% 0.0%
Memory: 7472208K (4396764K) real, 10601924K (6056332K) virtual, 12538532K free Page# 1/17
CPU TTY PID USERNAME PRI NI SIZE RES STATE TIME %WCPU %CPU COMMAND
0 ? 37 root 152 20 14432K 14432K run 58:54 0.96 0.96 vxfsd
1 ? 5103 oracle 183 20 32K 32K zomb 0:00 0.83 0.83 perl
1 ? 12908 oracle 182 20 32K 32K zomb 0:00 0.83 0.83 perl
1 ? 19125 oracle 182 20 32K 32K zomb 0:00 0.83 0.83 perl
1 ? 23338 oracle 183 20 32K 32K zomb 0:00 0.83 0.83 perl
1 ? 4207 oracle 183 20 32K 32K zomb 0:00 0.78 0.78 perl
1 ? 5097 oracle 182 20 32K 32K zomb 0:00 0.78 0.78 perl
1 ? 12933 oracle 182 20 32K 32K zomb 0:00 0.78 0.78 perl
1 ? 19094 oracle 182 20 32K 32K zomb 0:00 0.73 0.73 perl
0 ? 19281 oracle 182 20 32K 32K zomb 0:00 0.73 0.73 perl
0 ? 23333 oracle 182 20 32K 32K zomb 0:00 0.73 0.73 perl
0 ? 23341 oracle 182 20 32K 32K zomb 0:00 0.73 0.73 perl
0 ? 29699 oracle 182 20 32K 32K zomb 0:00 0.68 0.68 perl
1 ? 12077 oracle 182 20 32K 32K zomb 0:00 0.64 0.63 perl
Solution: Find the PPID and kill it.
ps -el | grep 'Z'
find the PPID of the Zombie and kill. Rest of all the zombie got killed.
Thanks
KSG
Solution found.

As Joel said.
A parent process receives a signal when one of its child processes terminates. When the parent process does not exist, the signal cannot be processed.
The kernel then keeps the basic process identifier struct of the child in memory (not very large) - after unloading the actual child process from the kernel.
The child process no longer exists. Except for the tiny process identifier struct in the process list table of the kernel.
Thus the name zombie process. Process is dead (no longer loaded). Nor can it be killed. The identifier in the process listing can only be cleared with a kernel reboot afaik.
Why exactly the Unix kernel behaves this way, I cannot recall... but there are some or another technical explanation for it.

Similar Messages

  • Zombie Process in the Database.

    Dear All,
    Zombie Process in the Database.
    Please help in the above thread.
    Thanks in Advance.

    884476 wrote:
    We are using 10g database with a JAVA based application. Our DBA team is complaining that there are lot of Zombie processes getting created in DB, which is consuming large CPU.Whether a zombie process consumes CPU is debatable - and depends on the definition of a zombie process.
    [oracle@csfproddb ~]$top
    top - 07:36:00 up 117 days,  3:25,  0 users,  load average: 0.19, 0.18, 0.10
    Tasks: 222 total,   3 running, 204 sleeping,   0 stopped,  15 zombie
    Cpu(s): 12.0%us,  1.0%sy,  0.0%ni, 82.0%id,  4.9%wa,  0.0%hi,  0.1%si,  0.0%st
    Mem:   8176308k total,  8129636k used,    46672k free,   136236k buffers
    Swap: 10241428k total,    99300k used, 10142128k free,  7044488k cached
    oracle    2341  4284  0 Jan31 ?        00:00:00 [zip] <defunct>
    oracle    2342  4284  0 Jan31 ?        00:00:00 [zip] <defunct>Defunct processes are child processes that terminated. The process image in the kernel for that process is no more. It no longer exists. It cannot consume CPU.
    The reason for still seeing that process via the process listing table in the kernel, is a parent process issue.
    When the child process terminates, the kernel sends a signal to the parent process to inform the parent of that. A defunct child process means that the parent process has not (yet) acknowledge that signal. And until it does, the child process entry will remain in the process table.

  • Zombie processes workaround

    I’m developing an HTML/JS application on an XP SP3
    machine with the latest version of the Air runtime and SDK. ADL
    regularly and randomly stays in memory after the application
    terminates. Worse than that, the packaged application acts the same
    way. When the application is executed 5 times, at least 2 instances
    stay in memory forever and have to be killed manually through the
    Task Manager.
    I reproduced the problem with the “hello world”
    application described in chapter 5 of “Developing Adobe Air
    1.5 applications with HTML and Ajax”, and by clicking on the
    window’s close button.
    I also tried 2 other ways to close “hello world”:
    1)
    “air.NativeApplication.nativeApplication.exit()”
    2) “window.close()” with
    Nativeapplication.autoExit = true .
    Same result.
    I finally found a workaround: working with 2 windows.
    The main window (test.html) displays nothing. Its visibility
    property is set to false in the xml descriptor file. The other
    parameters remain unchanged.
    <initialWindow>
    <content>test.html</content>
    <title/>
    <systemChrome>standard</systemChrome>
    <transparent>false</transparent>
    <visible>false</visible>
    <minimizable>true</minimizable>
    <maximizable>true</maximizable>
    <resizable>true</resizable>
    </initialWindow>
    Here is the contents of test.html:
    <html>
    <head>
    <script src="lib/air/AIRAliases.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    var html2;
    function loading() {
    var initOptions = new air.NativeWindowInitOptions();
    var bounds = new air.Rectangle(10, 10, 600, 400);
    html2 = air.HTMLLoader.createRootWindow(true, initOptions,
    true, bounds);
    var urlReq2 = new air.URLRequest("test2.html");
    html2.load(urlReq2);
    html2.stage.nativeWindow.activate();
    function exit() {
    html2.stage.nativeWindow.close();
    window.close();
    var app = air.NativeApplication.nativeApplication;
    app.addEventListener(air.Event.EXITING, exit);
    </script>
    </head>
    <body onload="loading();">
    </body>
    </html>
    The second window is the real working window and displays the
    “hello world” message. It intercepts the closing event
    generated by the close button and send an exiting event handled by
    the main window. When the main window receives the exiting event,
    it closes the second window, close itself and terminates the
    application as Nativeapplication.autoExit is true by default.
    Contents of test2.html
    <html>
    <head>
    <script src="lib/air/AIRAliases.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    function closing() {
    var exitingEvent = new air.Event(air.Event.EXITING, false,
    true);
    air.NativeApplication.nativeApplication.dispatchEvent(exitingEvent);
    window.nativeWindow.addEventListener(air.Event.CLOSING,
    closing);
    </script>
    </head>
    <body>
    Hello World
    </body>
    </html>
    Now, I have no more zombie processes. ADL and the packaged
    application always terminate gracefully.
    Did other people encounter the same problem ? Is there
    another way to solve it?

    Working in Flash here, so the syntax is a little different,
    but perhaps manually adding a close event listener to the main
    window would work?
    I've had some luck using the following code which simply
    attaches an exit instruction to the window close event for the main
    window... however, the underlying assumption that the main app
    window is always index 0 troubles me.
    --- Code below (Flash CS4) ---
    NativeApplication.nativeApplication.openedWindows[0].addEventListener(Event.CLOSE,
    shutdown);
    function shutdown(e:Event) {
    trace("Main window closed; shutting down");
    NativeApplication.nativeApplication.exit();
    }

  • Zombie-Process in DBACOCKPIT

    Hi experts,
    yesterday we had a host problem had to restart a System.
    Since this, we are facing an hanging DB-process in DBACOCKPIT.
    In OS I can't find the process.
    Also it is not a zombie on OS-Level.
    However, this is now an open transaction and therefore Log-Backup is not running.
    Can anybody please help me, how I can get out this process of dbacockpit?
    In sm51 I can't see the process, as said also not on OS level.
    Kind regards

    Hello Hermanth,
    maybe you can help me again.
    Now I have a similar situation on another situation.
    I had a V2-Upd Process hanging. In SM13 it was displayed as "INIT".
    I've killed the proces via SM51.
    However, I still get a very long running transaction in ASE and in DBACOCKPIT i can still see it.
    So for me it seems, like the transaction is still active and this means that now log-truncate will be done -> log full!
    The OS process which is displayed in DBACOCKPIT can also not be killed via OS (not any longer active).
    Any suggestion?
    What was it about DPMON? How can I use this`?

  • New mac book pro, Safari a zombie process on launch?

    My previous Mac book died, and I purchased a new one last week.
    I started the restore of my data, which, mistakenly, included the Library directory in my User directory.
    Now Safari will not launch, it starts up as Process not responding according to Activity Monitor.
    I've tried deleting the .plist files as suggested by similar, older posts about such events, and looked for Caches, Metadata, and plug-ins which might be at fault, but to no avail.
    I'm running OS X 10.8.2 with Safari 6.0.2 according to info on it from the apps directory.
    It of course opens fine for other users on the same Mac. I've tried copying over the Library/Safari directory from a working account contents into my directory. Still no joy.
    I'm stumped on how to remedy this. Short of creating a new account and moving all my data to it, is there anything else I should try?
    Thanks for your time.

    Read this whole message before doing anything.
    Back up all data.
    Quit Safari if it’s running. Then select
     ▹ Force Quit…
    from the menu bar. A small window will open with a list of running applications. Safari may appear in that list, even though you quit it. If so, select it and press return. Close the window.
    Step 1
    In the Finder, press the key combination shift-command-A to open the Applications folder. Select the Safari icon in that folder and press the key combination command-I to open the Info window. There’s a checkbox in the Info window labeled Open in 32-bit mode. Uncheck it, if checked. Close the Info window and the Applications folder.
    If Adobe Flash Player is installed, select
     ▹ System Preferences ▹ Flash Player ▹ Advanced
    and click Delete All. Close the preference pane.
    Hold down the option key and select
    Go ▹ Library
    from the Finder menu bar. Delete the following items from the Library folder (some may not exist):
    Caches/com.apple.Safari
    Caches/com.apple.WebKit.PluginProcess
    Caches/Metadata/Safari
    Preferences/com.apple.WebKit.PluginHost.plist
    Preferences/com.apple.WebKit.PluginProcess.plist
    Saved Application State/com.apple.Safari.savedState
    Leave the Library folder open. Try Safari again. If it works now, stop here. Close the Library folder. If you still have problems, continue.
    Step 2
    Triple-click anywhere in the line below to select it:
    rm -fr $TMPDIR../C/com.apple.Safari
    Copy the selected text to the Clipboard (command-C).
    Quit Safari again. Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal. Launch Safari and test.
    Step 3
    If Safari still doesn’t work right, quit, go back to the Finder and move the following items from the open Library folder to the Desktop (some may not exist):
    Cookies/Cookies.binarycookies
    Internet Plug-Ins
    Preferences/com.apple.Safari.LSSharedFileList.plist
    Preferences/com.apple.Safari.plist
    Preferences/com.apple.Safari.RSS.plist
    Preferences/com.apple.WebFoundation.plist
    PubSub/Database
    Safari
    (Note: you are not moving the Safari application. You’re moving a folder named “Safari.”)
    Try again. This time Safari should perform normally, but your settings and bookmarks will be lost. The default set of bookmarks will be restored. Delete them all.
    If the issue is still not resolved, quit Safari again and put all the items you moved to the Desktop back where they were, overwriting the newer ones that may have been created in their place. You don’t need to replace the files you deleted in step 1. Stop here and post again.
    If Safari is now working normally (apart from the lost settings), look inside the “Safari” folder on the Desktop for a file named “Bookmarks.plist”. Select
    File ▹ Import Bookmarks
    from the Safari menu bar. Import from that file. Recreate the rest of your Safari settings. You can then delete the items you moved to the Desktop.
    Note: This step will remove your Safari Extensions, if any, and their settings. If you choose to restore them, do so one at a time, testing after each step to make sure you haven’t restored the problem.
    If you don’t like the results of step 3, you can undo it completely by quitting Safari and restoring the items you moved or deleted in that step from your backup, overwriting any that were created in their place.

  • Only a "zombie" process appears when Firefox is launched for the first time.

    When I launch Firefox, only Firefox process appears in the Task Manager. Firefox window does not appear at all. When I launch Firefox for the second time, Firefox window appears normally and there are two Firefox processes in the Task Manager.
    While writing this story, I have two Firefox processes in the Task Manager:
    firefox.exe *32 Jussi 01 102 540K Firefox <= the second process
    firefox.exe *32 Jussi 01 1432K Firefox <= the first process
    Why doesn't Firefox start at the first attempt?
    The procedure repeats every time I try to launch Firefox.

    A possible cause is security software (firewall,anti-virus) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls

  • How to stop/cancel Process Chain in BI 7.0

    Hi,
    Could you tell me how to stop/cancel a process chain that hangs with status yellow or green in BI 7.0? There was an easy option to do it in 3.x, but I cannot find a similar option in 7.0.
    What happens is that at random our process chains hang at a certain variant with either yellow or even green status and do not proceed further. What happens is that in a couple of hours another pchain run occurs and it executes fine. Then again at random (might be the same day or the next day) the process chain hangs again. I think that all those "hanged" pchains pile up in the queue, so that it cause other future pchains to hang as well at some point. So, is there anyway to stop/cancel these zombie process chains when it stops at a particular event RSPROCESS in BI 7?
    Thank you,
    AG
    Message was edited by:
            AG

    Hi Frank,
    Thanks for your reply. I have a few questions.
    1)SM37 -->Kill Job
    We cannot do that because the job has already finished.
    2)SM50/sm66- ->Kill process
    There are no hanged processes to kill
    3)RSPC>Job Log>Make the process RED forecefully
    How do you do that exactly?
    4)RSPC>Process chain> main Menu"Remove from Scheduling"  OR
    5)se37-->RSPC_API_CHAIN_INTERRUPT
    give RFC BW system name(technical) and process chain name(technical) - we can do this,  but what exactly would it accomplish. Would it remove the process chain from any runs in the future or also any hanged ones in the past? An how is this step different from #4?
    Thank you,
    AG

  • "Adobe Premiere Pro.exe" process does not terminate on application exit

    Hello,
    I just started using Premeire Pro CS5 on my Windows 7 64 machine and noticed that if I create an new project or open an existing project and then exit Permeire Pro the process is left running consuming CPU resources and memory until I manually kill it through task manager.  I don't get any errors and the application looks like it is terminating normally.  If I just open Premiere and hit the exit button without opening or creating a project the process terminates successfully. A new process is created every time I open Premiere.  If I don't terminate them they pile up and each one is reported to consume the exact same amount of CPU resources.  The software seems to be working fine other than that but it is a pretty big issue and I am glad that I have a CPU monitor on my desktop otherwise I would not have noticed the zombie processes until my system started to show signs of stress.
    Any ideas?
    Thanks,
    Andrew

    This was posted and mostly answered in another forum, and the issue has been determined to be drivers.
    Others have this issue and the two main items to check are the audio  and video drivers. I am using a Toshiba Qosmio, so rather then using the  Toshiba video drivers I installed the latest Nvidia drivers from the  Nvidia site (not the supplied Toshiba drivers) and it then worked  correctly. Others had reported issues around audio drivers written by  system manufacturers and not the hardware manufacturers.
    So in summary, is not a great answer because it means you have to fiddle  around with the drivers. Figure out exactly what video and audio  hardware you are running and install the drivers directly from the  people that make it, not the people that sold you the system.
    Since you  are configuring at that level I highly recommend getting the latest BIOS  update for the system too. My system has been out for over a year and a  BIOS release that just came out brightened the screen and now it's like  a new display and the colors are more accurate. Just don't goof during a  BIOS update.
    And there you have it.

  • ITunes Process is Unkillable in Task Manager

    If I launch iTunes right after opening Windows 8 it will run. If I close it during a Windows session it will not restart. When I look at Task Manager when iTunes is running, it shows iTunes as a running application. When I close iTunes, it disappears from the Apps area and reappears as a Background Process. Because it is not a Background Process, it won't reopen because Windows sees it as already running. End Task has no effect on it whatsoever. These are also known as Zombie processes. With iTunes process continuing to run, this has caused other associated problems such as often having to do a hard shutdown by pressing the power button, or if the machine went to sleep with iTunes running, Windows won't wake up without my first having to again do a hard shutdown. Posts on the net have explained that I/O threads are not being properly terminated in the kernel during the shutdown sequence. Taskkill /f from the command prompt also has no effect. As there are others who have reported this issue with iTunes and other software in Vista, Win7 and Win8, however, this user pool is not huge, I expect it has to do with a conflict with another driver or service. I have tried disabling Bonjour and any other Apple accessory I could find to no avail. I tried using Windows Driver Verifier, but on setting it up, it promptly crashed my machine on reboot. While I don't expect a straightforward fix, I would appreciate any leads any tech savvy users might have on how to track down the issue.
    Toshiba Satellite L755D
    AMD A6
    8gb memory
    Windows 8

    What version iTunes?
    Is Norton, McAfee, ZoneAlarm, etc blocking iTunes?
    Check this out
    http://docs.info.apple.com/article.html?artnum=302538
    Using MSCONFIG to troubleshoot conflicts in Windows

  • What is the 'U' state in process listings from 'ps'

    Argh argh argh argh argh.
    Right.
    So I am using two Mac OS X Server 10.3.9 boxes (xServes) as backup machines, one for an office and one for a colo site. Work great with some custom scripts to do the heavy lifting, and it all calls rsync, which works like a champ. Except twice now, the backups have finished copying all the files, and then the last rsync (the big one) hasn't exited properly. Or, rather, it hasn't exited at all. If I do a 'ps', it appears in the process listing with a status of 'U', which isn't even listed in the manual page for ps.
    rsync 1 has a parent of my backup script
    rsync 2 has a parent of rsync 1
    rsync 3 has a parent of rsync 2
    If I kill rsync 1, nothing happens. If I kill -HUP rsync 1, nothing happens. If I kill -9 rsync 1, NOTHING HAPPENS.
    If I kill rsync 2, rsync 3 dies. If I kill -HUP rsync 2 (after rsync 3 is gone), nothing happens. If I kill -9 rsync 2, it turns into a zombie process.
    I don't know what happens if I kill rsync 3.
    If I kill the parent process to rsync 1, I don't get any of the useful information about what went wrong and what didn't in my backups. The frustrating thing is, before it got into this wedged position, it FINISHED EVERYTHING. So I'm getting notifications that my backup didn't work, when it did, and not getting notifications of the two (minor) errors that DID occur.
    Sometimes I hate computers.

    Adam,
    it mean that the process is in the kernel, and waiting on some event. And is ignoring any interruptions like signals. Which is the kill command isn't getting the processes attention. It's possible that the process may resume at some point or not. if the process doesn't switch back to a user context, then the only way to get rid of the it, and thus free the resources that it's using, would be a system reboot.
    Andy
    from the ps(1) manpage.
    state The state is given by a sequence of letters, for example,
    ``RWNA''. The first letter indicates the run state of the
    process:
    I Marks a process that is idle (sleeping for longer than
    about 20 seconds).
    R Marks a runnable process.
    S Marks a process that is sleeping for less than about 20
    seconds.
    T Marks a stopped process.
    U Marks a process in uninterruptible wait.
    Z Marks a dead process (a ``zombie'').

  • Large number of FNDSM and FNDLIBR processes

    hi,
    description of my system
    Oracle EBS 11.5.10 + oracle 9.2.0.5 +HP UX 11.11
    problem : ther are large number of FNDSM , FNLIBR and sh processes during peak load around 300 , but even at no load these processes dont come down , though oracle processes
    come down from 250 to 80 but these apps processes just dont get killed automatically .
    can i kill these processes manually??
    one more thing , even after stopping apllications with adstpall.sh , these processes dont get killed , is it normal??, so i just dismount database so as to kill these processes
    and under what circumstances , should i run cmclean ?

    Hi,
    problem : ther are large number of FNDSM , FNLIBR and sh processes during peak load around 300 , but even at no load these processes dont come down , though oracle processesThis means there are lots of zombie processes running and all these need to be killed.
    Shutdown your application and database and take a bounce of the server as there are too many zombie processes. I have once faced the issue in which due to these zombie process CPU utilization has gone to 100% on continuous count.
    Once you restart the server, start database and listener run cmclean and start the application services.
    one more thing , even after stopping apllications with adstpall.sh , these processes dont get killed , is it normal??, so i just dismount database so as to kill these processesNo it's not normal and should not be neglected. I should also advice you to run the [Oracle Application Object Library Concurrent Manager Setup Test|https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=200360.1]
    and under what circumstances , should i run cmclean ?[CMCLEAN.SQL - Non Destructive Script to Clean Concurrent Manager Tables|https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=134007.1]
    You can run the cmclean if you find that after starting the applications managers are not coming up or actual processes are not equal to target processes.
    Thanks,
    Anchorage :)

  • Lsregister multiple processes

    I have an early intel xserve running 10.4.11
    It is sharing one directory via SMB to a number of windows users
    when each user makes a connection to the system a smb process is created in the process list
    it also creates another process, as follows:
    /System/Library/Frameworks/ApplicationServices.framework/Frameworks/LaunchServic es.framework/Versions/A/Support/lsregister -seed
    This secondary process gets left in the process table even if the original smb process is closed
    Eventually the system runs out of processes.
    what is causing these "zombie" processes to start and how can I stop it from happening
    TIA
    Tony

    It is not a requirement - it is simply a way of modularizing - just like how any piece of code can call other pieces of nested codes.
    Srini

  • defunct process when stop and start web server

    Dear all,
    I am using Sun One Web Server 6.1 SP6. When i try to stop and then start the web server. The <defunct> process is generated (his parent PID points to webservd).
    The following is the result:
    1st stop and start the web server (defunct process is generated)
    2nd stop and start the web server (defunct process disappears)
    3rd stop and start the web server(defunct process is generated)
    4th stop and start the web server (defunct process disappears)
    Here is my magnus.conf
    ServerID www
    ServerName www.abc.edu.hk
    ErrorLog /i03_01/SUNWwbsvr616/https-www/logs/errors
    PidLog /i03_01/SUNWwbsvr616/https-www/logs/pid
    User nobody
    DNS off
    Security off
    ClientLanguage en
    AdminLanguage en
    DefaultLanguage en
    RqThrottle 512
    StackSize 131072
    Init fn="load-modules" funcs="caspreq,caspinit,casptrans" shlib="/i03_01/casp/module/sunos5_optimized/netscape_6.x/nes_casp2.so"
    Init fn="caspinit" casplib="/i03_01/casp/asp-server-3078"
    Init fn="load-modules" funcs="htaccess-init,htaccess-find" shlib="/i03_01/SUNWwbsvr616/plugins/htaccess/htaccess.so"
    Init fn="htaccess-init"
    Init access="/i03_01/SUNWwbsvr616/https-www/logs/access" format.access="%Ses->client.ip% - %Req->vars.auth-user% [%SYSDATE%] \"%Req->reqpb.clf-request%\" %Req->srvhdrs.clf-status% %Req->srvhdrs.content-length% \"%Req->headers.referer%\" \"%Req->headers.user-agent%\"" fn="flex-init"
    Init fn="load-modules" shlib="/i03_01/SUNWwbsvr616/bin/https/lib/libj2eeplugin.so" shlib_flags="(global|now)"
    TempDir /tmp/https-www-61c30017
    # Load modules for PHP
    Init fn="load-modules" funcs="php4_init,php4_execute,php4_auth_trans" shlib="/i03_01/SUNWwbsvr616/bin/libphp4.so"
    Init fn="php4_init" LateInit="yes" errorString="Failed to initialize PHP!" [php_ini="/i03_01/SUNWwbsvr616/https-www/config/php.ini"]
    # Enable statistics
    Init fn="stats-init" update-interval="5" virtual-servers="100" profiling="yes"
    any ideas? Thank

    - which OS & version are you running into this issue ?
    - By definition, defunct processes (or zombie processes) are processes that have exited prior to it's parent calling a wait() on it to get the return status .
    - couple of things I can think of to narrow down the cause of this issue
    1. disable ASP & php plugins and see if this still causes this issue
    2. try starting the web server with log level to finest and see fi you get any useful information from the server error logs
    hope this helps

  • [SOLVED] Arch Linux is zombie infested !!!

    Sigh !
    I don't know what happened but a few minute before when I rebooted my Arch Linux desktop, it started acting weird.
    First thing I do is to start my torrent client Deluge, look there was no icon in the tray for it but it was shown in System-monitor.
    Then I started Firefox, a few minute later the whole thing logged off. I renter my password and then again it logged of within one minute.
    So I rebooted to see if that changes this time, but this time I could see was that firefox was shown as ZOMBIE process and then when I tried to take the screenshot the system hanged
    Some thing I did today was
    Installed Yaourt
    Then installed nautilus-dropbox plugin
    Dropboxd service runs in background, so is there something fishy about the dropbox service. I tried to kill it but it again restarts.
    Please help me from zombie infestation, I am writing this from Ubuntu
    Last edited by visio159 (2008-09-14 08:41:47)

    No one replied !!! huh
    Well good news is that my RAM module needed a dust cleanup. Probably due to corrupt memory it was behaving bad.
    I am impressed that it (linux) logged me off when it detected that there were memory violation and corruptions to prevent any data damage ! Now can anyone explain this to me ? Is it really a feature or was just random occurring ?
    Case solved, learned a lesson too.
    Last edited by visio159 (2008-09-13 05:44:10)

  • KDE autostart making zombies?

    Anything that KDE autostarts -- whether it's a script in the autostart folder or if it's restoring a session -- ends up as a zombie process. I think this started after I updated last Saturday (2/28). I don't really understand what's going on, and it's kind of irritating because KDE doesn't seem to be able to shut itself down anymore. That is, I've been shutting down via 'sudo halt'. Any suggestions would be appreciated.

    bash

Maybe you are looking for