WL 4.5.1 Hangs on repeated Refresh!! Help!!

Hi,
I am due to deploy a two tier app (JSP/Servlets) in a few days. I use
weblogic 4.5.1 on a Solaris box (1GB RAM, 2 processor). The server starts
with a heap of 512MB, noclassgc. The app works beautifully; but, on a
particular page (quite DB intensive; and I use connection pooling), if I hit
refresh repeatedly, the server just donesn't return any html after a while.
the server does't hang or crash; it just doesn't do anything. I twiddled
with many weblogic properties including executeThreadCount (i set it to 25),
connection pool sizes.. etc...
All my JSPs get a connection from the pool and close it at the end. I also
have a connection.close() in the finally block. Also, the weblogic console
shows that the connections are being release fast. But, I did notice that
the poolSize never increaed from the initial size even though I have set
capacityIncremet to 1. Please help!!!
Here is my sample .jsp code:
<%import stuff%>
<%System.out.println("Begin-------");%>
<%
get connection from connection pool
prepare statement
rs=ps.executeQuery()
iterate through rs
display in html table
close resultset
close statement
close connection
finally{
close connection
System.out.println("End--------");
%>
When I load this page, I see both the "Begin---" and "End----" lines on the
weblogic log. But, when I start hitting refresh before I see any HTML on
the browser, I see only a bunch of "Begin-----"s and NO "End-----" at
all!!!!!! I am not instantiating any user defined classes in the .jsp. the
sqlq query is not an expensive one either. What's going on???
I did some further investigation and noticed that If I hit stop (after WL
stops responding) and go to any .jsp that doesn't require a connection pool,
it works!! I saw from some newsgroup thread abt. the
weblogic.system.httpThreadCount. I tried this too; no avail.
Please HELP!!!
Thanks so much!,
Shrisha
Shrisha Radhakrishna
mailto:[email protected]
mailto:[email protected]
http://members.tripod.com/cricforum
(408) 844-7503 (Off)
(408) 910-9422 (Cell)

I do have a try block and I close resultset, prepared statement, and
connection in all pages.. :-)).. Also, I did a thread dump and noticed
that all the executeThreads were waiting at the executeQuery() statement.
Thanks!,
Shrisha
"Wei Guan" <[email protected]> wrote in message
news:[email protected]...
>
>
Cheers - Wei
Shrisha Radhakrishna <[email protected]> wrote in message
news:[email protected]...
Hi,
I am due to deploy a two tier app (JSP/Servlets) in a few days. I
use
weblogic 4.5.1 on a Solaris box (1GB RAM, 2 processor). The serverstarts
with a heap of 512MB, noclassgc. The app works beautifully; but, on a
particular page (quite DB intensive; and I use connection pooling), if Ihit
refresh repeatedly, the server just donesn't return any html after awhile.
the server does't hang or crash; it just doesn't do anything. I
twiddled
with many weblogic properties including executeThreadCount (i set it to25),
connection pool sizes.. etc...
All my JSPs get a connection from the pool and close it at the end. Ialso
have a connection.close() in the finally block. Also, the weblogicconsole
shows that the connections are being release fast. But, I did notice
that
the poolSize never increaed from the initial size even though I have set
capacityIncremet to 1. Please help!!!
Here is my sample .jsp code:
<%import stuff%>
<%System.out.println("Begin-------");%>
<%
get connection from connection pool
prepare statement
rs=ps.executeQuery()
iterate through rs
display in html table
close resultset
close statement
close connection
finally{
close connection
System.out.println("End--------");
}where is your try and catch block???
put
close resultset
close statement
close connectioninto your finally block and you don't need them in try block.
I don't know it is related or not.
When WL 4.5.1 hangs, do a thread dump, read the call stack and you might
spot something useful.
%>
When I load this page, I see both the "Begin---" and "End----" lines onthe
weblogic log. But, when I start hitting refresh before I see any HTML
on
the browser, I see only a bunch of "Begin-----"s and NO "End-----" at
all!!!!!! I am not instantiating any user defined classes in the .jsp.the
sqlq query is not an expensive one either. What's going on???
I did some further investigation and noticed that If I hit stop (after
WL
stops responding) and go to any .jsp that doesn't require a connectionpool,
it works!! I saw from some newsgroup thread abt. the
weblogic.system.httpThreadCount. I tried this too; no avail.
Please HELP!!!
Thanks so much!,
Shrisha
Shrisha Radhakrishna
mailto:[email protected]
mailto:[email protected]
http://members.tripod.com/cricforum
(408) 844-7503 (Off)
(408) 910-9422 (Cell)

