Re: 'Runaway' Nodemgr

Bob, and others,
Forte is now putting together a profile as the pieces are filtering in from
other
areas (thanks Bob and Peggy). Sandra and I are working together along
with Engineering to better understand this problem and working towards
identifying the cause and a resolution.
It is still very early days as we don't have very much hard evidence to go
on but we are building up a profile from other sources. At the moment
we have another reported case from a customer who appears to be having
the same type of problem. They are also running Forte 3J1 and Solaris
2.6.
After discussing this internally we have had similar problems reported on
Solaris 2.6 with Forte 3.0.G.2 but since this was not a supported or tested
combination, we could not pursue the problem at that time.
It is significant that all the information I have at the moment, is that this
only
appears to happen on Solaris 2.6. Having said that it reinforces the need
to have appropriate Solaris skills on-site and available when the test is
performed in order to get first hand information that Forte may not know
to request or be aware of.
Another suggestion would be to reconfigure the Solaris Kernel so that the
maximum per process memory allocation is set to the lowest minimum value
that allows your system to continue to run properly but alleviates the
possibility
that the memory allocated to the process goes in excess of 2GB and then
causes problems with swap space shortage, core dump file size and possible
CPU cycles in dealing with this Extreme condition.
Please let me know if you will be able to impliment these suggestions in time
for the test on Friday.
Regards,
Alain...
"Mueller, Bob" wrote:
All:
We at Concert Management Services have experienced the same
'runaway' node manager using 3.0.J.1 with Solaris 2.6. We encountered it
(inconsistently) when we stressed tested by having 8-12 people start their
Launcher Distributed icons at the same time. Forte gave us some unix
statistic grabbers (and an escript dumpstatus) for the next time we can
duplicate the problem.
Bob Mueller,--
=================================================================
~ Alain Dunand Phone: +1 (510) 986-3570 ~
~ Technical Support Fax: +1 (510) 986-2052 ~
~ Forté Software, Inc. E-Mail: [email protected] ~
~ 1800 Harrison St. http://www.forte.com ~
~ Oakland, CA 94612 Support Center: +1 (510) 451-5400 ~
=================================================================
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

On Tue, 9 Mar 1999, Alain Dunand wrote:
Another suggestion would be to reconfigure the Solaris Kernel so that the
maximum per process memory allocation is set to the lowest minimum value
that allows your system to continue to run properly but alleviates the
possibility
that the memory allocated to the process goes in excess of 2GB and then
causes problems with swap space shortage, core dump file size and possible
CPU cycles in dealing with this Extreme condition.We at Lufthansa Systems Hungary have problems like this, I simply put user
limits on the shell of the user which runs the nodemanager.
I have set the maximal available virtual memory to 256M. Since then we had
no operating system crashes caused by Forte. (our machine has about 2G of
virtual memory)
Sometimes (we made no researches in the subject yet) we have processes,
which allocate all the possible memory (but no more than allowed, to be
killed by the OS). We kill them manually now, if encountered. They also
occupy all the cycles of one processor.
The processes are always service objects running on the server node.
Hope this helps.
Best regards,
GA'BRIEL, A'kos ([email protected]) FAX: (+36-1) 4312-977
UNIX & Internet consultant Phone: (+36-1) 4312-979
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

