NSM 3.1.1 server reguallry becomes unresponsive

We run NSM 3.1.1 for AD and I find that regularly for periods of several hours it is not possible to connect with NSMadmin, this also occurs if the NSM server is restarted. This is particularly annoying now that I am devolving administration of home drive quotas to our servicedesk using quota manager because while the server is in this condition, they cannot update quotas and receive a message that they are not members of the quota manager group. I also notice that our database (ecache.db) is approaching 25Gb, is there any housekeeping that can be carried out to prune this or is this normal?. I cannot find any guidance on tuning my environment for best performance. Being a University, we have a great deal of change in our environment with approximately 15,000 new students per year (and also 15,000 leaving).
Any help or advice would be appreciated,
Dave
Apologies for not being able to spell "regularly" :)

On 11/7/2013 7:36 AM, Davey1 wrote:
>
> We run NSM 3.1.1 for AD and I find that regularly for periods of several
> hours it is not possible to connect with NSMadmin, this also occurs if
> the NSM server is restarted. This is particularly annoying now that I am
> devolving administration of home drive quotas to our servicedesk using
> quota manager because while the server is in this condition, they cannot
> update quotas and receive a message that they are not members of the
> quota manager group. I also notice that our database (ecache.db) is
> approaching 25Gb, is there any housekeeping that can be carried out to
> prune this or is this normal?. I cannot find any guidance on tuning my
> environment for best performance. Being a University, we have a great
> deal of change in our environment with approximately 15,000 new students
> per year (and also 15,000 leaving).
> Any help or advice would be appreciated,
>
> Dave
>
> Apologies for not being able to spell "regularly" :)
>
>
Davey1,
The large ecache.db file is definitely one reason the Engine is slow to
respond upon restart. Is your ecache.db file not growing any larger? In
the Pending Events panel of the Admin client, in the bottom-right
corner, is the "cached events" counter at 0? If so, it's safe to perform
the following steps:
- stop accepting events
- double-check that the "cached events" counter is still at 0
- stop the engine
- rename the ecache.db file
- start the engine - it should create a new ecache.db (and your engine
should load much faster)
- start accepting events again
- if everything looks right, you can delete the old ecache file
-- NFMS Support Team