Similar Messages

  • WL 4.5.1 hangs on repeated Refresh!!

    Hi,
              I am due to deploy a two tier app (JSP/Servlets) in a few days. I use
              weblogic 4.5.1 on a Solaris box (1GB RAM, 2 processor). The server starts
              with a heap of 512MB, noclassgc. The app works beautifully; but, on a
              particular page (quite DB intensive; and I use connection pooling), if I hit
              refresh repeatedly, the server just donesn't return any html after a while.
              the server does't hang or crash; it just doesn't do anything. I twiddled
              with many weblogic properties including executeThreadCount (i set it to 25),
              connection pool sizes.. etc...
              All my JSPs get a connection from the pool and close it at the end. I also
              have a connection.close() in the finally block. Also, the weblogic console
              shows that the connections are being release fast. But, I did notice that
              the poolSize never increaed from the initial size even though I have set
              capacityIncremet to 1. Please help!!!
              Here is my sample .jsp code:
              <%import stuff%>
              <%System.out.println("Begin-------");%>
              <%
              get connection from connection pool
              prepare statement
              rs=ps.executeQuery()
              iterate through rs
              display in html table
              close resultset
              close statement
              close connection
              finally{
              close connection
              System.out.println("End--------");
              %>
              When I load this page, I see both the "Begin---" and "End----" lines on the
              weblogic log. But, when I start hitting refresh before I see any HTML on
              the browser, I see only a bunch of "Begin-----"s and NO "End-----" at
              all!!!!!! I am not instantiating any user defined classes in the .jsp. the
              sqlq query is not an expensive one either. What's going on???
              Please HELP!!!
              Thanks!,
              Shrisha
              Shrisha Radhakrishna
              mailto:[email protected]
              mailto:[email protected]
              http://members.tripod.com/cricforum
              (408) 844-7503 (Off)
              (408) 910-9422 (Cell)
              

    Hi,
              I am due to deploy a two tier app (JSP/Servlets) in a few days. I use
              weblogic 4.5.1 on a Solaris box (1GB RAM, 2 processor). The server starts
              with a heap of 512MB, noclassgc. The app works beautifully; but, on a
              particular page (quite DB intensive; and I use connection pooling), if I hit
              refresh repeatedly, the server just donesn't return any html after a while.
              the server does't hang or crash; it just doesn't do anything. I twiddled
              with many weblogic properties including executeThreadCount (i set it to 25),
              connection pool sizes.. etc...
              All my JSPs get a connection from the pool and close it at the end. I also
              have a connection.close() in the finally block. Also, the weblogic console
              shows that the connections are being release fast. But, I did notice that
              the poolSize never increaed from the initial size even though I have set
              capacityIncremet to 1. Please help!!!
              Here is my sample .jsp code:
              <%import stuff%>
              <%System.out.println("Begin-------");%>
              <%
              get connection from connection pool
              prepare statement
              rs=ps.executeQuery()
              iterate through rs
              display in html table
              close resultset
              close statement
              close connection
              finally{
              close connection
              System.out.println("End--------");
              %>
              When I load this page, I see both the "Begin---" and "End----" lines on the
              weblogic log. But, when I start hitting refresh before I see any HTML on
              the browser, I see only a bunch of "Begin-----"s and NO "End-----" at
              all!!!!!! I am not instantiating any user defined classes in the .jsp. the
              sqlq query is not an expensive one either. What's going on???
              Please HELP!!!
              Thanks!,
              Shrisha
              Shrisha Radhakrishna
              mailto:[email protected]
              mailto:[email protected]
              http://members.tripod.com/cricforum
              (408) 844-7503 (Off)
              (408) 910-9422 (Cell)
              

  • Since upgrading to FF6 and now through FF7 web pages need repeated refreshing to load this does not happen with other browsers. I have tried many solutions. None have worked. Any ideas?

    Problem began after a Firefox 6 update (i do not remember which one) and has continued through current use of Firefox 7.0.1. Almost all '''web pages load only through repeated refreshing'''. If I do not refresh the web page it will just continue to try to load (as seen by the green rotating ring continually revolving) in a new window with a new tab (as I have set it to do). Nothing stops, nothing crashes. Once the web page completes and opens (after the refreshings) I can close the window click on the bookmark icon or originating link and the web page will load and open quickly (as it should). I have searched for solutions on the Mozilla site and have done many of the possible solutions (deleting history and caches, etc.) Problem seems to be communication in origin (my FF browser talking to web page server). I do not use a proxy. My set up to the internet is: laptop thru Verizon USB modem to internet. Operates as a wireless dial-up with speeds averaging 55 kbs (fast enough for me). I have used this set up for years with no previous trouble. Anyone have similar trouble, ideas or solutions?

    Thanks for your reply cor-el. I had never heard of nor seen the pref network.http.max-connections until I read about it in some of the replies in this support forum. People were saying 256 was the old setting and a new setting of 48 would correct my problem. When I followed the instructions to get to - see - and change the setting I discovered that my network.http.max-connections was already set to 48. I never did this. The only way I can think of that this setting was changed is that it happened by an automatic update to my Firefox browser. So, the problem I have was probably happening while this setting was at 48 all along. It is still set at 48 and I am still having the same problem. I will try as you suggest and set it to 30 and see what happens. I'll let you know the results. That's again for your response.

  • I updated my iPhone 4 software now it's turninng off and off and keeps repeating . HELP!

    updated my iPhone 4 software now it's turninng off and off and keeps repeating . HELP!

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.

  • Firefox 3.6.13 hangs freezes repeatedly with multiple tabs open

    I am running FF v3.6.13 on a Vista laptop. I typically have over 60 tabs open during a session (pretty much the same ones each time). In the last two weeks, FF has started freezing repeatedly while these tabs are open, whether I am using it or it is sitting idle. I either get a dialog box stating that Firefox is not responding and asking if I want to end it or wait for it to respond, or it simply hangs and I have to kill it via Task Manager.
    However, if I run FF with only a few tabs open, it remains running and stable. So, I don't believe it is an extension problem.
    Any ideas what is happening?

    @ Falling Rock
    You seem to have found a plausible answer to the problem. <br>
    But at least as I view your post it is breaking the post container, I will repeat your answer and add line breaks in an attempt to make it easier for those like myself to view what you have written; without requiring excessive scrolling.
    Repeat of above post
    ''Hey, M.,
    I have had this problem with v3.6.13 and earlier versions, too,<br> but I never was anywhere near 60 tabs! WOwwww! <br>
    IMHO, the "issue"is probably caused by your having stretched your virtual memory too far. <br>
    My system is XP Pro x86 SP3 with only 2 GB RAM; <br>you must have 4GB or upwards on a 64-bit system, to grow to 60 tabs. <br>Mine gets flaky around 12-15, esp. with a Word doc window or two running as well. <br>Mine used to go troublesome around 8 or so, but I increased my Virtual Memory setting in Windows. <br>You might try increasing the virtual memory setting significantly, if Windows will let you. <br> See if that will help your problem. Good luck!
    ''

  • 3 Flash-LED - No boot, wait awhile - works, hangs - rinse/repeat

    I am having 3 flashes of LED no boot issue here with my Mac at work. 3 flashing lights - I've changed out the ram with 3 different pairs (all known to be working) as well as tested each memory bank (in pairs). The funny thing is - after leaving it off overnight or for a length of time - it will boot and work for a while. Then it will hang/lock and rinse repeat with the no-boot 3 flashes of the LED. This is a Dual 2.0 G5 (currently w/ 2Gb Ram). This was/is a hand-me-down at my place of employment and i am rather New to the whole MAC scene so any help would be appreciated. Also, any ballpark figure on what an Authorized Apple dealer would charge for diagnosis would be helpful as well. Thanks in advance.

    Hi TalkingsMAC-
    Greetings and welcome to the Apple boards
    Known to be working how? Are they from the same model G5?
    Each subsequent OSX system upgrade tends to make a system pickier about the RAM that it will use.
    Since it is winking at you, the first thing to do is get past the memory issue. Make sure it is installed correctly and in matched pairs: Power Mac G5: Memory Specifications and Requirements
    This may be helpful: Memory (DIMMs) Replacement Instructions
    As far as the charge why not call and ask?
    Luck-
    -DaddyPaycheck

  • Repeater refresh bug?

    I am having a problem with nested Repeater controls not
    refreshing properly to reflect the data that is bound to the data
    provider for each of the Repeater controls. My problem is related
    to the following:
    I have two classes, say Parent and Child which are as
    follows:
    [Bindable]
    public class Parent {
    public var children : ArrayCollection = new
    ArrayCollection();
    [Bindable]
    public class Child {
    public var name : String = “foo”;
    public var isEnabled : Boolean = true;
    public var isSelected : Boolean = false;
    public var enabledChildren : ArrayCollection = …;
    public var disabledChildren : ArrayCollection = …;
    The enabledChildren and disabledChildren collections contain
    references to other Child objects that exist within the children
    collection of another parent.
    Then I have the following nested Repeater control structure:
    <mx:Repeater id="parentRepeater"
    dataProvider="{model.parents}">
    <mx:Repeater id="childRepeater" dataProvider="{
    parentRepeater.currentItem.options}">
    <mx:CheckBox label="{childRepeater.currentItem.name}"
    enabled="{childRepeater.currentItem.isEnabled}"
    selected="{childRepeater.currentItem.isSelected}"
    click="optionClicked(event);" />
    </mx:Repeater>
    </mx:Repeater>
    Where model.parents references an ArrayCollection of Parent
    objects.
    The problem that I am having is that when a checkbox is
    clicked, the optionClicked function is called, and within this
    function there is logic that iterates over the enabledChildren and
    disabledChildren collections of the Child object bound to the
    clicked checkbox, and it sets the isEnabled and isSelected
    properties of each Child object in these collections to either true
    or false, depending on the current state of the checkbox that was
    clicked.
    However, when I do this, the checkbox controls are not
    updated properly, as the enabled and/or selected state of the
    checkbox does not accurately reflect the value that is stored in
    the object that is bound to this control.
    The only way that I am able to have the checkboxes redraw
    properly is to do a manual refresh on the model.parents collection,
    but doing so causes the view to flicker pretty noticeably.
    Is there any way to perform this type of operation and have
    all of the controls update properly without having to do the manual
    refresh? I know that the data that is bound to the controls is
    being updated properly, but the actual view of the controls is not
    being updated.
    Any help that could be offered on this matter would be
    greatly appreciated.

    "Its impossible to use a two-dimensions Array with a
    Repeater. " that is not correct. It is true that you should avoid
    arrays as dataPRoviders, but I see you are using an
    arrayCollection, which is good. What are (dataType) the child
    objects of the model.parents?
    what you have is close, I don't see an obvious problem. How
    are you updating the dataProvider? You must be using the Collection
    API, and never the low-level array[] notation.
    Tracy

  • JDev 9.0.3 - Working with Custom Tags Hangs JDev Repeatedly!

    All,
    I recently upgraded from JDev 9.0.2 to 9.0.3 because of the new support for JSP 1.2 and Servlets 2.3. As you probably know, JSP 1.2 includes additional support for custom tag development. Unfortunately, JDev 9.0.3 keeps hanging repeatedly when trying to work with a custom tag library. I have seen a couple other postings on this forum that indicate the fact that I'm not alone in this experience.
    It seems that I am able to open a taglib and make a modification, and then save the taglib without a problem. However, if I attempt to make any further changes to that taglib again without restarting JDev, it just hangs JDev and I have to kill the JDev process and restart JDev. This has made JDev extremely frustrating and unusable developing custom tags. I do not have this problem with JDev 9.0.2, but that version does not support the additionally tag library functionality of JSP 1.2, which is supported by 9.0.3.
    Is this a bug with 9.0.3? Does anyone know of a workaround I can try?
    Thanks in advance,
    Kyle Corley

    Hi,
    Logged as bug 2725712.
    Thanks,
    Brian
    JDev Team

  • Repeated refresh or regeneration of clip thumbnails

    When I'm editing in PPRO CC 2014.2 I have noticed now that each time I set a IN AND OUT MARKERS either in the SOURCE WINDOW or do a insert clip onto the SEQUENCE PANE,  all the thumbnails of each clip in the Project window and on the sequence
    completely go blank to regenerate or refresh the image of the thumbnail per each clip.
    I have to wait until the regeneration is done before I can continue.
    I have the Latest desktop MacPro 3.5 GHz 6-Core INtel Xeon with 32 gigs of ram.

    Is there a fix for this well known issue reported back from December 2014?
    I'm editing, or trying to edit a documentary, the experience is a pain.
    The video thumbnails and audio waveforms on my sequence timeline refresh constantly every time I hit play, stop, zoom in, zoom out, cut etc...
    - 180hrs of footage aprox.
    - DSLR 5D EOS Mark III, 7D(1080 23.98) and some B-Roll GoPro Hero 3(1080 29.97)
    - 7min Sequence (my progress is to slow because editing process its unbearable)
    - Disabling clip thumbnails and audio waveforms does not solve the issue, even watching my edit the performance is lagging, no fluid play.
    On the other hand I'm editing a feature film, and the expirience is less painful than the documentary.
    Every now and then when I razor cut an audio clip it bring the beachball of death. Only solution is to Force Quit Premier and pray that you saved before or have some luck if Autosaved your...
    Exporting a OMF or AAF from Premier its almost impossible without trial and error and work arounds.
    - 36hrs of footage aprox
    - ARRI ALEXA ProRess 4444(2K 23.98) transcode to ProRes HQ(2K 23.98)
    - 1hr45min Sequence
    I come from a family of filmmakers, this is what we do. Im a Professional and a Power User. I make a living out of this. I have 13 years in the business and I take my job seriously. I only use professional software.
    Are we out in the woods?
    Adobe...
    Premier Pro CC 2014.2
    OSX Yosemite 10.10.3 (14D136)
    iMac (27-inch, Late 2012)
    3.4 GHz Intel Core i7
    32 GB 1600 MHz DDR3
    MacHD
    NVIDIA GeForce GTX 680MX 2048 MB
    OWC ThunderBay 4 Raid 5
    OWC Elite Pro Dual
    Promise Pegasus R6 Raid 5

  • Safari 5.0.6 repeatedly refreshing back a page - can't find anyone else with this issue.

    I have already searched for this issue, and no one mentions anything quite like it. There are plenty of threads about refreshing problems, but not like the one I'm having.
    For quite awhile now, the same problem has been occurring: I will be on a web page and suddenly safari will refresh and bounce back to a prior page - anything I was doing at the moment disappears (such as filling out a form, writing an email, etc) and I have to start from the beginning. Even things like what I'm typying right now could refresh and disappear at any moment - it's driving me nuts!
    Has anyone else had this problem, or heard of it, and what was the recommended solution?
    Thanks in advance for your help!

    Ok..
    You can also try troubleshooting the Safari .plist  (preferences)
    Go to ~/Library/Preferences. Move the com.apple.Safari.plist file from the Preferences folder to the Desktop.
    Quit then relaunch Safari to test. If that helped, move the .plist file to the Trash.
    ~ (Tilde) character represents your Home folder.
    If it's not Extensions nor corrupted preferences, possibly a third party Safari addon.
    Safari: Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues

  • Finder repeatedly 'refreshes' after update of Quicktime

    Software update showed an update of Quicktime, so I installed it. It required restarting, so I quit applications that were open but it timed out before I got everything done. I restarted, and that is when my Finder started 'refreshing' periodically.By that I mean the desktop disappears for a few seconds and then all the icons and windows come back. I booted up from an eDrive I had created through TechTools and ran the computer through directory rebuilding, and optimized, and checked out all the hardware, etc. Rebooted and still have the same problem. Any thoughts?

    Yep - me too. Finder crashes every few minutes.. Will try re-installing QT 7.5.5 and see what happens...
    Here's the Crash info:
    The application Finder quit unexpectedly
    2009-01-21 18:40:07 -0800
    Date/Time: 2009-01-21 18:40:07.876 -0800
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Finder
    Path: /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Parent: WindowServer [71]
    Version: 10.4.7 (10.4.7)
    Build Version: 1
    Project Name: Finder_FE
    Source Version: 5292900
    PID: 286
    Thread: 3
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x9002704c
    Thread 0:
    0 libSystem.B.dylib 0x9fdf6f48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9fdf6e9c mach_msg + 60
    2 com.apple.CoreFoundation 0x9fcec9ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9fcec2b0 CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x932adb20 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x932ad1b4 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x932f2348 AcquireNextEventInMode + 72
    7 com.apple.HIToolbox 0x932f2138 RunApplicationEventLoop + 132
    8 com.apple.finder 0x00008960 0x1000 + 31072
    9 com.apple.finder 0x00004f18 0x1000 + 16152
    10 com.apple.finder 0x00069ff0 0x1000 + 430064
    11 com.apple.finder 0x00069e98 0x1000 + 429720
    Thread 1:
    0 libSystem.B.dylib 0x9fe1ac8c kevent + 12
    1 com.apple.DesktopServices 0x909fbe50 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2 ...ple.CoreServices.CarbonCore 0x9f503740 PrivateMPEntryPoint + 76
    3 libSystem.B.dylib 0x9fe17908 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9fe17fc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9fe1caac pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x9f503930 MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x909fc4cc TNodeSyncTask::SyncTaskProc(void*) + 116
    4 ...ple.CoreServices.CarbonCore 0x9f503740 PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9fe17908 pthreadbody + 96
    Thread 3 Crashed:
    0 <<00000000>> 0x9002704c 0 + -1878888372
    1 <<00000000>> 0x017fb384 0 + 25146244
    Thread 3 crashed with PPC Thread State 64:
    srr0: 0x000000009002704c srr1: 0x000000004000d030 vrsave: 0x0000000000000000
    cr: 0x00000002 xer: 0x0000000000000000 lr: 0x00000000017fac64 ctr: 0x000000009002704c
    r0: 0x00000000017fac64 r1: 0x00000000059aef40 r2: 0x0000000000000000 r3: 0x00000000017fce24
    r4: 0x00000000059aef80 r5: 0x0000000000000000 r6: 0x00000000017fd0f8 r7: 0x0000000000000000
    r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000000000000 r11: 0x00000000017fd054
    r12: 0x000000009002704c r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x0000000000000000 r21: 0x0000000000000000 r22: 0x0000000000000000 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x0000000000000000 r26: 0x00000000017fd0f8 r27: 0x00000000017fb39c
    r28: 0x0000000000000000 r29: 0x0000000000000000 r30: 0x0000000000000000 r31: 0x00000000017fac2c
    Binary Images Description:
    0x1000 - 0x31dfff com.apple.finder 10.4.7 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    0x505000 - 0x5f3fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x724000 - 0x726fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x9002a000 - 0x9035cfff com.apple.QuickTime 7.6.0 (1290) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x909f9000 - 0x90a81fff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90aea000 - 0x90b5cfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x910b0000 - 0x910f5fff com.apple.bom 8.5.1 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91112000 - 0x91120fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91123000 - 0x912defff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ed000 - 0x913f5fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91434000 - 0x9143ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91453000 - 0x91481fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fe000 - 0x91536fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x915c1000 - 0x915d0fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x915d9000 - 0x915e6fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91630000 - 0x91649fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91904000 - 0x91929fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91b48000 - 0x91b66fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91c72000 - 0x91c76fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c78000 - 0x91ce2fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91d06000 - 0x91d09fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91e10000 - 0x91e52fff com.apple.LaunchServices 183 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91f4c000 - 0x91f6bfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd7000 - 0x92045fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92050000 - 0x920e5fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ff000 - 0x92687fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926ba000 - 0x929e5fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a15000 - 0x92b03fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92fc8000 - 0x92fc8fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fca000 - 0x92fdefff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ff6000 - 0x93006fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93012000 - 0x93027fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93039000 - 0x930c0fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930d4000 - 0x930dffff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93131000 - 0x93140fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9314c000 - 0x931b2fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931e3000 - 0x93232fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93260000 - 0x9327dfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9328f000 - 0x9329cfff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932a5000 - 0x935b3fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93a74000 - 0x93af5fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9414a000 - 0x941bcfff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941f5000 - 0x942bafff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9430d000 - 0x9430dfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94519000 - 0x94556fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94c1d000 - 0x94c8efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94fbd000 - 0x94fc3fff com.apple.filesync 3.1 (99.9.0) /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x9572e000 - 0x95830fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x9588b000 - 0x95952fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x96326000 - 0x963f8fff com.apple.ColorSync 4.4.11 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96500000 - 0x96542fff com.apple.CFNetwork 129.24 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9675a000 - 0x9680bfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x97b40000 - 0x97b86fff com.apple.ImageIO.framework 1.5.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x97ba8000 - 0x97c5ffff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x97e75000 - 0x97e8ffff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97f0b000 - 0x97f49fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9edd1000 - 0x9eeb6fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9eebe000 - 0x9eebefff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9eec0000 - 0x9eed5fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x9eeda000 - 0x9ef91fff com.apple.QD 3.10.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9efce000 - 0x9f01bfff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9f046000 - 0x9f401fff com.apple.CoreGraphics 1.258.82 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9f48e000 - 0x9f4b7fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9f4c8000 - 0x9f79ffff com.apple.CoreServices.CarbonCore 681.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9f805000 - 0x9f880fff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9f8bd000 - 0x9faf0fff com.apple.Foundation 6.4.11 (567.40) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9fc14000 - 0x9fc19fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9fc1b000 - 0x9fc9ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x9fcc9000 - 0x9fda3fff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9fdec000 - 0x9ffa8fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    Model: PowerMac3,5, BootROM 4.2.5f1, 2 processors, PowerPC G4 (2.1), 800 MHz, 1.5 GB
    Graphics: GeForce3, GeForce3, AGP, 64 MB
    Memory Module: DIMM0/J21, 512 MB, SDRAM, PC133-333
    Memory Module: DIMM1/J22, 512 MB, SDRAM, PC133-333
    Memory Module: DIMM2/J23, 512 MB, SDRAM, PC100-322S
    AirPort: AirPort, 9.52
    Modem: Spring, UCJ, V.90, 7.0F, APPLE VERSION 0007, 7/31/2000
    Network Service: Built-in Ethernet, Ethernet, en0
    PCI Card: ATTO ExpressPCI UL3D, scsi-2, SLOT-5
    PCI Card: ATTO ExpressPCI UL3D, scsi-2, SLOT-5
    Parallel ATA Device: ST380011A, 74.53 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-103
    SCSI Device: SCSI Target Device @ 0
    SCSI Device: SCSI Target Device @ 1
    SCSI Device: SCSI Target Device @ 5
    USB Device: Hub, Up to 12 Mb/sec, 500 mA
    USB Device: USB Monitor, LG Electronics Inc., Up to 1.5 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Kensington USB PocketMouse Wireless, Kensington, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    jeff

  • "Restoring the window layout" hang - tried everything! HELP!

    I'm in Mavericks and am experiencing that "Restoring the Window Layout" hang that is kinda infamous around these parts.
    Except that in my case, I've done EVERYTHING that all the other links suggest. I have:
    *Trashed the Layouts folder (inside Users/myusername/Library/App Support/Final Cut Pro)
    *Trashed prefs (inside Users/myusername/Library/Preferences)
    *Followed the instructions to remove FCPX entirely (as found here: Final Cut Pro X 10.1: How to remove and reinstall Final Cut Pro X) *and* repeated the removal of Layouts and prefs as stated above.
    And the problem still persists.
    I am [attempting to run] the latest version (10.1.2). Purchased through the App Store so it is verified as the latest.
    I can in no way get FCPX to launch properly. Every time I try, it hangs during the launch on the "Restoring the Window Layout" launch screen. I do see my last-used project partially drawn behind it, but the window is all funky (things are in weird places).
    Please help...kinda desperate here...

    Thank you so much.
    I am certain I had trashed all the prefs mentioned in the other threads (there were about 3, in the Users/Prefs folder), but I tried your key command, got the prompt to completely trash all prefs, and it did indeed cure the issue. Thanks a ton!

  • Essbase Server Hangs Intermittently - Urgent pls Help

    Essbase Version - 9.3.3
    Shared Services - 9.3.3
    Enviroment - Windows Server 2003
    We are in the process of migrating the users from Domain A to Domain B
    There are around 15000 users across the board, out of which I assume there are around 250 users accessing the Hyperion Application.
    Since the Domain Migration was started, We encountered Essbase Server freezes Intermittently.
    Essbase Server goes down for about 10-15 Minutes and automatically comes back. No Error Msg in the Essbase Log.
    Active Directory Migration was put on Hold because business had to complete their Month end Activities.
    While we were working to find the RCA and identified that few users who were migrated from Domain A to Domain B appeared to be on Both the Domain and we figured out that it might be one of the reason for Essbase Server Hangs.
    We had a Plan to Run the Update native Directory Utility to clear the Stale Data
    Post Performing the Action our system was stable and didn't had system Hangs.
    we also changed the shared services Cache refresh Interval to 24 Hrs in CSS.xml File ( Just to Make sure the Refresh happens Overnight)
    Since the Active Directory Team had resumed their Migration Activies, we started Experiencing the System Hangs Issues again. server goes down for 5-10 min and comes back up
    Please Input your Valuable Thoughts, Would Really Appreciate your Help.
    Thanks in Advance.

    Hi,
    Thanks for your prompt response.
    As mentioned, AD team have the filters on place, There is no issues with the User Access and there was no change in password after migrating the Domain.
    I have checked the Display Session through Maxl and there is No heavy sessions.
    As Stated earlier, we are unable to identify the cause regarding the System Freeze. All users access the application all  of sudden essbase server hangs and it doesn't allow user to retrieve the data, nor allow him to access any application within Essbase and Planning.
    After 5-10 Min,  server automatically comes back.
    Can you tell me if there is a way to track the system Hangs through Essbase Log without getting the any inputs from the users.
    Assuming if the users sessions are heavy what makes the server hang and automatically resumes without intervention.
    Shared Services Security Log display the following Error, Can you tell me if you had come across any such errors before.
    com.hyperion.css.spi.impl.msad.MSADCacheUpdater.updateUserCache(Ljavax.naming.directory.DirContext;Lcom.hyperion.css.common.CSSNodeImpl;Ljava.lang.String;Ljava.lang.String;Lcom.hyperion.css.datastructures.ProviderCacheMap;Ljava.util.Map;)V(Unknown Source) - Ignoring User. Error getting User for User Cache:[LDAP: error code 32 - 0000208D: NameErr: DSID-031522C9, problem 2001 (NO_OBJECT), data 0, best match of:
      'OU=USMigrate,OU=Add_Audit,OU=Users,OU=Accounts,OU=RAC-IOC,DC=us,DC=ricoh,DC=ds'
    Error Code: -1
    com.hyperion.css.common.configuration.CSSConfigurationException: Unable to load certificate from keystore or unable to locate keystore: SAP.keystore Error Code: 9
    NestedException:
    com.hyperion.css.common.configuration.CSSConfigurationException: No certificates present for SAP Authentication to take place Error Code: 9
      at com.hyperion.css.SAPSecurity.loadKeyStoreWithSAPCertificate(Ljava.util.ResourceBundle;Ljava.security.KeyStore;Ljava.lang.ClassLoader;)Ljava.security.KeyStore;(Unknown Source)
    Please advise.
    Thanks in Advance.

  • Whilst connected to internet itunes will only open once after rebooting and thereafter it will not open again until reboot. When reboot with internet off itunes will open repeatedly. Help

      This problem has only appeared in the past few days before that I had nio problems with itunes. Firstly I discovered that I could only open Itunes once after reboot - thereafter it would not reopen until I reboot again.  I have spent considerable hours yesterday talking to the Apple help by phone and tried all there suggestions including of course reinstalling itunes amongst other things.  Eventually I thought the problem had been solved when I discovered that I could suddenly open Itunes repeatedly without rebooting.  After a short time I then discovered that the reason it was working agai was that I had rebooted with the internet disconnected and itunes would open repeatedly as normal provide I left the internet disconnected.  When I reconnect to internet the problem resurfaces. HELP

    For those still wondering how to install ios 6.1 on 5th gen iPod, you need to download it off of apples official website and then shift click restore from backup and choose the downloaded ios 6.1
    apples one year warrant covers any hardware problems like these right?

  • Mac Pro 1,1 hangs indefinately at startup: Help Me Diagnose?

    Hello all, trying to determine what could possibly be causing this issue with my Mac Pro Quad 2.66 xeon machine running Snow Leopard.
    It will turn on but does not boot up, instead hanging indefinately at the white screen with apple logo, displaying a perpetually rotating load icon.
    Perhaps the pros can help me figure this out...
    Here are what may be some relevant details:
    -Will not boot to system install disk
    -Does not take keyboard command for auto disc-boot (c on startup).
    -DOES take keyboard command for boot disc switching on startup (option on startup).
    Sees install disc via this method, but machine will not boot to it.
    -Only very recently, machine turns on automatically when simply plugged in, without the need to press the power button
    (this started last night after the machine has been off for days).
    -There are no error LED lights anywhere, on the logic board nor on the RAM risers.
    Here are some steps I've taken so far:
    -Removed hard drives to attempt forceboot to install disc and rule out a system drive issue; no change in symptom.
    -Set up various RAM configs to check for RAM problems: no RAM, one pair of each set on Riser A, swapping risers, etc; no change in symptom.
    -Failure to boot to Install Disc with any button combo at startup suggested some sort of optical drive problem so
    removed optical drive completely; no change in symptom.
    I am baffled by this, and while it is an older machine with the 'known issue-laden' Nvdia GeForce 8800GT dual graphics card,
    there are no graphic anomolies whatsoever. I have the Arctic Cooler S1 heatsink/fan system in there and so always been nice and cool.
    Any ideas folks? This has brought my studio to a complete standstill
    Thank you kindly for your input and happy friday to you!

    By the way, Ive done the Verbose mode and there are, as you guys stated, mostly lines of information I cannot understand. However, some things that stuck out as possible negatives with words like 'failed' appeared,
    perhaps these lines they will look like something to some of you...
    Most notable were the final lines at the bottom of the verbose readout page,
    (reads as such but on single line):
    launchctl: CFURLCreateDataAndPropertiesFromResource(/System/Library/LaunchDaemons/com.appl e.auditd.plist) failed: -10
    immediately following was another launchctl line, seemingly related to the previous:
    launchctl: no plist was returned for: /System/Library/LaunchDaemons/com.apple.auditd.plist
    then yet another launchctl line which read (all on one line):
    launchctl: dubious permissions on file (skipping): /System/Library/LaunchDaemons/com.adobe.Switchboard.plist
    then this one:
    launchctl: please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    The very last line on the verbose readout page reads:
    Notice: new kext com.paceapp.kext.pacesupport.snowleapord, v5.7 matches prelinked kext but can't determine if executables are the same (no UUIDs)
    Another thing that stuck out was a line after the details of launching and bootup sequences (simply details powerup, verbose startup etc.) but then this line appears afterword:
    Bug: Launchctl.c:3557 (23930):17: ioctl(s6, SIOCAIFADDR_IN6, &ifra6) ! = -1
    at the very top of the readout, there are seven lines referring to 'processors', looks like this:
    AppleACPICPU: Processor Id= 1 LocalApicId= 1: Enabled
    AppleACPICPU: Processor Id= 2 LocalApicId= 7: Enabled
    AppleACPICPU: Processor Id= 3 LocalApicId= 6: Enabled
    AppleACPICPU: Processor Id= 4 LocalApicId= 0: Disabled
    AppleACPICPU: Processor Id= 5 LocalApicId= 0: Disabled
    AppleACPICPU: Processor Id= 6 LocalApicId= 0: Disabled
    AppleACPICPU: Processor Id= 7 LocalApicId= 0: Disabled
    There is a line about mid page that reads as such:
    BSD root: disk0s2, major 14, minor 2
    anyway, not sure what any of it means but thanks again for reading and for all the advice.
    Best,
    -S

Maybe you are looking for

  • How do I disable game center?!?!?

    Other threads seem to indicate that it's possible to disable game center by way of settings > general > restrictions but if that ever existed it's gone now.  Any thoughts? On that subect I have a simple basic solitaire game (Real Solitaire) that I'd

  • Photosmart C6280 Can't bypass the warnings and print only in black

    I have a photosmart C6280 printer and i want to print in black only, but i can not bypass the "low ink" errors and "expired cartridge" errors to proceed.  I've changed the preferences in my print options to black only but the printer is still flashin

  • Error message handling in Integration Process

    How to use the fault message type? when define the fault message type for inbound message interface, how to output that fault message? hope from your helps Thanks, Michael

  • Help in Controller Code-Urgent

    Navigation: By Clicking on HR UAE Employee SelfService responsibility, We get Professional Details In the Professional Details, we have to Click Competence Profile. By clicking on Competence Profile, it will navigate another page. In that Screen .the

  • License Key installation

    Hi All, We have prepared  a test server having same SID name as our Production server. Now we have to install license on it. Can we download a new license for test server and install. is any legal problem in it. if yes pls give steps to download in d