Similar Messages

  • How to kill Forms Runaway Process using 95% CPU and running for 2 hours.

    We had a situation at E-Business Suite customer (using Oracle VM server) where some of Form processes were not being cleared by form timeout settings automatically.
    Also when user exits the form session from front end, the linux form process (PID) and DB session did not exit properly, so they got hung.
    They were spiking CPU and memory usage and causing e-business suite to perform slowely and ultimately causing VM host to reboot the production VM guest (running on Linux).
    We could see the form processes (PIDs) using almost 100% cpu with "top" command and running for a long time.
    Also we verified those Form Sessions did not exist in the application itself.
    ie. Using from Grid Control -> OAM-> Site Map -> Monitoring (tab) -> "Form Sessions".
    It means that we could safely kill that form process from Linux using "kill -9 <PID>" command.
    But that required a continuous monitoring and manual DBA intervention as customer is 24x7 customer.
    So, I wrote a shell script to do the following;
    •     Cron job runs every half an hour 7 days a week which calls this shell script.
    •     Shell script runs and tries to find "top two" f60webmx processes (form sessions) using over 95% cpu with 2 minutes interval.
    •     If no process is found or CPU% is less than 95%, it exits and does nothing.
    •     If top process is found, it searches for its DB session using apps login (with hidden apps password file - /home/applmgr/.pwd).
    a.     If DB session is NOT found (which means form process is hung), it kills the process from unix and emails results to <[email protected]>
    b.     If DB session is found, it waits for 2 hours so that form process times automatically via form session timeout setting.
    It also emails the SQL to check the DB session for that form process.
    c.     If DB session is found and it does not timeout after 2 hours,
    it kills the process from unix (which in turn kills the DB session). Output is emailed.
    This are the files required for this;
    1. Cron job which calls the shell script looks like this;
    # Kill form runaway process, using over 95% cpu having no DB session or DB session for > 2hrs
    00,30 * * * * /home/applmgr/forms_runaway.sh 2>&1
    2. SQL that this script calls is /home/applmgr/frm_runaway.sql and looks like;
    set head off
    set verify off
    set feedback off
    set pagesize 0
    define form_client_PID = &1
    select count(*) from v$session s , v$process p, FND_FORM_SESSIONS_V f where S.AUDSID=f.audsid and p.addr=s.paddr and s.process='&form_client_PID';
    3. Actual shell script is /home/applmgr/forms_runaway.sh and looks like;
    # Author : Amandeep Singh
    # Description : Kills runaway form processes using more than 95% cpu
    # and Form Session with no DB session or DB session > 2hrs
    # Dated : 11-April-2012
    #!/bin/bash
    . /home/applmgr/.bash_profile
    PWD=`cat ~/.pwd`
    export PWD
    echo "`date`">/tmp/runaway_forms.log
    echo "----------------------------------">>/tmp/runaway_forms.log
    VAR1=`top -b -u applmgr -n 1|grep f60webmx|grep -v sh|grep -v awk|grep -v top|sort -nrk9|head -2|sed 's/^[ \t]*//;s/[ \t]*$//'| awk '{ if ($9 > 95 && $12 = "f60webmx") print $1 " "$9 " "$11 " "$12; }'`
    PID1=`echo $VAR1|awk '{print $1}'`
    CPU1=`echo $VAR1|awk '{print $2}'`
    TIME1=`echo $VAR1|awk '{print $3}'`
    PROG1=`echo $VAR1|awk '{print $4}'`
    PID_1=`echo $VAR1|awk '{print $5}'`
    CPU_1=`echo $VAR1|awk '{print $6}'`
    TIME_1=`echo $VAR1|awk '{print $7}'`
    PROG_1=`echo $VAR1|awk '{print $8}'`
    echo "PID1="$PID1", CPU%="$CPU1", Running Time="$TIME1", Program="$PROG1>>/tmp/runaway_forms.log
    echo "PID_1="$PID_1", CPU%="$CPU_1", Running Time="$TIME_1", Program="$PROG_1>>/tmp/runaway_forms.log
    echo " ">>/tmp/runaway_forms.log
    sleep 120
    echo "`date`">>/tmp/runaway_forms.log
    echo "----------------------------------">>/tmp/runaway_forms.log
    VAR2=`top -b -u applmgr -n 1|grep f60webmx|grep -v sh|grep -v awk|grep -v top|sort -nrk9|head -2|sed 's/^[ \t]*//;s/[ \t]*$//'| awk '{ if ($9 > 95 && $12 = "f60webmx") print $1 " "$9 " "$11 " "$12; }'`
    PID2=`echo $VAR2|awk '{print $1}'`
    CPU2=`echo $VAR2|awk '{print $2}'`
    TIME2=`echo $VAR2|awk '{print $3}'`
    PROG2=`echo $VAR2|awk '{print $4}'`
    PID_2=`echo $VAR2|awk '{print $5}'`
    CPU_2=`echo $VAR2|awk '{print $6}'`
    TIME_2=`echo $VAR2|awk '{print $7}'`
    PROG_2=`echo $VAR2|awk '{print $8}'`
    HRS=`echo $TIME1|cut -d: -f1`
    exprHRS=`expr "$HRS"`
    echo "PID2="$PID2", CPU%="$CPU2", Running Time="$TIME2", Program="$PROG2>>/tmp/runaway_forms.log
    echo "PID_2="$PID_2", CPU%="$CPU_2", Running Time="$TIME_2", Program="$PROG_2>>/tmp/runaway_forms.log
    echo " ">>/tmp/runaway_forms.log
    # If PID1 or PID2 is NULL
    if [ -z ${PID1} ] || [ -z ${PID2} ]
    then
    echo "no top processes found. Either PID is NULL OR CPU% is less than 95%. Exiting...">>/tmp/runaway_forms.log
    elif
    # If PID1 is equal to PID2 or PID1=PID_2 or PID_1=PID2 or PID_1=PID_2
    [ ${PID1} -eq ${PID2} ] || [ ${PID1} -eq ${PID_2} ] || [ ${PID_1} -eq ${PID2} ] || [ ${PID_1} -eq ${PID_2} ];
    then
    DB_SESSION=`$ORACLE_HOME/bin/sqlplus -S apps/$PWD @/home/applmgr/frm_runaway.sql $PID1 << EOF
    EOF`
    echo " ">>/tmp/runaway_forms.log
    echo "DB_SESSION ="$DB_SESSION >>/tmp/runaway_forms.log
    # if no DB session found for PID
    if [ $DB_SESSION -eq 0 ] then
    echo " ">>/tmp/runaway_forms.log
    echo "Killed Following Runaway Forms Process:">>/tmp/runaway_forms.log
    echo "-------------------------------------------------------------------">>/tmp/runaway_forms.log
    echo "PID="$PID1", CPU%="$CPU1", Running Time="$TIME1", Program="$PROG1>>/tmp/runaway_forms.log
    kill -9 $PID1
    #Email the output
    mailx -s "Killed: `hostname -a` Runaway Form Processes" [email protected] </tmp/runaway_forms.log
    cat /tmp/runaway_forms.log
    else
    # If DB session exists for PID
    if [ ${exprHRS} -gt 120 ]; then
    echo $DB_SESSION "of Database sessions exist for this forms process-PID="$PID1". But its running for more than 2 hours. ">>/tmp/runaway_forms.log
    echo "Process running time is "$exprHRS" minutes.">>/tmp/runaway_forms.log
    echo "Killed Following Runaway Forms Process:">>/tmp/runaway_forms.log
    echo "-------------------------------------------------------------------">>/tmp/runaway_forms.log
    echo "PID="$PID1", CPU%="$CPU1", Running Time="$TIME1", Program="$PROG1>>/tmp/runaway_forms.log
    kill -9 $PID1
    #Email the output
    mailx -s "`hostname -a`: Runaway Form Processes" [email protected] </tmp/runaway_forms.log
    cat /tmp/runaway_forms.log
    else
    echo "Process running time is "$exprHRS" minutes.">>/tmp/runaway_forms.log
    echo $DB_SESSION "of Database sessions exist for PID="$PID1" and is less than 2 hours old. Not killing...">>/tmp/runaway_forms.log
    echo "For more details on this PID, run following SQL query;">>/tmp/runaway_forms.log
    echo "-----------------------------------------------------------------------">>/tmp/runaway_forms.log
    echo "set pages 9999 lines 150">>/tmp/runaway_forms.log
    echo "select f.user_form_name, f.user_name, p.spid DB_OS_ID , s.process client_os_id,, s.audsid, f.PROCESS_SPID Forms_SPID,">>/tmp/runaway_forms.log
    echo "to_char(s.logon_time,'DD-Mon-YY hh:mi:ss'), s.seconds_in_wait">>/tmp/runaway_forms.log
    echo "from v\$session s , v\$process p, FND_FORM_SESSIONS_V f">>/tmp/runaway_forms.log
    echo "where S.AUDSID=f.audsid and p.addr=s.paddr and s.process='"$PID1"' order by p.spid;">>/tmp/runaway_forms.log
    mailx -s "`hostname -a`: Runaway Form Processes" [email protected] </tmp/runaway_forms.log
    cat /tmp/runaway_forms.log
    fi
    fi
    else
    #if PID1 and PID2 are not equal or CPU% is less than 95%.
    echo "No unique CPU hogging form processes found. Exiting...">>/tmp/runaway_forms.log
    cat /tmp/runaway_forms.log
    fi
    If you have the same problem with some other unix and DB processes, the script can be easily modified and used.
    But use this with thorough testing first (by commenting out <kill -9 $PID1> lines.
    Good luck.
    Edited by: R12_AppsDBA on 19/04/2012 13:10

    Thanks for sharing the script!
    Hussein

  • Syslogd runaway + powerpoint

    Found out in /var/log/system.log what cause my syslogd process to use up to 100% of my CPU
    Here is the message in the log at the same time syslogd runaway:
    Jul 16 16:48:08 U233 [0x0-0x1f01f].com.microsoft.PowerPoint[151]: Ignoring Quick
    draw drawing between QDBeginCGContext and QDEndCGContext
    Jul 16 16:49:20: --- last message repeated 1389 times ---
    Jul 16 16:48:09 U233 [0x0-0x1f01f].com.microsoft.PowerPoint[151]: Ignoring Quick
    draw drawing between QDBeginCGContext and QDEndCGContext
    Jul 16 16:49:50: --- last message repeated 675 times ---
    Jul 16 16:49:44 U233 [0x0-0x1f01f].com.microsoft.PowerPoint[151]: Ignoring Quick
    draw drawing between QDBeginCGContext and QDEndCGContext
    Jul 16 16:51:27: --- last message repeated 101281 times ---
    Indeed I'm using Powerpoint to make a presentation, syslogd runaway multiple times a day (~dozen) since i started making my presentation.
    syslogd never gave me problem when I was doing other stuff. Previous use of Powerpoint didn't produced that syslogd runaway so I'm guessing it comes from either the last 10.5.4 Leopard upgrade or Microsoft Office 2004 upgrade.
    -Activity Monitor / Quiting process doesn't work, just stop it temporarily and it comes back
    Any suggestion to stop my Macbook pro getting so hot?
    P.S. There could be similar post but the since the search is desactivated i couldn't find them

    Update:
    I went to the Apple Store and talked to a Genius. Long story short, I was told that they have been seeing this issue allot since the release of Leopard. A "simple" archive/install was recommended to correct the problem. No explanation. A Terminal command to kill the offending process was also not offered when I asked (nothing I have tried works via this route). Hey, Apple, are you taking note of this?!
    Of course, an archive/install is not as simple as it should be, especially when you only have the Mac OS X 10.5 upgrade disk. I have had to make a clone of my hard drive, reformat it, reinstall Tiger, update, reinstall Leopard, update, then move my data over via Migration Assistant. I hit a snag at that point ( see this post: http://discussions.apple.com/thread.jspa?threadID=1286935&tstart=0 ). For what it is worth, I still have the Syslogd issue while booted up into my Leopard clone volume. More information as I progress...
    “Technological change is like an axe in the hands of a pathological criminal.” (Albert Einstein, 1941),
    Dr. Z.

  • 10.6 -- All Office 2008 apps hang at splash screen. FontCache Tool runaway

    Did an upgrade of 10.5 to 10.6. Nearly everything works fine. Can't launch Office 2008. All apps hang at their splash screen; usually at Optimizing Font Menu Performance.
    Once an app is opened, in Activity viewer you'll find a process called FontCache Tool using >90% of the CPU (on my Core Duo MBP at least, YMMV). I suppose it's saying a lot about 10.6 that the computer is completely usable with that runaway process. Even after forcing the office app(s) to quit, Font Cache Tool stays running until it's killed manually.
    I have yet to find out if FontCache Tool is an Apple or MS process. I think it's microsoft.
    This happens under multiple users.
    This happens after reinstalling Office.
    This was an Office 2008 upgrade from Office 2004.
    After reinstall, and installing Rosetta, office 2004 will run, but office 2008 will not.
    Office 2008 is 12.2.1.
    I am running FontAgent Pro for font management, and so font book sees certain activated fonts as duplicates. (Validate fonts shows duplicate warnings but no errors). FontAgent Pro 4.0.3 is listed as Snow Leopard compatible. So is Office 2008.
    I have yet to do a clean SL install, which I'm guessing will fix it, but I'm curious if there is a sub-sledgehammer approach, or if I am the only person with this issue.
    Other probably irrelevant facts include that the computer is bound to both Active Directory and OS X OpenDirectory servers. Open Directory is running on Leopard 10.5 Server. It does have some managed preferences, including those for Office (e.g. to set default to .doc rather than .docx) but the situation persists even after removing those managed preferences.
    Normally really specific problems are easy to isolate and solve, but I'm at a loss.
    Any help appreciated
    keppie

    Hey i think i figured it out.
    Had the same prob. 10.6 12.2.1 entourage hanging.
    Renamed FCT, instantly prompted that a font was corrupt. Removed the corrupt Font: KufiStandardGK.ttf << this just happened to be my one corrupt font.
    A little troubleshooting i did leading up to this, I read your post and my situation was the same. I use Linotype X to manage fonts. I disabled all but the minimum fonts (i moved them into a folder font_trouble in the same folder)
    I also deleted every office pref/plist setting i thought relevant to startup which triggered the microsoft setup assistant (watched via the console app) and it ran through its check and then immediately the fontcachetool started and went awol on cpu time. Once i killed it--during the starting up of word and entourage... timing may be unrelated but i did them at nearly the same time.
    Ps. Your post was extremely well written and I apologize for my stream of consciousness, less than stelllar response... hope this helps if not feel free to ping me for more details on what I did...
    Good Luck.. All my office apps are running normally now.

  • Dashboard causes runaway swap

    Opening a Dashboard widget causes runaway swap, eventually eating all of the free disk space.
    I started the Activity Monitor after having problems and rebooting. I ran Mail, Safari, Google Earth, Numbers, and other apps without a problem. Swap wasn't even touched (I have 8GB of RAM). As soon as I used the Dashboard Dictionary widget it started using swap and things got really ugly for response time. As I let it idle, swap would grow a bunch, then some would be given back. If I used an app, such as Mail or Safari, swap would really start to grow, and less would be given back, and esponse time would also deteriorate further.

    DavidFielder wrote:
    Actually, I just realized I probably don't mean "when I open Dashboard", but instead "when I open my Widgets"?  Not a power user as may now be obvious.....
    Opening the Dashboard is the correct syntax - the Dashboard displays widgets.
    By chance have you used the "Open in Dashboard" item in Safari's File menu to create a widget showing part of a webpage?
    If so, others have reported that same effect - that after having used that function, opening the Dashboard will cause Safari to open one or more windows, even starting up Safari to do so if it is not running.
    One solution is to get rid of that widget. Easy way - open the Dashboard; hold down Option and hover the cursor over the widget. A bold X icon will appear on the upper left corner of the widget - click that X.

  • KIMYONG : Forms Client Runaway 발생시 조치사항

    Purpose
    =========
    f60webmx 이 Runaway process 로 남아있을경우 불필요한 자원을 사용할수 있습니다. 이에 대한 조치사항을 기술하고자 합니다.
    Cause
    =======
    1. Forms client process (f60webmx ) database server process 와의 socket connection 이 끊겨서 발생하수 있습니다.
    2. 어떠한 database server process 도 현재의 Form Session과 연결되어 있지 않습니다.
    3. 오랫동안 inactive상태로 Forms client process가 과도한 CPU를 사용하고 있습니다.
    Solution
    =========
    Solution$ ps -ef|grep 20034
    appbgd1i 20034 18920 82 09:06 ? 07:51:57 f60webmx webfile=5,85970,p11ias1_10013_PBGD1I
    appbgd1i 21372 19679 0 18:38 pts/0 00:00:00 grep 20034
    1)
    Run strace on pid strace –p <pid>
    $ strace -p 20034
    Process 20034 attached - interrupt to quit
    read(47, 0xaffcc2e, 2064) = -1 EAGAIN (Resource temporarily unavailable)
    read(47, 0xaffcc2e, 2064) = -1 EAGAIN (Resource temporarily unavailable)
    read(47, 0xaffcc2e, 2064) = -1 EAGAIN (Resource temporarily unavailable)
    read(47, 0xaffcc2e, 2064) = -1 EAGAIN (Resource temporarily unavailable)
    read(47, 0xaffcc2e, 2064) = -1 EAGAIN (Resource temporarily unavailable)
    read(47, 0xaffcc2e, 2064) = -1 EAGAIN (Resource temporarily unavailable)
    read(47, 0xaffcc2e, 2064) = -1 EAGAIN (Resource temporarily unavailable)
    Note: Some times strace output will ECONN (Connection refused ) instead of EAGAIN ( Resource temporarily unavailable) in such situation also you can kill the process if you get output similar to above you can kill the process
    $ kill -9 20034
    2)
    Run following sql and when asks for CleintPId give forms runaway (f60webmx process pid)
    col program for a15
    col machine for a15
    col terminal for a15
    col sid for 9999
    col serial# for 9999999
    col action for a40
    set lines 152
    select s.sid, s.serial#, '*'||s.process||'*' Client,
    p.spid Server, s.sql_address, s.sql_hash_value,
    s.username, s.program || s.module, s.action, s.terminal,
    s.machine, s.status, s.last_call_et/3600
    from v$session s, v$process p
    where p.addr=s.paddr and s.sid=nvl('&sid',s.sid) and
    p.spid=nvl('&spid',p.spid) and
    nvl(s.process,-1) = nvl('&ClientPid',nvl(s.process,-1));
    If no rows are selected it means that there is no database server process which is serving the present forms process and thus we confirm that it is a runaway.
    3)
    Run above SQL for forms client process (f60webmx) and check for strace on the same process and if it does not give any output follow the present procedure
    Enter value for clientpid: 20034
    old 19: nvl(s.process,-1) = nvl('&ClientPid',nvl(s.process,-1))
    new 19: nvl(s.process,-1) = nvl('20034',nvl(s.process,-1))
    SID SERIAL# CLIENT SERVER SQL_ADDR SQL_HASH_VALUE USERNAME PROG_MODULE
    ACTION TERMINAL
    MACHINE STATUS S.LAST_CALL_ET/3600
    428 5701 *20034* 7660 62DB08BC 1053795750 APPS FNDSCSGN
    PO Manager, BITL p11ias1.beltong INACTIVE 8.76166667
    445 6179 *20034* 7660 00 0 APPS RCVRCVRC
    FRM::PO Manager, BITL p11ias1.beltong INACTIVE 8.75722222
    As per above update the forms runaway process has opened two database sessions 428 and 445. And we should always ignore the SID which has prog_module column as FNDSCSGN (here 428). Look for other sessions which are having status as INACTIVE. If they are INACTIVE for more than 8hrs (time can be conifirmed from callet/3600 column). If session is inactive for more than 8hrs , then you can kill the both sessions and and f60webmx process.
    "alter system kill session ‘SID,SERIAL#’;"
    We needs to check all form nodes for the following:
    · Is Developer 6i at least Developer Patchset 16 (3596539)
    · Set the forms applet heartBeat and FORMS60_TIMEOUT (Developer 6i) or FORMS90_TIMEOUT (Developer 9i) parameter:
    1) Create an environment variable in $APPL_TOP/admin/adovars.env using autoconfig customization tags (see http://metalink.oracle.com/metalink/plsql/ml2_documents.showNOT?p_id=182925.1#implement) called FORMS60_TIMEOUT (Forms 6i) or FORMS90_TIMEOUT (Forms 9i).
    This parameter specifies the amount of time in elapsed minutes before the Forms Server process is terminated when there is no client communication with the Forms Server. The internal default value is 15, and valid values are integers between 1 - 1440 minutes.
    Set FORMS60_TIMEOUT / FORMS90_TIMEOUT to a value of 5:
    · FORMS60_TIMEOUT=5 (or FORMS90_TIMEOUT=5)
    2) Set the forms applet heartBeat parameter:
    In the base html file, insert a new parameter called heartBeat. This parameter sets the frequency at which a client sends a packet to the server to indicate that it is still running. The default value is two minutes. Set this parameter value to greater than the value specified for the FORMS60_TIMEOUT variable, in this case 7 minutes is recommended:
    · <PARAM NAME="heartBeat" VALUE="7">
    Fullfillment Runaway Processes
    Reference
    ============
    Note 402166.1

  • Safari runaway heating followed by beachball; force quit necessary

    Safari 3.2.1 has become unusable for me as of today. A few minutes after I launch it, I hear the fans start to rev up, and I can see the temperature climbing. Quit doesn't work, only force quit. Knowing how my MacBook Pro is subject to runaway heating every so often (anyone have an idea why?), I am sure that if I didn't hurry to force quit at 80 deg C, it would keep on climbing to 110 before causing a shutdown of the system. It started as a problem with one particular site, but now it doesn't matter where I am. I tried reinstalling Safari, but it had no effect. Am I the only one to have enountered this?

    I can confirm having exactly the same problem, which also started on March 30th.
    I've done a 'Safari reset" for all the reset-items except for usernames+passwords and for autofill. It doesn't make any difference. Even if I only start Safari without accessing any sites (I have my Safari-homepage defined as None) then after about a minute Safari (vs 3.2.1) starts cannibalizing on CPU-time (as shown by the Activity Monitor utility), shooting up to 90-100% - and staying there! This renders Safari completely useless, as it blocks out other apps from using any meaningful part of total cpu-time. The only way to stop this is to kill Safari using Quit Process in the Activity Monitor. Firefox and Opera, which I both have also installed, do not show any similar problem whatsoever and operate completely normal. I have not installed any new software before this weird Safari behaviour started and Software Update reports that all my software is up to date (OSX 10.5.6). Something is somehow dead wrong within Safari.

  • [NODEMGR} Adding a 'business role' to a nodemgrprocess

    Hi,
    when tuning my nodemgr, I can declare it as DB enabled (DBResourceMgrs),
    or supporting some 3GL libraries and so on.
    What can I declare on that node to force some partitions to go there ?
    (I fear that declaring a 3GL Library would do a compile/link error as it's
    virtual)
    j-paul

    Hi Spencer,
    as you probably heard here and ther the SAP Solution Manager supports the whole lifecycle of a business process. Hence there are especially two logical parts
    a) the project and business blueprint part which you access with your mentioned transactions SOLAR01/02
    b) the operations part where you have a similar but nevertheless separate directory the so called Solution Directory that you can access via DSWP > Solution Landscape > Solution Landscape Maintenance or via the "Business Process Operations" Work Center.
    In both directories you can maintain business processes from scratch or use the Business Process Repository or another Project or another Solution as source.
    What you require for using Business Process Monitoring is that business processes are maintained in the Solution Directory. If so far you processes are only maintained in SOLAR01/02 then you can copy them into the Solution Directory.
    You should find corresponding iTutors under http://service.sap.com/rkt-solman
    You can also have a look into http://service.sap.com/bpm > Media Library > Technical Information for different technical papers explaining on how to setup BPMon.
    Perhaps you also want to visit the FAQ page http://wiki.sdn.sap.com/wiki/display/SM/FAQBusinessProcess+Monitoring
    Best Regards
    Volker

  • Syslogd[19824] error in Console--runaway script?

    After finding out that asl data was taking up an incredible amount of room on my drive, I did this.  Large asl files dated back from as late as 2009.  It did help clear up some of the asl data but did not stop the files from being created faster than before (and at large file sizes).  I went to the console to see what was going on and I kept getting this error message:
    "syslogd(19924,0xb0185000) malloc: *** mmap(size=2097152) failed (error code=12)
    *** error: can't allocate region"
    What does this mean?  Is this some sort of runaway script that is creating all of those asl files that are seriously slowing down my computer (and making all of my programs freeze)?  What can I do to fix this?
    Thanks in advance.

    Hi Marc ,
    Thanks for your reply.....
    Did you mentioning the script (upgrade_10131_
    10133_oracle.sql) in the orabpel. I had run this script after applying the patch.
    Still iam facing the same issue.
    what need to be done?
    Could you please help me on this, because I need to do the Fault Handling Framework in BPEL and so i need the faultpolicy folder to be present.
    Since I got the folder by applying the patch, but what happend is when i try to check out for the activity status in the BPEL Console Activity tab it is showing the error as mentioned earlier. Any problem with patch implementation or any bug is there. So far i done the patch installation successfully without error and i upgraded the orabpel schema using the mentioned script also. Any other things i need to do?
    Regards,
    Ashok.

  • Runaway PubSubAgent & Safari Webpage Preview Fetcher

    Hi-- I'm on 10.6.2 still (well, again, because 10.6.3 killed my Pro Tools system), and PubSubAgent regularly starts to runaway with ~97% of my processor. I kill it with Activity Monitor & all's well again for a while, until it decides it's the most important thing on my computer again a few hours later.
    I gather this is a part of Mail, related to RSS feeds? Does anyone have a suggestion for how I can calm it down?
    I also get this same problem with the Safari Webpage Preview Fetcher sometimes, though less often.
    thanks
    ~peter in oakland

    Turn off RSS feeds.

  • WAE 512 - ver 4.1.5b.7 - nodemgr: The device_mgr service has been disabled.

    Hi
    I have restarted the WAE and now I've this message:
    The device_mgr service has been disabled.
    here is message from CLI:
    ASERVER-53#sh alarms
    Critical Alarms:
         Alarm ID             Module/Submodule     Instance
       1 svcdisabled          nodemgr              device_mgr
    Major Alarms:
    None
    Minor Alarms:
    None
    Is it possible to try manualy enable this service ? (After next restart I have the same message).
    If you need any additional logs please let me know.
    Thanks you in advance for your help.
    James

    James,
    I found following exception thrown:
    com.actona.services.configuration.MgException: TimePeriod is not time because it doesn't consist of 'time' element
        at com.actona.services.configuration.MBeanConfigAttribute.objectFromXML(MBeanConfigAttribute.java:158)
        at com.actona.services.configuration.MBeanConfigAttribute.(MBeanConfigAttribute.java:52)
        at com.actona.services.configuration.MBeanConfig.getAttributesFromXML(MBeanConfig.java:118)
        at com.actona.services.configuration.MBeanConfig.(MBeanConfig.java:39)
        at com.actona.services.configuration.ApplicationConfig.loadConfiguration(ApplicationConfig.java:182)
        at com.actona.services.configuration.ApplicationConfig.(ApplicationConfig.java:55)
        at com.actona.services.configuration.Configurator.(Configurator.java:47)
        at com.actona.services.Loader.(Loader.java:82)
        at com.actona.services.Server.(Server.java:65)
        at com.actona.services.Server.init(Server.java:170)
        at com.actona.services.Server.main(Server.java:231)
    [FATAL] 2011-01-12 14:05:52 UTC - Server: Caught MgException - com.actona.services.configuration.MgException: TimePeriod is not time because it doesn't consist of 'time' element
    Nested exception: TimePeriod is not time because it doesn't consist of 'time' element
    com.actona.services.configuration.MBeanConfigAttribute.objectFromXML(MBeanConfigAttribute.java:158)
    com.actona.services.configuration.MBeanConfigAttribute.(MBeanConfigAttribute.java:52)
    com.actona.services.configuration.MBeanConfig.getAttributesFromXML(MBeanConfig.java:118)
    com.actona.services.configuration.MBeanConfig.(MBeanConfig.java:39)
    com.actona.services.configuration.ApplicationConfig.loadConfiguration(ApplicationConfig.java:182)
    com.actona.services.configuration.ApplicationConfig.(ApplicationConfig.java:55)
    com.actona.services.configuration.Configurator.(Configurator.java:47)
    com.actona.services.Loader.(Loader.java:82)
    com.actona.services.Server.(Server.java:65)
    com.actona.services.Server.init(Server.java:170)
    com.actona.services.Server.main(Server.java:231)
    A quick look in our database and I THINK I found the answer for you.
    I found a previous case where under rare circumstances an XML would become corrupted and solution was to run a script.
    I'm actually not sure if I'm supposed to provide you with the script (there's always quite a few concerns with this), but I'm going to risk it.
    However you can only run the script at your own risk and if it goes wrong please reimage the device.
    Regarding CM and how devices are recongnized, forgive my inoreance but I believe it was in part mac address (or something else imprinted into device) of device, but can't remember for sure, nor have the time to look for it.
    HTH,
    Marcin

  • Isolating and Killing Runaway Processes

    How does one go about isolating and kiling a runaway PL/SQL process? I decided that it would be fun to call a
    procedure within a package that had an improperly coded loop, coded by yours truly. I called they package and
    then noticed that it seemed to be taking too long. Upon reviewing the code, I noticed that I my program was
    now stuck in an infinite loop. Since this process had run off on its own, I tried to complie it to fix the problem and
    much to my dismay I could not even complie the code, even though I was able to read the source to my screen.
    Where can one look to gleen some information as to how to kill the instance of the demon child without having to do
    what my DBA did and restart out database instance? Any v$ views etc?

    If you are in sqlplus when it locks up, you can simply enter <control> c
    that should kill the process. If you close your sqlplus session in any other way than standard exit procedures, depending on your setup, you either wait for pmon to find the defunct process or the administrator has to kill it for you.

  • RE: Environment Nodemgr Crashes Unexpectedly

    If you didn't install with a fresh repository, I'd suggest it (but that should
    give you
    a repository problem -just a good idea). Also, did you install 3.G and
    not just certain files to upgrade. I assume you did and this is best. Do you
    have any more info re:
    the platform - is this IBM RS6000 as this message suggests? Have you tried
    re-installing? I
    assume your environments are compatible with this release?
    Good luck.
    ---------------------- Forwarded by Peggy Lynn Adrian/AM/LLY on 09/16/98 02:52
    PM ---------------------------
    "Ratcliffe, Walter" <[email protected]> on 09/16/98 02:22:30
    PM
    Please respond to "Ratcliffe, Walter" <[email protected]>
    To: "'[email protected]'" <[email protected]>
    cc:
    Subject: Environment Nodemgr Crashes Unexpectedly
    Hello fellow Forte System Managers,
    We have been having unpredictable crashes of the environment
    nodemgr ever since we upgraded from Forte 3.F to 3.G. Forte's advice so
    far has been to increase FORTE_STACK_SIZE to 150000 . This does not
    seem to have helped the situatation. We are fairly sure we are not
    running out of memory on the nodemgr, and the nodemgr log has very
    little information, typically something like this:
    Begin Stack Backtrace
    ==========================================================
    Trace caused by a diagnostic trap in the Forte executable:
    nodemgr Version 3.0.G.2
    IBM RS6000/Aix 4.1
    Forte Application Environment (tm), Forte Runtime Environment (tm),
    Forte Conductor (tm):
    Copyright (c) 1994-1998, Forte Software, Inc. and its licensors.
    US Patent No. 5,457,797
    Forte Express (tm), Forte WebEnterprise (tm):
    Copyright (c) 1995-1998, Forte Software, Inc.
    All Rights Reserved.
    Unpublished rights reserved under the copyright laws of the United
    States.
    Fri Mar 13 16:06:08 1998
    Fault at 12-Sep-1998 19:01:30, pid '37084', node 'ratbert':
    0xd1ef686c = d1ef686c()
    0xd1ef6ae4 = d1ef6ae4()
    0xd2735524 = d2735524()
    0xd27351c4 = d27351c4()
    0xd1eef180 = d1eef180()
    0xd273514c = d273514c()
    0xd20402bc = d20402bc()
    0xd1f17354 = d1f17354()
    0xd1ef14e4 = d1ef14e4()
    0xd1ef5f5c = d1ef5f5c()
    0xd1ef18e4 = d1ef18e4()
    0xd1ef61fc = d1ef61fc()
    0xd1ef2780 = d1ef2780()
    0xd1eefb88 = d1eefb88()
    0xd1f56e9c = d1f56e9c()
    0xd22c1448 = d22c1448()
    0xd22bc0b4 = d22bc0b4()
    0xd22bca0c = d22bca0c()
    0xd206c570 = d206c570()
    0xd2122d30 = d2122d30()
    0xd1f504b0 = d1f504b0()
    0xd1eee4b8 = d1eee4b8()
    0xd1eee710 = d1eee710()
    0xd27364e4 = d27364e4()
    0x2039353c = 2039353c()
    0x20397c08 = 20397c08()
    Has anyone seen similar crashes?
    Is there a workaround?
    Thanks in advance for any help.
    Walter H. Ratcliffe
    Liberty Mutual Insurance Group
    (603) 431-7545 X52797
    Walter.Ratcliffe @LibertyMutual.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Walter,
    Is your client the same version as your server? We have had mysterious
    problems in the past when we upgraded the client only. For example, you
    upgrade your client to 3.G. but your server is still running 3.F. When we
    upgraded our server to the same version as our client the mysterious
    problems went away. However, Forte claims that this shouldn't be a problem
    and it really shouldn't.
    I don't know if this will solve your problem but it is sure worth
    looking into.
    Regards,
    Dominick Perritano
    [email protected] on 09/16/98 12:56:20 PM
    Please respond to [email protected]
    To: [email protected]
    cc: (bcc: Dominick Perritano/QAD1)
    Subject: RE: Environment Nodemgr Crashes Unexpectedly
    If you didn't install with a fresh repository, I'd suggest it (but that
    should
    give you
    a repository problem -just a good idea). Also, did you install 3.G and
    not just certain files to upgrade. I assume you did and this is best. Do
    you
    have any more info re:
    the platform - is this IBM RS6000 as this message suggests? Have you tried
    re-installing? I
    assume your environments are compatible with this release?
    Good luck.
    ---------------------- Forwarded by Peggy Lynn Adrian/AM/LLY on 09/16/98
    02:52
    PM ---------------------------
    "Ratcliffe, Walter" <[email protected]> on 09/16/98
    02:22:30
    PM
    Please respond to "Ratcliffe, Walter" <[email protected]>
    To: "'[email protected]'" <[email protected]>
    cc:
    Subject: Environment Nodemgr Crashes Unexpectedly
    Hello fellow Forte System Managers,
    We have been having unpredictable crashes of the environment
    nodemgr ever since we upgraded from Forte 3.F to 3.G. Forte's advice so
    far has been to increase FORTE_STACK_SIZE to 150000 . This does not
    seem to have helped the situatation. We are fairly sure we are not
    running out of memory on the nodemgr, and the nodemgr log has very
    little information, typically something like this:
    Begin Stack Backtrace
    ==========================================================
    Trace caused by a diagnostic trap in the Forte executable:
    nodemgr Version 3.0.G.2
    IBM RS6000/Aix 4.1
    Forte Application Environment (tm), Forte Runtime Environment (tm),
    Forte Conductor (tm):
    Copyright (c) 1994-1998, Forte Software, Inc. and its licensors.
    US Patent No. 5,457,797
    Forte Express (tm), Forte WebEnterprise (tm):
    Copyright (c) 1995-1998, Forte Software, Inc.
    All Rights Reserved.
    Unpublished rights reserved under the copyright laws of the United
    States.
    Fri Mar 13 16:06:08 1998
    Fault at 12-Sep-1998 19:01:30, pid '37084', node 'ratbert':
    0xd1ef686c = d1ef686c()
    0xd1ef6ae4 = d1ef6ae4()
    0xd2735524 = d2735524()
    0xd27351c4 = d27351c4()
    0xd1eef180 = d1eef180()
    0xd273514c = d273514c()
    0xd20402bc = d20402bc()
    0xd1f17354 = d1f17354()
    0xd1ef14e4 = d1ef14e4()
    0xd1ef5f5c = d1ef5f5c()
    0xd1ef18e4 = d1ef18e4()
    0xd1ef61fc = d1ef61fc()
    0xd1ef2780 = d1ef2780()
    0xd1eefb88 = d1eefb88()
    0xd1f56e9c = d1f56e9c()
    0xd22c1448 = d22c1448()
    0xd22bc0b4 = d22bc0b4()
    0xd22bca0c = d22bca0c()
    0xd206c570 = d206c570()
    0xd2122d30 = d2122d30()
    0xd1f504b0 = d1f504b0()
    0xd1eee4b8 = d1eee4b8()
    0xd1eee710 = d1eee710()
    0xd27364e4 = d27364e4()
    0x2039353c = 2039353c()
    0x20397c08 = 20397c08()
    Has anyone seen similar crashes?
    Is there a workaround?
    Thanks in advance for any help.
    Walter H. Ratcliffe
    Liberty Mutual Insurance Group
    (603) 431-7545 X52797
    Walter.Ratcliffe @LibertyMutual.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Runaway Processes in our EBS 11i Server

    Hi hussein,
    RHEL 4.6
    EBS 11i
    I am confused with was is happening to our EBS 11i server.
    I usually clear everything by shutting down all apps and db tiers process.
    then I check ps -ef| and I see that there is no more appsmgr and oramgr id running.
    But after a while....there will start some appsmgr process but no oramgr process I do not know if someone has triggered this process in crontab? but I can not idenfy which process starting it. I can see <defunct> status in the "top"
    monitoring and it is consuming cpu and memory resources. I just can not understand why this appsmgr process can run without a database?
    appltrng 13389     1  0 06:00 ?        00:00:01 /uo1/oracle/oatrngora/iAS/Apache/Apache/bin/httpd -d /uo1/oracle/oatrngora/iAS/Apache/Apache -f /uo1/oracle/oatrngora/iAS/Apache/Apache/conf/httpd.conf
    appltrng 13417 13389  0 06:00 ?        00:00:00 /uo1/oracle/oatrngora/iAS/Apache/Apache/bin/fcgi- -d /uo1/oracle/oatrngora/iAS/Apache/Apache -f /uo1/oracle/oatrngora/iAS/Apache/Apache/conf/httpd.conf
    appltrng 13418 13389  0 06:00 ?        00:00:19 /uo1/oracle/oatrngora/iAS/Apache/Apache/bin/httpd -d /uo1/oracle/oatrngora/iAS/Apache/Apache -f /uo1/oracle/oatrngora/iAS/Apache/Apache/conf/httpd.conf
    appltrng 13419 13418  0 06:00 ?        00:00:02 /uo1/oracle/oatrngcomn/util/java/1.4/j2sdk1.4.2_04/jre/bin/java -DCLIENT_PROCESSID=13419 -verbose:gc -Xmx512M -Xms128M -XX:MaxPermSize=128M -XX:NewRatio=2 -XX:+PrintGCTimeStamps -XX:+UseTLAB -Djava.awt.headless=false -DFND_TOP=/uo1/oracle/oatrngappl/fnd/11.5.0 -DAPPL_TOP=/uo1/oracle/oatrngappl -DOA_HTML=/uo1/oracle/oatrngcomn/html/ -DOA_MEDIA=/uo1/oracle/oatrngcomn/java/oracle/apps/media/ -DFND_SECURE=/uo1/oracle/oatrngappl/fnd/11.5.0/secure/OATRNG_oracletrng -DOASMTPServer=oracletrng.abc.local -DWebProxyHost= -DWebProxyPort= -DWebProxyByPassDomain=abc.local -DOASSLCACertFile=/uo1/oracle/oatrngora/iAS/Apache/Apache/conf/ssl.crt/ca-bundle.crt -DOXTAInPoolSize=1 -DOXTAOutThreads=1 -DCOMMON_TOP=/uo1/oracle/oatrngcomn -Dcz.uiservlet.templateurl=http://oracletrng.abc.local:8000/OA_HTML/US/czFraNS.htm -Dcz.uiservlet.templateurl.ie=http://oracletrng.abc.local:8000/OA_HTML/US/czFraIE.htm -Dcz.uiservlet.stylesheet.applet=http://oracletrng.abc.local:8000/OA_HTML/czcmdcvt.xsl -Dcz.uiservlet.stylesheet.applet.client=http://oracletrng.abc.local:8000/OA_HTML/czclient.xsl -Dcz.uiservlet.stylesheet.applet.server=http://oracletrng.abc.local:8000/OA_HTML/czserver.xsl -Dcz.uiservlet.stylesheet.dhtml=http://oracletrng.abc.local:8000/OA_HTML/czxml2js.xsl -Dcz.uiservlet.url=http://oracletrng.abc.local:8000/servlets/oracle.apps.cz.servlet.UiServlet -Dcz.uiservlet.proxyurl=http://oracletrng.abc.local:8000/servlets/oracle.apps.cz.servlet.Proxy -Dcz.uiservlet.proxyscript=http://oracletrng.abc.local:8000/OA_HTML/czProxy.js -Dcz.uiservlet.sourcefile=http://oracletrng.abc.local:8000/OA_HTML/czSource.htm -Dcz.html.source.treeview=http://oracletrng.abc.local:8000/OA_HTML/cztree.htm -Dcz.html.source.display=http://oracletrng.abc.local:8000/OA_HTML/czdisp.htm -Dcz.uiservlet.jdbcdriver=oracle.jdbc.driver.OracleDriver -Dcz.uiservlet.logfilename=/uo1/oracle/oatrngora/iAS/Apache/Jserv/logs/cz -Dcz.uimanager.logpath=/uo1/oracle/oatrngora/iAS/Apache/Jserv/logs -Dcz.uiservlet.applet.tmp=/uo1/oracle/oatrngora/iAS/Apache/Jserv/logs -Dcz.uiservlet.blaftemplateurl=http://oracletrng.abc.local:8000/OA_HTML/US/czBlafTemplate.htm -Dcz.uiservlet.formtemplateurl=http://oracletrng.abc.local:8000/OA_HTML/US/czFormTemplate.htm -Dcz.html.source.formtreeview=http://oracletrng.abc.local:8000/OA_HTML/czFormTree.htm -Dcz_properties_file=/uo1/oracle/oatrngora/iAS/Apache/Jserv/etc/cz_init.txt -DOXTALogDebugMsg=false -DEXTERNAL_URL=http://oracletrng.abc.local:8000 -Djbo.323.compatible=true -DLONG_RUNNING_JVM=true -DJTFDBCFILE=/uo1/oracle/oatrngappl/fnd/11.5.0/secure/OATRNG_oracletrng/oatrng.dbc -Doracle.apps.jtf.cache.IASCacheProvidercacheProvider.port=12345 -Dservice.Logging.common.filename=/uo1/oracle/oatrngcomn/temp/ibe.log -Dframework.Logging.system.filename=/uo1/oracle/oatrngcomn/temp/fwsys.log -DIMT_COM_PROPERTY_FILE=/uo1/oracle/oatrngappl/imt/11.5.0/admin/scripts/imtjserv.properties -Dpoolsize=100 -Dminpoolsize=10 -Dpoolincrement=10 -Dpooldelayincrement=3 -DBNEDBCFILE=/uo1/oracle/oatrngappl/fnd/11.5.0/secure/OATRNG_oracletrng/oatrng.dbc -Dcsa.config_file_path=/uo1/oracle/oatrngcomn/html/bin/txkcsa_OATRNG_oracletrng.cfg -Djserv.session.getValue.instrument=false -DHZ_DNB_CONFIG_DIR=/uo1/oracle/oatrngcomn/java/com/dnb/gaconfig/ -Djava.protocol.handler.pkgs=HTTPClient -DAPPLRGF=/uo1/oracle/oatrngcomn/rgf/OATRNG_oracletrng -Dorg.omg.CORBA.ORBClass=com.visigenic.vbroker.orb.ORB -Dorg.omg.CORBA.ORBSingletonClass=com.visigenic.vbroker.orb.ORB org.apache.jserv.JServ -opmpropfile /uo1/oracle/oatrngora/iAS/Apache/Jserv/etc/jserv.properties -opmhost oracletrng.abc.local -opmport 8100 -opmgrp OACoreGroup -opmindex 0 -opmprocid 1
    appltrng 13420 13418  0 06:00 ?        00:00:05 /uo1/oracle/oatrngcomn/util/java/1.4/j2sdk1.4.2_04/jre/bin/java -DCLIENT_PROCESSID=13420 -verbose:gc -Xmx512M -Xms128M -XX:MaxPermSize=128M -XX:NewRatio=2 -XX:+PrintGCTimeStamps -XX:+UseTLAB -Djava.awt.headless=false -Dorg.omg.CORBA.ORBClass=com.visigenic.vbroker.orb.ORB -Dorg.omg.CORBA.ORBSingletonClass=com.visigenic.vbroker.orb.ORB -Djserv.session.getValue.instrument=false -Djava.protocol.handler.pkgs=HTTPClient org.apache.jserv.JServ -opmpropfile /uo1/oracle/oatrngora/iAS/Apache/Jserv/etc/viewer4i.properties -opmhost oracletrng.abc.local -opmport 8100 -opmgrp DiscoGroup -opmindex 0 -opmprocid 2
    appltrng 13443 13389  0 06:00 ?        00:00:00 /uo1/oracle/oatrngora/iAS/Apache/Apache/bin/rotatelogs /uo1/oracle/oatrngora/iAS/Apache/Apache/logs/access_log 86400
    appltrng 13444 13389  0 06:00 ?        00:00:01 /uo1/oracle/oatrngora/iAS/Apache/Apache/bin/httpd -d /uo1/oracle/oatrngora/iAS/Apache/Apache -f /uo1/oracle/oatrngora/iAS/Apache/Apache/conf/httpd.conf
    appltrng 13445 13389  0 06:00 ?        00:00:01 /uo1/oracle/oatrngora/iAS/Apache/Apache/bin/httpd -d /uo1/oracle/oatrngora/iAS/Apache/Apache -f /uo1/oracle/oatrngora/iAS/Apache/Apache/conf/httpd.conf
    appltrng 13490     1  0 06:00 ?        00:00:01 /uo1/oracle/oatrngora/iAS/Apache/Apache/bin/httpd -d /uo1/oracle/oatrngora/iAS/Apache/Apache -f /uo1/oracle/oatrngora/iAS/Apache/Apache/conf/httpd_pls.conf
    appltrng 13504 13389  0 06:00 ?        00:00:01 /uo1/oracle/oatrngora/iAS/Apache/Apache/bin/httpd -d /uo1/oracle/oatrngora/iAS/Apache/Apache -f /uo1/oracle/oatrngora/iAS/Apache/Apache/conf/httpd.conf
    appltrng 13521 13490  0 06:00 ?        00:00:00 /uo1/oracle/oatrngora/iAS/Apache/Apache/bin/fcgi- -d /uo1/oracle/oatrngora/iAS/Apache/Apache -f /uo1/oracle/oatrngora/iAS/Apache/Apache/conf/httpd_pls.conf
    appltrng 13566     1  0 06:00 ?        00:00:00 /uo1/oracle/oatrngora/8.0.6/bin/tnslsnr APPS_OATRNG -inherit
    appltrng 13843     1  0 06:00 ?        00:00:00 f60srvm em oracletrng_9000_OATRNG port 9000 mode socket exe f60webmx
    appltrng 13863 13843  0 06:00 ?        00:00:00 f60webmx webfile=5,0,oracletrng_9000_OATRNG
    appltrng 13977     1  0 06:00 ?        00:00:00 rwmts60 name=REP60_OATRNG
    appltrng 14128     1  0 06:00 ?        00:00:01 d2lc60 oracletrng 9100 0 1 f60webmx
    appltrng 14260     1  0 06:00 ?        00:00:00 d2ls60 9100 9200
    appltrng 14422     1  0 06:00 ?        00:00:00 /uo1/oracle/oatrngora/8.0.6/vbroker/bin/oad -t 60
    appltrng 14448 13977  0 06:00 ?        00:00:00 rwmts60 name=REP60_OATRNG
    appltrng 14449 14448  0 06:00 ?        00:00:00 rwmts60 name=REP60_OATRNG
    appltrng 14450 14448  0 06:00 ?        00:00:00 rwmts60 name=REP60_OATRNG
    appltrng 14451 14448  0 06:00 ?        00:00:00 rwmts60 name=REP60_OATRNG
    appltrng 14452 14448  0 06:00 ?        00:00:00 rwmts60 name=REP60_OATRNG
    appltrng 14453 14448  0 06:00 ?        00:00:00 rwmts60 name=REP60_OATRNG
    appltrng 14454 14448  0 06:00 ?        00:00:00 rwmts60 name=REP60_OATRNG
    appltrng 14500     1  0 06:00 ?        00:00:00 /uo1/oracle/oatrngora/8.0.6/vbroker/bin/osagent
    appltrng 14522     1  0 06:00 ?        00:00:24 /uo1/oracle/oatrngora/8.0.6/jre1183o/bin/../bin/i686/green_threads/jre -DORBagentPort=10100 oracle.disco.locator.Locator -preference oracletrng.abc.local_8000OracleDiscovererPreferences4 -locator oracletrng.abc.local_8000OracleDiscovererLocator4 -debug
    appltrng 14718 14422  0 06:00 ?        00:00:00 /uo1/oracle/oatrngora/8.0.6/discwb4/bin/dis4pr -preference oracletrng.abc.local_8000OracleDiscovererPreferences4 -OAactivateIOR IOR:012020202500000049444
    appltrng 15122 14718  0 06:00 ?        00:00:00 /uo1/oracle/oatrngora/8.0.6/discwb4/bin/dis4pr -preference oracletrng.abc.local_8000OracleDiscovererPreferences4 -OAactivateIOR IOR:012020202500000049444
    appltrng 15123 15122  0 06:00 ?        00:00:00 /uo1/oracle/oatrngora/8.0.6/discwb4/bin/dis4pr -preference oracletrng.abc.local_8000OracleDiscovererPreferences4 -OAactivateIOR IOR:012020202500000049444
    appltrng 15124 15122  0 06:00 ?        00:00:00 /uo1/oracle/oatrngora/8.0.6/discwb4/bin/dis4pr -preference oracletrng.abc.local_8000OracleDiscovererPreferences4 -OAactivateIOR IOR:012020202500000049444
    appltrng 15142 15122  0 06:00 ?        00:00:01 /uo1/oracle/oatrngora/8.0.6/discwb4/bin/dis4pr -preference oracletrng.abc.local_8000OracleDiscovererPreferences4 -OAactivateIOR IOR:012020202500000049444
    appltrng 22546 13418 28 18:42 ?        00:00:00 [java] <defunct>Please help...
    Thanks

    Hi;
    Please shutdown all services first, when sometimes pass like 20 min check apps services down or not. Please check alert.log also for any error message
    Also see below links
    runaway processes
    Re: runaway processes
    script issue_urgent
    If possible Please restart server
    Regard
    Helios

  • Finding and killing runaways in Oracle

    I am very new to the DBA side of Oracle.
    I have several "Power Users" that are constantly kicking off outrageous queries without joins and then just killing their telnet sessions and reconnecting to correct the mistake and then complaining about performance. I think that this is leaving the query running in the background.
    Since neither removing their keyboards nor removing their fingers are options is there any way to check out resources and who is running what in the database and kill/or any runaway processes or queries?
    Any help would be appreciated,
    Chris S.

    The problem with resource limits is that you prevent ligitimate large queries.
    So the problem becomes identifying the large queries that cause the problems.
    I am currently looking at statistics so I do not have all the answers yet. One place to start looking for the sinners is v$session, v$sesstat and v$statname(?).
    Run this query every 5 minutes check the large queries and users with many queries. Users with more than one session are the ones you would be interested in. This is not perfect, but it is a start.
    If you are on Unix you can set this up in Crontab and create a shell script that checks for specifics in the result and send you an email.
    One thing I have found to cause big problems is when we use "default" for parallelism, one user can pretty much kill the server that way, if accessing a large table spanning many files I have seen up to 30 parallel queries running at once. If all the parallel processes are busy everybody else will be running non-parallel.

Maybe you are looking for

  • Jabber and dial from IE yet?

    Does Jabber support direct dialling from IE yet? Trawled through previous discussions and release notes but doesn't look promising. Can I get a quick Yes/No with reference for 5 points please? :) CUCM 10.5 Jabber 10.6 Cheers Rich

  • WEATHER ICON ON VERIZON PAGE

    THE RECENT CHANGE IN THE VERIZON PAGE REMOVED THE WEATHER ICON WITHOUT A MEANS TO REPLACE IT.  VERIZON CUSTOMER SERVICE SAID IT WOULD RETURN.  WHEN?

  • Permissions Issue with Infopath Data Connection

    I'm not really sure how else to title this.... Issue - InfoPath Form on SharePoint 2010 gives 'You do not have permissions to access a SharePoint list that contains data required for this form to function correctly." It gives a correlation ID Log fil

  • Embedding audio

    I have a cd, I need to post some audio clips on a website. Probably 3 or 4 separate ones. I would like to have it play on the page, not open in a separate window. Not when the page OPENS, but have a player that is built into the page..click on the pl

  • Shortcut for switching highlight colour in Preview?

    Hello world! Anyone know of a shortcut that would allow for switching the colour of highlighter/markup in the Preview app? Or of a way to create one? Thanks!