Similar Messages

  • SQL Causes server to swap and become unresponsive, What is it doing?

    SQL Causes server to swap and become unresponsive does it have the same effect with other users??
    WARNING - script causes my servers to not respond, requiring reboot after 30 mins
    Only run on a server/vm where a bounce is ok
    The script creates a table
    Runs an anonymous block to put 160mb in a single clob
    Runs a simple select with some REGEXP_REPLACE and REGEXP_SUBSTR
    This has been raised with Oracle support.
    Their conclusion is lots of single block reads are causing the server to hang.
    I do not think this is the reason and would like someone else to run it, to see what they think!
    Environment
    on red hat 5.7 and Oracle 11.2.0.3 enterprise edition it seems to hang the server
    [oracle@ ~]$ uname -a
    Linux  2.6.18-274.el5xen #1 SMP Fri Jul 8 17:45:44 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux
    [oracle@edu-db3 ~]$ cat /etc/redhat-release
    Red Hat Enterprise Linux Server release 5.7 (Tikanga)on redhat 4.5 Oracle 10.2.0.4 - it seems to just kill the instance
    [oracle@ ~]$ uname -a
    Linux  2.6.9-55.ELxenU #1 SMP Fri Apr 20 16:56:53 EDT 2007 x86_64 x86_64 x86_64 GNU/Linux
    [oracle@edu-db1 ~]$ cat /etc/redhat-release
    Red Hat Enterprise Linux AS release 4 (Nahant Update 5)When running the sql oracle consumes all the memory on the server, although SGA and PGA configured well bellow os memory
    SQL> show parameter sga
    NAME TYPE VALUE
    lock_sga boolean FALSE
    pre_page_sga boolean FALSE
    sga_max_size big integer 5G
    sga_target big integer 5G
    SQL> show parameter pga
    NAME TYPE VALUE
    pga_aggregate_target big integer 2G
    [oracle@ scripts]$ free
    total used free shared buffers cached
    Mem: 8388608 7346232 1042376 0 70060 6498460
    -/+ buffers/cache: 777712 7610896
    Swap: 4161528 1212380 2949148Script Output
    SQL> @kill_server.sql
    Table created.To start with we see oracle using the 5g sga
    PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
    13007 oracle 25 0 5352m 216m 212m R 95.9 2.6 0:19.33 oracle163mb clob created
    MB
    163SQL Running
    Oracle process using 13gb of memory!!!!!!!!!!!!!
    PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
    13007 oracle 18 0 13.4g 6.5g 210m D 7.3 81.8 0:55.42 oracleBut PGA has not grown
    SQL> select * from v$pgastat;
    NAME VALUE UNIT
    aggregate PGA target parameter 2147483648 bytes
    aggregate PGA auto target 1767444480 bytes
    global memory bound 214743040 bytes
    total PGA inuse 183654400 bytes
    total PGA allocated 248871936 bytes
    maximum PGA allocated 522175488 bytes
    -- SCRIPT
    -- WARNING (again) - script causes my servers to not respond, requiring reboot after 30 mins
    -- Only run on a server/vm that does not matter!
    DROP TABLE testing.clob_store PURGE;
    -- Clob holding table
    CREATE TABLE
      testing.clob_store
      clob_data CLOB
      LOB ("CLOB_DATA") STORE AS BASICFILE (TABLESPACE "TBSCLOB" DISABLE STORAGE IN ROW CHUNK 8192 RETENTION CACHE)
    -- Make a 100mb test clob
    DECLARE
      g_clob  CLOB := EMPTY_CLOB;
      PROCEDURE clob_append(p_line VARCHAR2) IS
        l_line VARCHAR2(2000) := p_line || CHR(10);
      BEGIN
        DBMS_LOB.WRITEAPPEND( g_clob, LENGTH(l_line), l_line );
      END;
    BEGIN
      DBMS_LOB.CREATETEMPORARY(g_clob,TRUE);
      DBMS_LOB.OPEN( g_clob, DBMS_LOB.LOB_READWRITE );
      clob_append( '<Workbook>' );
      clob_append( '<Styles>' );
      FOR i IN 1..1000000 LOOP
        clob_append(' <Styles><Style ss:ID="Default" ss:Name="Normal"><Alignment ss:Vertical="Bottom"/><Borders/><Font/><Interior/><NumberFormat/><Protection/></Style>');
      END LOOP;
      clob_append( '</Styles>' );
      clob_append( '<Workbook>' );
      FOR i IN 1..1000000 LOOP
        clob_append('<dummy>sfsdfsdf</dummy>');
      END LOOP;
      clob_append( '</Worksheet>' );
      clob_append( '</Workbook>' );
      INSERT INTO testing.clob_store(clob_data) VALUES (g_clob);
      DBMS_LOB.CLOSE(g_clob);
      DBMS_LOB.FREETEMPORARY(g_clob);
      COMMIT;
    END;
    -- Check sizes
    select
      round(DBMS_LOB.GETLENGTH (clob_data)/1024/1024) mb
    from
      testing.clob_store
    -- Test lob set up
    -- no trace and run simple select
    column rd new_value run_date noprint
    select to_char(sysdate, 'YYYY_MM_DD__HH_MI') rd from dual
    alter session set tracefile_identifier = 'bad_sql_&run_date'
    alter session set events '10046 trace name context forever, level 12'
    -- Some regexp extracts
    SELECT
      REGEXP_REPLACE( REGEXP_REPLACE( REGEXP_SUBSTR( RPO.CLOB_DATA , ' <Styles>.*</Styles>.', 1, 1, 'n' ) , ' </?Styles>.', NULL, 1, 0, 'n' ) , '  <Style ss:ID="Default".*?  </Style>.', NULL, 1, 0, 'n' ) STYLES
    , REGEXP_SUBSTR(RPO.CLOB_DATA, ' <Workbook.*</Workbook>.', 1, 1, 'n') worksheet
    FROM
      testing.clob_store rpo
    /Extra info
    SQL Trace
    *** 2012-11-12 10:22:03.936
    WAIT #47954520916768: nam='db file sequential read' ela= 28421 file#=12 block#=1324297 blocks=1 obj#=567174 tim=1352715723936618
    WAIT #47954520916768: nam='db file sequential read' ela= 34490 file#=12 block#=1324345 blocks=1 obj#=567174 tim=1352715724000358
    WAIT #47954520916768: nam='db file sequential read' ela= 59165 file#=12 block#=1324298 blocks=1 obj#=567174 tim=1352715724314041
    WAIT #47954520916768: nam='db file sequential read' ela= 68224 file#=12 block#=1324346 blocks=1 obj#=567174 tim=1352715724395729
    *** 2012-11-12 10:22:04.631
    WAIT #47954520916768: nam='db file sequential read' ela= 34901 file#=12 block#=1324299 blocks=1 obj#=567174 tim=1352715724631454
    WAIT #47954520916768: nam='db file sequential read' ela= 32349 file#=12 block#=1324347 blocks=1 obj#=567174 tim=1352715724701167
    WAIT #47954520916768: nam='db file sequential read' ela= 109175 file#=12 block#=1324300 blocks=1 obj#=567174 tim=1352715725093610
    WAIT #47954520916768: nam='db file sequential read' ela= 69001 file#=12 block#=1324348 blocks=1 obj#=567174 tim=1352715725194967
    *** 2012-11-12 10:22:05.913
    WAIT #47954520916768: nam='db file sequential read' ela= 23154 file#=12 block#=1324301 blocks=1 obj#=567174 tim=1352715725913197
    WAIT #47954520916768: nam='db file sequential read' ela= 31894 file#=12 block#=1324349 blocks=1 obj#=567174 tim=1352715726090547
    WAIT #47954520916768: nam='db file sequential read' ela= 29719 file#=12 block#=1324302 blocks=1 obj#=567174 tim=1352715726457981
    WAIT #47954520916768: nam='db file sequential read' ela= 29533 file#=12 block#=1324350 blocks=1 obj#=567174 tim=1352715726593580
    *** 2012-11-12 10:22:07.096
    WAIT #47954520916768: nam='db file sequential read' ela= 121833 file#=12 block#=1324035 blocks=1 obj#=567174 tim=1352715727096799
    WAIT #47954520916768: nam='db file sequential read' ela= 56658 file#=12 block#=1324131 blocks=1 obj#=567174 tim=1352715727322665STRACE
    -rw-r--r-- 1 root root 130647 Nov 12 10:29 strace_oracle.log7 minutes after last oracle trace entry!!
    brk(0x60013000)                         = 0x5ffef000
    mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b9e772b5000
    brk(0x60013000)                         = 0x5ffef000
    mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b9e773b5000
    brk(0x60013000)                         = 0x5ffef000
    mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b9e774b5000
    brk(0x60013000)                         = 0x5ffef000
    mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b9e775b5000
    brk(0x60013000)                         = 0x5ffef000
    mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b9e776b5000Edited by: Tom 55 on Nov 13, 2012 6:39 AM

    Thanks Iggy, now I know the strace show the os is really out of memory.
    Some more Debug, using Tanels tools...
    SQL> @snapper stats 5 1 13
    Sampling SID 13 with interval 5 seconds, taking 1 snapshots...
    -- Session Snapper v3.52 by Tanel Poder @ E2SN ( http://tech.e2sn.com )
        SID, USERNAME  , TYPE, STATISTIC                                                 ,     HDELTA, HDELTA/SEC,    %TIME, GRAPH
         13, TESTING   , STAT, session logical reads                                     ,      1.93k,      386.6,
         13, TESTING   , STAT, consistent gets                                           ,      1.93k,      386.6,
         13, TESTING   , STAT, consistent gets from cache                                ,      1.93k,      386.6,
         13, TESTING   , STAT, consistent gets from cache (fastpath)                     ,        277,       55.4,
         13, TESTING   , STAT, consistent gets - examination                             ,       1.1k,      220.8,
         13, TESTING   , STAT, logical read bytes from cache                             ,     15.84M,      3.17M,
         13, TESTING   , STAT, shared hash latch upgrades - no wait                      ,        552,      110.4,
         13, TESTING   , STAT, calls to get snapshot scn: kcmgss                         ,        276,       55.2,
         13, TESTING   , STAT, index crx upgrade (positioned)                            ,        552,      110.4,
         13, TESTING   , STAT, lob reads                                                 ,        276,       55.2,
         13, TESTING   , STAT, index fetch by key                                        ,        276,       55.2,
         13, TESTING   , STAT, index scans kdiixs1                                       ,        552,      110.4,
    --  End of Stats snap 1, end=2012-11-13 10:54:06, seconds=5
    SQL> @snapper stats 5 1 13HANG!
    So snapper not showing anything?
    Over to ostackprof
    SQL> @ostackprof 1143 0 5
    Sampling...
    Below is the stack prefix common to all samples:
    Frame->function()
    # 34 ->__libc_start_main()
    # 33  ->main()
    # 32   ->ssthrdmain()
    # 31    ->opimai_real()
    # 30     ->sou2o()
    # 29      ->opidrv()
    # 28       ->opiodr()
    # 27        ->opiino()
    # 26         ->opitsk()
    # 25          ->ttcpip()
    # 24           ->opiodr()
    # 23            ->opifch()
    # 22             ->opifch2()
    # 21              ->qerstFetch()
    # 20               ->qertbFetch()
    # 19                ->qerstRowP()
    # 18                 ->kpofcr()
    # 17                  ->evaopn2()
    # 16                   ->evaopn2()
    # 15                    ->evaopn2()
    # 14                     ->kokle_rxsubstr()
    # 13                      ->kole_rxsubstr()
    # 12                       ->lxkRegexpSubstrLobNSub()
    # 11                        ->lxregexec()
    # 10                         ->lxregmatch()
    #  ...(see call profile below)
    # - Num.Samples -> in call stack()
         2 ->lxregmatgpt()->kole_rxrdcb()->koklc_read()->koklread()->koklOutlineRead1()->kdlf_read()->kdl_read1()->kdlprl()->__intel_new_memcpy()->__sighandler()->->
         2 ->__sighandler()->->
         1 ->lxregmatpush()->__sighandler()->->Ok we see the regex function running
    Server starting to overload now
    SQL> @ostackprof 1143 0 5
    Sampling...
    Below is the stack prefix common to all samples:
    Frame->function()
    #  ...(see call profile below)
    # - Num.Samples -> in call stack()
         2 ->__libc_start_main()->main()->ssthrdmain()->opimai_real()->sou2o()->opidrv()->opiodr()->opiino()->opitsk()->ttcpip()->opiodr()->opifch()->opifch2()->qerstFetch()->qertbFetch()->qerstRowP()->kpofcr()->evaopn2()->evaopn2()->evaopn2()->kokle_rxsubstr()->kole_rxsubstr()->lxkRegexpSubstrLobNSub()->lxregexec()->lxregmatch()->lxregmatgpt()->kole_rxrdcb()->koklc_read()->koklread()->koklOutlineRead1()->kdlf_read()->kdl_read1()->kdlprl()->kdlrdb()->kcbgtcr()->__sighandler()->->
         1 ->__sighandler()->->
         1 ->__libc_start_main()->main()->ssthrdmain()->opimai_real()->sou2o()->opidrv()->opiodr()->opiino()->opitsk()->ttcpip()->opiodr()->opifch()->opifch2()->qerstFetch()->qertbFetch()->qerstRowP()->kpofcr()->evaopn2()->evaopn2()->evaopn2()->kokle_rxsubstr()->kole_rxsubstr()->lxkRegexpSubstrLobNSub()->lxregexec()->lxregmatch()->lxregmatgpt()->kole_rxrdcb()->koklc_read()->koklread()->koklOutlineRead1()->kdlf_read()->kdl_read1()->kdlprl()->__intel_new_memcpy()->__sighandler()->->
         1 ->__libc_start_main()->main()->ssthrdmain()->opimai_real()->sou2o()->opidrv()->opiodr()->opiino()->opitsk()->ttcpip()->opiodr()->opifch()->opifch2()->qerstFetch()->qertbFetch()->qerstRowP()->kpofcr()->evaopn2()->evaopn2()->evaopn2()->kokle_rxsubstr()->kole_rxsubstr()->lxkRegexpSubstrLobNSub()->lxregexec()->lxregmatch()->lxregmatgpt()->__sighandler()->->
    SQL> @ostackprof 1143 0 5
    Sampling...
    Below is the stack prefix common to all samples:
    Frame->function()
    #  ...(see call profile below)
    # - Num.Samples -> in call stack()
         2 ->__sighandler()->->
         2 ->__libc_start_main()->main()->ssthrdmain()->opimai_real()->sou2o()->opidrv()->opiodr()->opiino()->opitsk()->ttcpip()->opiodr()->opifch()->opifch2()->qerstFetch()->qertbFetch()->qerstRowP()->kpofcr()->evaopn2()->evaopn2()->evaopn2()->kokle_rxsubstr()->kole_rxsubstr()->lxkRegexpSubstrLobNSub()->lxregexec()->lxregmatch()->lxregmatgpt()->kole_rxrdcb()->koklc_read()->koklread()->koklOutlineRead1()->kdlf_read()->kdl_read1()->kdlprl()->kdlrdb()->kcbgtcr()->__sighandler()->->
         1 ->__libc_start_main()->main()->ssthrdmain()->opimai_real()->sou2o()->opidrv()->opiodr()->opiino()->opitsk()->ttcpip()->opiodr()->opifch()->opifch2()->qerstFetch()->qertbFetch()->qerstRowP()->kpofcr()->evaopn2()->evaopn2()->evaopn2()->kokle_rxsubstr()->kole_rxsubstr()->lxkRegexpSubstrLobNSub()->lxregexec()->lxregmatch()->lxregmatpush()->__sighandler()->->
    SQL> @ostackprof 1143 0 5
    Hit CTRL+C to cancel, ENTER to continue...HANG!
    Now I am lost!!
    As Iggy points out from the strace, the OS is returning an error back to the Oracle foreground process, is this not handled?
    Or is it normal for oracle to ignore this error, and ask for more memory?
    Any help would be greatly appreciated.
    Thanks,
    Tom
    Edited by: Tom 55 on Nov 13, 2012 7:54 AM

  • CRIO - RT - FTP server becomes unresponsive

    All,
    Ive got an issue here that once i load my code (executable), and it starts up, the NI ftp server becomes unresponsive. All the software on the RealTime is the latest NI RT 2009 software. Im using about 55% CPU and 92% memory on the device.
    Regards,
    Ken

    I would kind of expect that if the CPU usage was really high, but not at 55%.  Have you narrowed it down to this specific piece of code?  Have you built a simple do-nothing application and deployed it to your controller?  And could you expand on "becomes unresponsive", does it work for a while then stop, or is it immediate?
    Justin Parker
    National Instruments
    Product Support Engineer

  • Netscape Enterprise Server running Cylink PrivateWire security software becomes unresponsive

    I'm using iPlanet Web Server 4.1, Server Side Java Script (SSJS), LiveWire, and a security software, Cylink PrivateWire. When concurrent users increase, the server becomes unresponsive, forcing me to restart the hung server. What configurations need to be done on the Web Server.Will configuration of parameters 'Listen Queue Size', 'HTTP Persistent Connection Timeout', 'Native Thread Pool' have a specific effect?

    Hi,
    Please let me know, The below information.
    1. is there any errors? in error log.
    3. let me know the .perf output of your server.
    4. iWS service pack ??
    And please try to increase RqThrottle(magnus.conf) and file descriptors value( at OS side).
    and let see any improvements.
    (http://docs.iplanet.com/docs/manuals/ enterprise/41/scaling/html/estune.htm)
    And to confirm the sceniro iWS becomes
    unresponsive after particular load. I would request you
    to create one more test instance without enableing
    Cylink PrivateWire security software. And test it out
    whether iWS becomes unresponsive after some concurrent users increase.
    Thanks,
    Thanks,
    Dakshin.
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support.

  • FINDER becomes UNRESPONSIVE during AppleScript runs in 10.6.5

    Has anyone experiences the Finder becoming unresponsive when running a script in Snow Leopard? We have scripts that push PDFs to an Apple Server (10.4) via SMB or AFP and while the script does run fine- during the last minute of it running, the Finder and the AppleScript become unresponsive for 30-60 sec or so then snap back and finish their job.
    This was not happening in Leopard (so they say) to the same Tiger Server
    Any Ideas what we may be experiencing? A suggested Fix? is 10.6.7 going to resolve this issue with Slow SMB connections?

    I have the exact same problem on two of my imacs, both have the 10.6.5 update and have been having networking problems since November of last year. I have pinged both IP addresses successfully so they are active.I have also tweaked the proxy settings for our network, trying all combinations, to no avail.
    I have at least succeeded in getting one of the macs to connect to email and Safari but the connection in Safari times out after about 10 minutes and then hangs and you have to force quit. Thereafter only a reboot will restore Safari.
    The second imac is in a worse state, in that it does not connect up at all even though the network is active and IP has been successfully pinged.

  • Apple TV will stream music but will not connect to iTunes library to stream movies or podcasts.  During the unsuccessful connection process, iTunes becomes unresponsive and must be forced to quit.

    Apple TV 3 will stream music via Home Sharing from iTunes on Mac running 10.6.8 but will not connect to iTunes library to stream movies or podcasts.  When trying to connect, iTunes becomes unresponsive and must be forced to quit.  ATV will stream movies purchased through the ATV but not those purchased through or ripped/copied onto the Mac.  I've tried fixes suggested for similar problems (rebooting ATV and Mac, signing out then back into iTunes Store) to no success.  Any suggestions will be appreciated.

    This is the most bogus example of Apple rip-off EVER.  They do not advertise this *feature* and yet expect people to invest in an Apple ECOSYSTEM?  My experience with Apple TV using a central media "server" (a dedicated Mac Mini) has been atrocious.  I continually get "Cannot connect..." messages and with typical Apple "it just works" mentality, there is no reason stated.  I HATE APPLE TV and I HATE APPLE.  Peddle your crapple somewhere else.

  • Process file becomes unresponsive when run on Lookout 6.7

    Hi,
    The attached process file was developed using Lookout 6.1 which ran on a windows vista computer.  That setup ran flawlessly for many years until the computer started having problems.  I recommended that a new W7 computer be put into service to run the process.  After many attempts, Lookout 6.1 refused to install properly on the W7 computer (sql server service pack upgrade problem).  Anyway, I then recommended upgrading to the newest Lookout, which turned out to be Lookout 6.7.  While the purchase of software and hardware was underway, I pulled a W7 32bit computer with Lookout 6.6 out of its normal duty to run this process and it ran flawlessly.  Lookout 6.7 arrived and was installed in a new W7 32bit computer.  The process loads into 6.7 okay but after a while, Lookout 6.7 becomes unresponsive.  I've tried to figure out why it runs on 6.6 but not 6.7 but haven't been able to narrow it down.  I'm hoping someone can test the process to see if they have a similar experiece.  Any help or ideas would be appreciated.  p.s. the process will look kind of messy because you won't have some of my graphic images.
    Regards,
    Joe C.
    Attachments:
    wvwd1.zip ‏155 KB

    I checked the License Manager and I only have the run time license. However, when I try to activate it as Developer it doesn't work. I called Technical Support and they can't get me the correct activation code for the 6.7.1 Developer License.
    SCADA Programmer at the Coachella Valley Water District.

  • Xserve 10.5.8 Becoming Unresponsive

    I've been running an Xserve relatively smoothly for a few years now. A few months ago, the Xserve became unresponsive and after a reboot it seemed that Kerberos had stopped. Since this moment the Xserve will intermittently become unresponsive in which case it needs to be restarted. Typically, this will happen once or twice a day.
    By "unresponsive" I mean that any attempt to connect via ssh or sftp fails, cron jobs fail to run, and attempting to launch any application from the server itself results in the application crashing immediately.
    While the Xserve is unresponsive, DHCP, Apache, and all port forwarding seem to work fine - most of the time.
    Nothing stands out to me in the system log, and more than anything I wanted to see if anyone has experienced similar behavior and a potential fix. 
    Any help would be greatly appreciated.

    No its not, sorry I forgot to add that. Nothing is locked I have monitor keyboard and mouse hooked up all of which work fine when booting from the old system drive, just the cloned hdd wont boot, however system prefs says its bootable and will allow me to select it as the startup disk. 250GB SATA2 HDD GUID partition map 1 partition total cloned through disk utility's Restore function.

  • Cfmx7 Taking 100% of Processor (Web becomes unresponsive)

    The server in question has been running fine for weeks at a time, until recently.
    After  a reboot (because of a Kernel upgrade for RHEL) it started acting up.  Roughly every 12 hours, the cfmx7 process becomes unresponsive, and takes up  about 100% of the CPU.  This makes the server seem unresponsive to web requests.   The only message in the log when this happens is "java.lang.OutOfMemoryError"  over and over until the process is killed and the service is restarted.  I've already tried upping the memory in the JVM, but still no fix.  Any other  thoughts?
    Configuration Info:
    JVM Arguments:
    -server -Dsun.io.useCanonCaches=false -XX:MaxPermSize=256m -XX:PermSize=128m -XX:NewSize=48m -Dcoldfusion.rootDir={application.home}/../ -Dcoldfusion.libPath={application.home}/../lib
    Min JVM Heap = 1024MB
    Max JVM Heap = 1536MB

    If you are using a 32-bit RHEL version, then i think you are setting your Min and Max heap too high. On paper, a JVM (1.4 and up) running on a 32-bit OS can be allocated a maximum of 1.6, although in CF, this is not always true. By experience, the max you can allocated CF on 32-bit is 1.3-1.4, and that's just OS and CF. If you a have a 64-bit OS, on paper, you can go and set it up a full 4.gb. See this blog by Steve E. --- http://www.talkingtree.com/blog/index.cfm/2007/8/29/CF8-Performance-64-bit
    My suggestion is to start your Min/512 - Max/1024, then monitor your performance. Also, since you are running CFMX7, then I suggest you take some java stack traces to see what's going on under the hood. Here's the link --- http://kb2.adobe.com/cps/183/tn_18339.html
    HTH
    Melvin T.

  • IFolder becomes unresponsive weekly

    Hello all,
    Running OES2.2-LX (64bit) with iFolder3.8. Every week iFolder becomes unresponsive and the only think I know to do is restart the server. What log file and where do I look when iFolder becomes unresponsive. Does anybody know what would I look for once I get to the log file (error message or something). This is a problem. If I can't figure this out, will have to open an SR.
    Thanks
    Hans

    All,
    Here is another update. As of today, 3 Jun my iFolder3 server is working great. I made the change as G.G. recommended from the last post and it seems to work fine. It is still an OES2.2-lx-64 server.
    Thanks
    Hans
    >>> On 5/19/2011 at 9:41 AM, in message <[email protected]>, Hans<[email protected]> wrote:
    G.G.
    Yes, I added the following as you recommended. MONO_NO_SMP=1 Will see how this works.
    Thanks
    Hans
    >>> On 5/19/2011 at 1:09 AM, in message <[email protected]>, G.G. Hegde<[email protected]> wrote:
    I believe that all the below observations are post MONO_NO_SMP changes, please confirm.
    Log says that at 11 it was restarted, btw until there is any request from clients or other servers you would not see any further logs even if its started.
    You could also use pkill to kill mono process, just to rule out any other issue is causing the server unresponsive.
    >>> Hans<[email protected]> 19-05-2011 01:17 >>>
    Hey all,
    Armed with some knowledge from Willem and GG here are some snippets from 3 log files: iFolder stopped around 1300 (1pm). I had to restart it at around 1335 or so. I notice some curious things going on around this time.
    1) Segfault at 12:42 from the var/log/message file
    2) At 1100 the database is being shut down from the Simias log file. But I don't see anywhere that the database is coming back up. Also, in this same log file 11:00:09 is the last entry until 13:33. Probably when I restarted the server.
    3) From the Simias.Access log file 10:59:56 is the last success entry then nothing til 13:47:13.
    4) Timing of this is much more than just pure luck. Something is going on.
    Thanks
    -Hans
    From /var/log/message:
    May 18 12:42:29 Shrike kernel: mono.bin[32456]: segfault at 00002aaaac0fbf10 rip 00002ab549cc40dd rsp 00002aaaac0fbee0 error 6
    From Simias log file:
    2011-05-18 11:00:02,009 [Simias Manager Stop] INFO Simias.Service.Manager - The database is being shut down.
    2011-05-18 11:00:02,081 [Simias Manager Stop] INFO Simias.Service.Manager - "Simias User Movement Plugin" service stopped.
    2011-05-18 11:00:02,082 [Simias Manager Stop] INFO Simias.Service.Manager - "Simias Report" service stopped.
    2011-05-18 11:00:02,117 [Simias Manager Stop] INFO Simias.Service.Manager - "Simias Server" service stopped.
    2011-05-18 11:00:02,117 [Simias Manager Stop] INFO Simias.Service.Manager - "Simias Journal" service stopped.
    2011-05-18 11:00:02,118 [Simias Manager Stop] INFO Simias.Service.Manager - "Simias Local Domain Provider" service stopped.
    2011-05-18 11:00:02,133 [Simias Manager Stop] INFO Simias.Storage.ChangeLog - Change Log Service stopped.
    2011-05-18 11:00:02,133 [Simias Manager Stop] INFO Simias.Service.Manager - "Simias Change Log Service" service stopped.
    2011-05-18 11:00:02,134 [Simias Manager Stop] INFO Simias.Service.Manager - Services stopped.
    2011-05-18 11:00:05,059 [Simias Manager Start] INFO Simias.Storage.ChangeLog - Change Log Service started.
    2011-05-18 11:00:05,063 [Simias Manager Start] INFO Simias.Service.Manager - "Simias Change Log Service" service started.
    2011-05-18 11:00:05,064 [Simias Manager Start] INFO Simias.Service.Manager - "Simias Local Domain Provider" service started.
    2011-05-18 11:00:05,065 [Simias Manager Start] INFO Simias.Service.Manager - "Simias Journal" service started.
    2011-05-18 11:00:09,847 [Simias Manager Start] INFO Simias.Service.Manager - "Simias Server" service started.
    2011-05-18 11:00:09,862 [Simias Manager Start] INFO Simias.Service.Manager - "Simias Report" service started.
    2011-05-18 11:00:09,871 [Simias Manager Start] INFO Simias.Service.Manager - "Simias User Movement Plugin" service started.
    2011-05-18 11:00:09,871 [Simias Manager Start] INFO Simias.Service.Manager - Services started.
    2011-05-18 13:33:39,876 [Simias Manager Start] INFO Simias.Storage.ChangeLog - Change Log Service started.
    From Simias.access log file:
    18-05-2011 10:59:56 "Stop" "Success" "NorbS" "-" "ed068a77-3661-4802-b887-c1fbdb809ed5"
    #version: 1.0
    #Fields:**date**time**method**status**user**uri**i d**
    #version: 1.0
    #Fields:**date**time**method**status**user**uri**i d**
    #version: 1.0
    #Fields:**date**time**method**status**user**uri**i d**
    18-05-2011 13:47:13 "GetChanges" "Success" "GlebP" "-" "969b46af-e533-45c1-b48c-49e9ba054f84"
    >>> On 5/18/2011 at 1:50 PM, in message <[email protected]>, Hans<[email protected]> wrote:
    GG,
    Thanks for your reply. iFolder became unresponsive again today. I made your suggested changes. This time the "server" became unresponsive to the point it would NOT shut down. All I could do is hit the power button. Will check the logs Willem suggest in previous post.
    -Hans
    >>> On 5/10/2011 at 6:36 AM, in message <[email protected]>, hegdegg<[email protected]> wrote:
    You will following line in /et/apache2/conf.d/simias.conf file
    MonoSetEnv simias10
    "SimiasRunAsServer=true;SimiasDataDir=/var/simias/data/simias;MONO_THREADS_PER_CPU=2000"
    modify to add mono_no_smp
    MonoSetEnv simias10
    "SimiasRunAsServer=true;SimiasDataDir=/var/simias/data/simia;MONO_THREADS_PER_CPU=2000;MONO_NO_SMP=1"
    restart of apache is required after this update. Let us know the
    results.
    best regards,
    gg
    hegdegg
    hegdegg's Profile: http://forums.novell.com/member.php?userid=12470
    View this thread: http://forums.novell.com/showthread.php?t=437560

  • AVCHD video support in Adobe Elements 8 - adobe becomes unresponsive

    I have Adobe Elements 8 on Win 7 64-bit.   I purchased a new camera Panasonic DMC-FZ200 which does 1080p video and stores file in AVCHD video format on the SD card.  I imported my photos/video first time from my new camera and the import is failing on the AVCHD video files.   It just hangs and causes Adobe Elements to become unresponsive.
    A popup window eventually comes up and says:
    G:\PRIVATE\AVCHD\BDMV\STREAM\00001.MTS
    server execution failed

    sherveveyj1
    Premiere Elements 8.0/8.0.1 is a 32 bit application running in the 32 bit compatibility mode of the 64 bit system and as such has the limitations of 32 bit, namely, maximum supported installed RAM = 4.0 GB of which typically 3 GB or less are available. Many found that the program does not have enough resources for serious AVCHD editing  for medium to large size projects. Some resorted to converting the footage to the less resource demanding MPEG2 1920 x 1080i while others experimented with a proxy method which used to be in FAQ.
    http://forums.adobe.com/thread/486598
    http://forums.adobe.com/thread/390605
    Are you shooting 1080p60 with your Panasonic DMC-FZ200. How do you intend to export the footage?
    The advanages of upgrading to version 11 for your situation include gaining a 64 bit application running in a 64 bit system of Windows 7 or 8 which will make available more of the computer resources. And, version 11 is the first to offer the 1080p60 and 1080p50 project preset. You might want to look at the free 30 day tryout of the program from Adobe to determine if it is something that would work to your advantage.
    If you wish to pursue making due with what you have, please let us know and more information on working with AVCHD in Premiere Elements 8.0/8.0.1 will be discussed in depth, including workarounds.
    Thanks.
    ATR

  • SSH (slogin) Becomes Unresponsive

    This problem is getting really annoying. I use slogin to securely log into various servers. If I use bzip2 or gzip to compress a large tar ball, the connection becomes unresponsive. The terminal window is, effectively, locked until the server closes the connection.
    What switches need to get the OS X implementation of SSH to behave like the SSH provided by BSD/OS, Sun OS, Linix, and even PuTTY on a Windows-based system?

    I've been using ssh on Mac OS X for years, talking to Linux, Solaris, and AIX systems. I have never had this problem. Mac OS X uses the OpenSSH implementation.
    I'm only saying that I know ssh can work, not that you do not have a problem.
    You might try making an ssh connection using
    ssh -o TCPKeepAlive=yes ...
    and see if that changes anything. That might indicate that there is an issue on the server or the client dropping the connection if there is no traffic for a period of time.
    Also do you use csh/tcsh as a shell on the remote systems? I only ask because csh/tcsh has an autologout mechanism, but that is generally defaults to 60 minutes.
    Does your Mac route through an uniquely different networking paths that your BSD, Solaris, Linux, and Windows systems do not. I'm just trying to isolate differences as a diagnostic technique.
    Finally, it is possible to enable additional debugging on the ssh client using -v -v -v when you make your connection. And you can start the sshd daemon with -d that sends verbose connection information to the system log. Setting up a test with this additional debugging might give a clue about what it breaking your connections.

  • ITunes UI for mac becomes unresponsive out of no where.

    The iTunes UI has been becoming unresponsive repeatedly. I'm not sure if its stability has something to do with my iTunes library being on a NAS (Seagate BlackArmor 2TB) or because the iTunes library is growing too large, or because iTunes developers don't know how to make a simple mp3 player.
    On a side note: It would be nice if Apple made an iTunes that doesn't use 295 ports or 14 threads or store iPhone backups among thousands of tiny delta files in single directory. Maybe it should have been called iTunes X.1.0.

    I have a similar issue. iTunes is just SLOW. I double click on a song, wait ten seconds, it plays. Click on a playlist... ten seconds... playlist selected. I see the color wheel way more than I think I should.
    Is it because I have TOO MANY songs? I have 100,000+ songs. As a DJ I need all these songs and haven't been able to find a good competitor "Mp3 Player" for the Mac which will serve my needs.
    Hasn't completely froze on me yet though.

  • AFP becomes unresponsive - High CPU Load

    OS X Server 10.5.8
    We have been noticing that our Home Directory Servers have been plagued with becoming unresponsive. It happens every week or two.
    When this situation happens, there is high CPU on the server.
    I can't see any pattern as to the root cause (or the fix).
    I have seen it fix itself over time (like an hour) and it goes away if I restart the server.
    I have tried things like deleting user cache folders (thinking there is fragmentation), looking for apps being run from the server (user copies apps to their desktop), but this does not resolve the issue long term. My eyes don't see anything in the logs, but I could be missing something.
    It is a cleanly-installed OS from 10.5.4.
    No RAID, or anything like that, it is a very clean, and vanilla install and configuration
    AFP is only thing running.
    Only used for Home directories.
    I have this happening on two of our servers.
    This NEVER happened last year, when we were running 10.5.4

    I have been scouring the interwebs for advice on this topic. I do not know if this is definitive or not, but this appears to be an accurate assessment, with two possible solutions, depending on your size and traffic and network:
    a) Use folder redirection to direct cache items to local computer
    b) Upgrade to 10.6 with gobs of RAM
    (I haven't tested either of these myself yet, I am exploring my options and strategizing, but based on all of the noise regarding this issue, the info below seems reasonable - especially considering we only recently started seeing the issue):
    {Others quote:}
    DO NOT go back. I have been communicating with people across the country and in Europe who >have this same problem, and several have tried going back. It does not help. The way the thread >issue comes up is that 10.5 and earlier have a maximum number of threads available - like 3000 I >think. (You can find the real numbers on Apple's website if you look for the benefits of 64-bit >goodness.) As long as this is sufficient for all the open and active files your users have, there is no >performance hit. But as soon at they are all used up, file requests are put in a wait state. That can >snowball very quickly, and it takes the server an inordinate amount of time to sort it all back out. >It's a losing game. Performance goes from pretty good to dismal in an instant.
    With 10.6, you get the same number of threads 10.5 had as an absolute max with a small amount >of memory, and your max goes up linearly with more memory, to some really big maximum. I have >servers with 12, 16, and 24 GB of memory, and none of them get above maybe 10% processor >utilization under 10.6. The same servers were saturated for long periods with 10.5.8 and earlier. >10.5 at its best had worse performance than 10.6 at its worst.
    As to amount of memory, why skimp? Buy it from Crucial/Micron, and you can afford as much as >you want. I think 12 is a minimum for most purposes. That's just a few hundred dollars.
    I have not heard of anyone fixing this issue without 10.6. But everyone who uses 10.6 is fixed. I >was scared to try 10.6 at first. AppleCare said not to use it in production. But Corey Anderson >asked me what I had to lose. I could think of nothing, so I did it. An hour doing the upgrade, plus >several more on the phone with ApCare fixing issues they did not know were there, and everything >was good. 
    10.6.2 has been pretty good in almost every way. AFS crashes for me every 14 days - with an error >they understand but have not yet fixed - but recovers on its own and without my assistance. Users >usually don't notice. Could be better, but I can live with this.
    My staff server used to go bad at about 90-100 active users. Now it handles 140-150 without >noticing. I have a mix of 10.4 - 10.6 clients, and all are good with the 10.6 file servers and 10.5.8 >other servers. One big happy family.
    You need 10.6!
    {quote}

  • System completely freezes and becomes unresponsive

    Hi,
    We have a single processor, 1 GB RAM Redhat system (desktop). Normally with the database(oracle 10.1g) and client connections running, the memory utilization of this server is around 90-99% . However every few days the box completely freezes and becomes unresponsive (users cannot login, client connections fail). We have to hardboot the box and restart the database. When in stuck state, the log files are not updated, except that sendmail logs heavy load average. ( Messages like "Load Avg 12: 1 Times(s) Load Avg 13: 1 Times(s) Load Avg 14: 1 Times" and so on) and the free memory falls to 8 mb or less but with above 2 gb swap space available.
    My question is if there is no free memory, system should thrash (excessive swapping) and become slow, but instead our box completely freezes, though the interactive response ( for any connection which is still active) and ping response is ok, they aren't slow.
    Is there any kernel level parameter that can be tuned so the server won't freeze, (tries to move the memory pages to swap space or any other way). When the server is stuck (freezes ) any ssh connections still active will stay on, but new connections fail. One time, using that session, I tried to free up memory by killing processes like X Server etc, but still the server didn't unfreeze.
    Server info:
    Red Hat Enterprise Linux AS release 3 (Taroon Update 4)
    Kernel (uname -r) 2.4.21-27.EL
    Intel Pentium 4 CPU 2.80GHz (Single processor)
    1 GB RAM
    Oracle db version - 10.1.0.3.0
    Lastly, I don't think this is any hw problem, because we see similiar problem on multiple system with similiar configs.
    Please guide how to resolve the problem. Thanks.

    Hi Praveen, thanks for your inputs.
    Andrey - We've 3 log files. rest info -
    SQL> select * from v$log;
    GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS FIRST_CHANGE# FIRST_TIM
    1 1 5599 10485760 1 NO CURRENT 561614475 25-NOV-05
    2 1 5597 10485760 1 NO INACTIVE 561603206 25-NOV-05
    3 1 5598 10485760 1 NO ACTIVE 561608824 25-NOV-05
    SQL> select * from v$instance_recovery;
    RECOVERY_ESTIMATED_IOS ACTUAL_REDO_BLKS TARGET_REDO_BLKS LOG_FILE_SIZE_REDO_BLKS LOG_CHKPT_TIMEOUT_REDO_BLKS LOG_CHKPT_INTERVAL_REDO_BLKS FAST_START_IO_TARGET_REDO_BLKS TARGET_MTTR ESTIMATED_MTTR CKPT_BLOCK_WRITES OPTIMAL_LOGFILE_SIZE ESTD_CLUSTER_AVAILABLE_TIME WRITES_MTTR WRITES_LOGFILE_SIZE WRITES_LOG_CHECKPOINT_SETTINGS WRITES_OTHER_SETTINGS WRITES_AUTOTUNE WRITES_FULL_THREAD_CKPT
    70 501 5305 18432 5305 0 12 35578 0 139734 0 0 6467 697

Maybe you are looking for

  • Vendor wise procurement in Project.

    Hello Experts,                      Is there  a T-code through which I can get the procurement details vendor wise in a project.? I mean to say How much I have procured from 5 vendors in project X..Can I get the detail of it? Please tell which t-code

  • Comparable and comparator interface in java

    Hi All, How comparable and comparator interface works in java and when to use comparable and when to use comparator.please give me some example(code) as I am not able to understand the difference. Thanks Sumit Edited by: sumit7nov on May 17, 2009 4:4

  • ITunes won't start without internet

    Hi is this a bug or a feature ? I cannot start iTunes while I am not connected to the internet. I get the beachball and iTunes is not responding. As soon as I activate the internet connection iTunes starts up immediately. Is this the way it is suppos

  • Allocation error - Unable to communicate with the server

    Hello experts,   I am trying to run a simple allocation scenario in NW 7.5 sp3 version. Script logic: *RUNALLOCATION *FACTOR USING/TOTAL *DIM P_ACCT1 WHAT= CE0004010; WHERE=BAS(CE0004000); USING=CE0004030; TOTAL=<<< *DIM P_CC WHAT= US; WHERE=<<<; USI

  • Can't install itunes on my windows pc

    An update for iTunes failed to install, so I downloaded the latest 64 bit iTunes to my Windows 7 PC and ran the install. At the end it says it cannot start the Mobile Device Service. I also cannot get it to start from the Services menu. iTunes was ru