Can't Access the Server RootDSE

Hi All,
I am working on Windows platform and trying to create a directory instance in Sun Directory Server 6.0 using its commandline utility dsadmin by executing the following command:
dsadm create - h localhost -p 2389 -P 1064 D:\Temp\SUNDS_TEMPthen strat the instance as:
dsadm start D:\Temp\SUNDS_TEMPThe instance gets created successfully but when I try to access the instance using an LDAP browset it gives me error:
Can't Access the Server RootDSE
Error Code: 32
Error Message: No Such Object
I am creating this instance to use as Access Manager configuration store. Is anybody aware of this issue?
Thanks,
Tariq Chauhdary

Thank you very much all. I was able to resolve this issue.
I did not create the Suffix and LDAP browser and that was the reason for LDAP browser to raise RootDSE error.

Similar Messages

  • I can't access the internet from my home wi-fi.  It works on other wi-fi, and my wi fi is working on my h ome computer.  I keep getting a message that says it can't access the server

    I can't access the internet using my home wi-fi. My wi-fi is working on my home computer, and the itouch can access the internet at another person's home using their wi-fi.  I've looked in the settings, and can't seem to see any differences.....i'm a techno dummy - so please respond in very basic info

    Before resetting try restarting.  Or you can go to Settings from the home screen > Wi-Fi > your network and scroll down to 'Renew Lease' and press that.  When you do you should see a button labeled 'Renew Lease?' and another labeled 'Cancel'.  Select 'Renew Lease'.
    You can either back out of that screen back to the home screen or just use the return button to go back to the home screen.  Then select Safari and see if you can hook in.
    I have to go through that process every five or ten minutes or so when in the second story of our house - weak router signal up there.

  • In a cafe, all internet connecti9ns work, but the email client is saying Timed Out, can't access the server. Rebooted. Problem persists.

    All other internet connections work - but the Mozilla email client can't access the mail... Works in every other café. But not here. Thanks!

    I'd suggest you check with the cafe owner which ports are allowed there.
    If in doubt simply use webmail, which will most likely work.

  • How can I access the Server file system without using any signed applet?

    Is it possible for me to run an applet on the client machine such that the client can view my server file system and perform uploading and downloading of files through the applet without signing the applet?

    Add the following in your java.policy file, your plug in accesses.
    grant {
    permission java.permission.AllPermission;

  • How can i access dmz server via public ip from inside?

    hi all !
    As shown in Figure,how can i access the server in dmz zone via public?
    i can access it via private ip 192.168.1.1 now,but i can't access it via 101.100.1.2.
    who can help me ?
    thank you !

    Hi,
    You would have to configure Static NAT from DMZ to INSIDE for the server in the same way you have done for DMZ to OUTSIDE.
    Basically in the following way for example
    object network DMZ-WEB
    host 192.168.1.1
    nat (dmz,inside) static 101.100.1.2
    This would enable your users on the "inside" to access the "dmz" server with the public IP address. And naturally only with the public IP address after this NAT.
    Hope this helps
    Please do remember to mark a reply as the correct answer if it answered your question.
    Feel free to ask more if needed
    - Jouni

  • How can we access the file/directory system in the server

    Hi friends,
    I have made a text editor attached with an audio player for my project.
    Both text editor and audio player are implemented in applet and put in to a
    jsp page using jsp:plugin. Text editor and player are separate applets running
    in the same page and from same server.A client who is using this editor may
    want to save the edited text files to the server as well as hear audio files from
    directories in the server.
    My question is how can we access the file/directory system in the server
    like we do in the local machine.When the user cliks save or openfromserver button
    in the editor, folder/files in the server must be displayed as we do with FileChooser.
    I am using Apache Tomcat 5,wiindows 2000 server, jdk1.5.
    manu

    You can't access it directly. But your applet can make net connections to the server, and the server can provide that kind of functionality. Generally this is easiest by making HTTP connections and having the server provide the functionality via the web server. (So in your case, JSPs or servlets on the server would list/deliver/create/modify/delete files, and the applets would invoke those JSPs and servlets.

  • I'm trying to connect to my work's VPN.  I am connected to the VPN, but I cannot access the server. I keep getting a message that says the server may not exist or is unavailable.  I know that's not the case because my coworkers are connected. Can someone

    I'm trying to connect to my work's VPN.  I am connected to the VPN, but I cannot access the server. I keep getting a message that says the server may not exist or is unavailable.  I know that’s not the case because my coworkers are connected. Can someone please help me? 

    I have the same problem. It is only with tv shows and only with programs I have downloaded after the software update.
    Apple support sent me the above link too....but it doesn't solve the problem...my computer is authorized and the content is in my library and will play on my Mac air, but it will not sync the tv shows, it keeps saying my computer isn't authorized for it.
    No answers here, but you are definitely not alone with this issue.

  • Can't Access my server from the Server App

    Upgraded to Lion Server, everything seemed to go OK.  Now, for some reason, I can't access the settings from the Server app.  It asks for a passowrd, and it won't take it.  I can reboot the server, log in just fine.  But entering in my username and passowrd in the Server app, no dice.
    Thoughts???

    Got it.  This thread helped!
    Thanks!
    https://discussions.apple.com/thread/3193444?tstart=60

  • Can not access the Instance Data of a Singleton class from MBean

    I am working against the deadline and i am sweating now. From past few days i have been working on a problem and now its the time to shout out.
    I have an application (let's call it "APP") and i have a "PerformanceStatistics" MBean written for APP. I also have a Singleton Data class (let's call it "SDATA") which provides some data for the MBean to access and calculate some application runtime stuff. Thus during the application startup and then in the application lifecysle, i will be adding data to the SDATA instance.So, this SDATA instance always has the data.
    Now, the problem is that i am not able to access any of the data or data structures from the PerformanceStatistics MBean. if i check the data structures when i am adding the data, all the structures contains data. But when i call this singleton instance from the MBean, am kind of having the empty data.
    Can anyone explain or have hints on what's happening ? Any help will be appreciated.
    I tried all sorts of DATA class being final and all methods being synchronized, static, ect.,, just to make sure. But no luck till now.
    Another unfortunate thing is that, i some times get different "ServicePerformanceData " instances (i.e. when i print the ServicePerformanceData.getInstance() they are different at different times). Not sure whats happening. I am running this application in WebLogic server and using the JConsole.
    Please see the detailed problem at @ http://stackoverflow.com/questions/1151117/can-not-access-the-instance-data-of-a-singleton-class-from-mbean
    I see related problems but no real solutions. Appreciate if anyone can throw in ideas.
    http://www.velocityreviews.com/forums/t135852-rmi-singletons-and-multiple-classloaders-in-weblogic.html
    http://www.theserverside.com/discussions/thread.tss?thread_id=12194
    http://www.jguru.com/faq/view.jsp?EID=1051835
    Thanks,
    Krishna

    I am working against the deadline and i am sweating now. From past few days i have been working on a problem and now its the time to shout out.
    I have an application (let's call it "APP") and i have a "PerformanceStatistics" MBean written for APP. I also have a Singleton Data class (let's call it "SDATA") which provides some data for the MBean to access and calculate some application runtime stuff. Thus during the application startup and then in the application lifecysle, i will be adding data to the SDATA instance.So, this SDATA instance always has the data.
    Now, the problem is that i am not able to access any of the data or data structures from the PerformanceStatistics MBean. if i check the data structures when i am adding the data, all the structures contains data. But when i call this singleton instance from the MBean, am kind of having the empty data.
    Can anyone explain or have hints on what's happening ? Any help will be appreciated.
    I tried all sorts of DATA class being final and all methods being synchronized, static, ect.,, just to make sure. But no luck till now.
    Another unfortunate thing is that, i some times get different "ServicePerformanceData " instances (i.e. when i print the ServicePerformanceData.getInstance() they are different at different times). Not sure whats happening. I am running this application in WebLogic server and using the JConsole.
    Please see the detailed problem at @ http://stackoverflow.com/questions/1151117/can-not-access-the-instance-data-of-a-singleton-class-from-mbean
    I see related problems but no real solutions. Appreciate if anyone can throw in ideas.
    http://www.velocityreviews.com/forums/t135852-rmi-singletons-and-multiple-classloaders-in-weblogic.html
    http://www.theserverside.com/discussions/thread.tss?thread_id=12194
    http://www.jguru.com/faq/view.jsp?EID=1051835
    Thanks,
    Krishna

  • Can't find the server for a site, multiple browsers, multiple computers

    In recent weeks, possibly coinciding with updates in Firefox (running 3.6.10), Safari (5.0.2) and iTunes (10.0.1), I have only received the prompt, "can't find server" when attempting to connect to the site kcrw.com. Others can get it on their computers in other places, and my iPhone can access when on 3G, but our network here seems affected because all the computers [All macs, some laptops and some desktops, running on OS 10.5.8] here receive this message. I used to be able to go to this site, a radio station, and stream audio or download podcasts. My ISP ran a ping test to the site's server and said that went through, but the browsers and iTunes don't seem to be able to make the transformation to anything I can read. What kind of a problem is this? Apple care was no help either.

    HI Alice,
    From your Safari menu bar click Safari / Preferences then select the Advanced tab. Now click: Change Settings. That will prompted your System Preferences / Network pane. Make sure the Proxies tab is selected.
    If any of the boxes are checked under: Select a protocol to configure.
    That could be a factor. If there are, deselect, then click the OK button.
    Quit Safari. Relaunch Safari and see if that made a difference.
    If it's not a proxy issue, go to a website. If you see the "can't find the server" try reloading the page.
    Command + R
    Also, try Open DNS - Free / Basic . Includes anti phishing filters.
    And help here to manually add DNS. Topic : Manually provided DNS server addresses are higher priority than DHCP's
    Carolyn

  • How do I configure snow leopard server to allow local client to access the server using its public domain name

    I have SLS 10.6 running on my local network with DNS configured.
    I can access the server from a client on the lan using server.local or server.domain  where domain name is my publically registered domain,
    From the internet I can access my server using the registered domain name i.e. www.domain.com. 
    Is it possible to set my server up so that www.domain.com  also reaches the server when used by a client locally?   At present I get a page not found error.

    The configuration you're aiming for is called split-horizon or split-brain DNS, and it's quite possible.  It can get slightly hairy when you have different stuff using the same host name for different purposes, for instance, and you'll need to track all external DNS entries in your internal DNS server when you're running "split". 
    Here is how to set up DNS services.   Split-horizon is one of the options listed there.
    My preference is to use a different domain or subdomain within the network, and to avoid using split-horizon where I can reasonably manage it.  One domain name is configured for and reachable outside and is effectively public, and the other domain (or a subdomain) is inside and private and only reachable directly or via VPN, for instance.

  • Can connect via VPN, but can't access AFP server on same Xserve

    Hi:
    I've set up our XServe with MacOS X Server 10.5.2 to do AFP and VPN (L2TP only; PPTP is disabled). The XServe is a standalone server, not connected to any other direstory server.
    I can connect to the XServe's AFP server from my Mac over our wired and wireless network. The AFP server shows up in the sidebar of Finder windows. So far, so good.
    I am able to successfully connect to our network via the VPN with Mac OS X 10.5.2 client (on two different machines) using L2TP through our network's firewall (on a Netopia T1 router; UDF ports 500 and 4500 and IP Protocol 50 and 51 are open) using a shared secret.
    But I cannot connect to the XServe itself to use Server Admin or AFP (using afp://server.company.com or afp://xxx.xxx.xxx.xxx via the Go > Connect to Server command).
    The error I get while connecting to the 10.5.2 AFP server is Some data in apf://server.mycompany.com could not be read or written (Error Code -36 ). I saw this error associated with a SMB problem in 10.4.x, but SMB is not running.
    Other iChat users in my office also do not automatically show up in the Bonjour list when I connect to the network. Other computers on our network do not appear in the sidebar of a Finder window. (I'm told these are to be expected, as Bonjour isn't supported (in the "local area Bonjour" over a WAN link - it's purely a multicast feature on the network in the office, and won't be routed across the VPN link. True?)
    Now, here's the odd part. There is a second server (v10.4.11) on our network running AFP. I can connect to it (using afp://server.company.com via the Go > Connect to Server command) and mount its various sharepoints via the VPN.
    The only thing I see in the VPN log that seems amiss is this (but I have no idea what it means):
    Tue Mar 11 23:09:27 2008 : Unsupported protocol 0x8057 received
    --Both the 10.5.2 and the 10.4.11 servers have DNS properly configured (though our ISP; we're not running our own DNS).
    --Both servers and the client have public IP addresses and have the same subnet mask. Network Utility confirms this while connected to the VPN.
    --NAT is not running. The ISP is responding with public IPs for the servers.
    --The firewall for the 10.5.2 server is not running (but will be once I get this all working).
    --The IP address range for the VPN server doesn't overlap our DHCP pool (which also currently uses public IP addresses).
    --Any user can access any service.
    --No network routing definitions have been set up.
    --In essence, I've followed the steps on Pages 141-142 of the Network Services Admin Guide.
    One other note: After I connect, the Network Preferences > VPN > Advanced > TCP/IP window shows the IP address for the client just fine (assigned from the VPN pool), but lists the router as having the IP address of the XServe (rather than the router on the network). Is that normal?
    I'm hoping I don't need to have the XServe run DNS as an internal LAN DNS server.... And I'm not sure why I would have to if I can already successfully connect to the 10.4.11 AFP server .
    What simple step am I missing?
    TIA,
    mm

    "I am able to successfully connect to our network via the VPN with Mac OS X 10.5.2 client (on two different machines) using L2TP through our network's firewall (on a Netopia T1 router; UDF ports 500 and 4500 and IP Protocol 50 and 51 are open) using a shared secret."
    I suspect you mean UDP ports and you might need UDP port 1701 open too.
    You only need IP protocol 50 (ESP), protocol 51 (AH) isn't used. And ESP is only used when client and server isn't behind NAT (when NAT is used only the UDP ports are used).
    "Unsupported protocol 0x8057 received"
    This is usually seen when you can't get GRE through but since you don't use PPTP I can't be sure why this is registered in the logs. Sometimes when connecting using PPTP you have to disconnect and then reconnect for everything to work - you might try this for L2TP too.
    But if you already can reach services on any LAN nodes through the VPN I wouldn't bother with it.
    As you have a firewall in front of the server you need a second alias IP on the server that you can use to get at the services running on the server through the VPN. The firewall blocks all ports protocols not opened - that's why you can't use the server main IP even if the VPN is up.
    The netmask is used by all nodes to determine how big your subnet is: what part of the IP number is the network number and what range the node number is in => really: should traffic be directed to a node on the same LAN or sent directly to the gw/router for forwarding.
    What you can't do is connect from a NATed network to another NATed network that both are using the same network number. (That's why people should stay away from using the "default" 192.168.0.0/24 and 192.168.1.0/24 networks for VPN server LANs).
    Try your settings at http://www.jodies.de/ipcalc to see what I mean.
    "...lists the router as having the IP address of the XServe (rather than the router on the network). Is that normal?"
    Yes. The VPN server is the VPN gw/router.
    "The firewall for the 10.5.2 server is not running (but will be once I get this all working)."
    If you already have a firewall in front of your servers that is a bit redundant.
    "--No network routing definitions have been set up."
    "I'm hoping I don't need to have the XServe run DNS as an internal LAN DNS server"
    You need routing definitions if you want to setup a split tunnel VPN or all traffic is routed through the VPN when connected. The VPN becomes the default gw.
    Without ipforwarding ON in the server you can only reach nodes on the server LAN - not Internet.
    DNS is needed for your servers forward and reverse names/IPs for advanced services but doesn't need to run in any of your own servers.
    If you decide to do a split tunnel VPN config (adding public and private routing definitions) a reachable DNS IP for VPN clients (in VPN config on server) is needed for VPN clients or they can't use names to find anything. To reach this DNS IP if public/not on your server LAN, you need your server to forward IP DNS lookups and have a routing definition for it.
    A split tunnel VPN only send traffic for your server LAN through the VPN and all other traffic directly to the local gw/router (Internet).

  • The Safari Can't Find The Server - Error!

    After updating my iPad and Mac OSX to the latest version, I am constantly getting 'The Safari Can't find the server' error on valid addresses. I have to refresh a few times to access the website.
    I have gone through many posts and I gathere that it is not a Mac issue, but something to do with network settings - DHCP/Proxy. But I still could not figure out how to solve the problem.
    If someone can guide/advise me then that would be a great help..
    Thanks

    I'm having similar issues with Safari saying it can not find the server.  Tumblr and Zooniverse sites are particularly troublesome, even with refreshing.  I have checked the status of their servers and they are up and running without issues.  I can access them eventually but have to close the current tab and reopen later.  However, when I use Chrome or Firefox I can access the sites with no problem.  It's not a local network problem as I can access the internet and those sites on my iPhone and all other sites.  It appears to be an issue with Safai.
    Safari Version 5.1.1 (7534.51.22)

  • I frequently get the "Firefox can't find the server" error message.

    I frequently get the "Firefox can't find the server" error message. Refreshing the page normally causes the page to load, although sometimes it takes more than one try.
    I have checked my connection settings. IPv6 and DNS prefetching are disabled, as recommended by this article: https://support.mozilla.com/en-US/kb/Firefox%20cannot%20load%20websites%20but%20other%20programs%20can?s=Firefox+can%27t+find+the+server+at&r=1&as=s

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

  • Discoveryd process uses 100% CPU - Safari Can't find the server

    Hello
    Since upgrading to Yosemite, I lose connection to the internet 2 or 3 times a day. (Outlook goes offline at the same time)
    This is with a wired connection. (Wi-Fi is turned off)
    Safari gives me the "Safari Can't Find the Server" message.
    Restarting the computer solves the issue temporarily.
    While I'm unable to connect to the internet, Activity Monitor shows a process named "discoveryd" that uses 100% CPU.
    Force quitting this process gives me back access to the internet instantly. Unfortunately, I suffered a kernel panic (auto restart) a few minutes after force quitting discoveryd. I'm not 100% sure those 2 are related but it would be an odd coincidence as I never experienced had a single kernel on that system. Haven't tried force quitting that process since.
    I'm using this iMac in a work environment. (Connected to a windows file server and exchange)
    This issue has been happening 2-3 times a day since the day I upgraded to Yosemite.
    Any pointers on what could fix this issue ?
    Thanks

    Start time: 10:04:31 11/11/14
    Model Identifier: iMac11,3
    System Version: OS X 10.10 (14A389)
    Kernel Version: Darwin 14.0.0
    Time since boot: 1:39
    SATA
       WDC WD1001FALS-40Y6A0                  
    USB
       USB-PS/2 Optical Mouse (Logitech Inc.)
    Diagnostic reports
       2014-10-30 Adobe InDesign CC 2014 hang
       2014-10-30 Adobe InDesign CS6 hang
       2014-10-30 Adobe InDesign CS6 crash
       2014-10-30 FileMaker Pro hang x5
       2014-10-30 Finder crash* x2
       2014-10-30 Finder hang
       2014-10-30 Microsoft Outlook hang
       2014-10-30 iTunes hang
       2014-10-31 Adobe InDesign CC 2014 hang
       2014-11-04 Adobe InDesign CC 2014 crash x2
       2014-11-04 Adobe InDesign CC 2014 hang
       2014-11-04 Adobe InDesign CS6 crash x2
       2014-11-04 Microsoft Excel hang
       2014-11-05 Adobe InDesign CS6 hang
       2014-11-05 FileMaker Pro hang
       2014-11-10 Adobe InDesign CC 2014 hang
       2014-11-10 FileMaker Pro hang
       2014-11-11 Adobe Illustrator hang
        * Code injection
    Log
       Nov  5 08:25:33 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  5 10:07:01 process discoveryd[49] thread 1190 caught burning CPU! It used more than 50% CPU (Actual recent usage: 82%) over 180 seconds. thread lifetime cpu usage 91.907001 seconds, (77.250009 user, 14.656992 system) ledger info: balance: 90001960650 credit: 91780798965 debit: 1778838315 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 109240779280
       Nov  5 10:09:03 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  5 11:46:47 process discoveryd[49] thread 1256 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 91.591946 seconds, (75.959886 user, 15.632060 system) ledger info: balance: 90000109700 credit: 91486467544 debit: 1486357844 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90105095085
       Nov  5 11:54:53 PM notification timeout (pid 275, Creative Cloud)
       Nov  5 11:54:53 PM notification timeout (pid 344, Adobe CEF Helper)
       Nov  5 11:54:53 PM notification timeout (pid 343, Adobe CEF Helper)
       Nov  5 12:35:03 jnl: b(1, 2): replay_journal: from: 57934848 to: 61127168 (joffset 0x1721c000)
       Nov  5 12:35:03 jnl: b(1, 2): journal replay done.
       Nov  5 12:38:37 jnl: b(1, 2): replay_journal: from: 61127168 to: 67488768 (joffset 0x1721c000)
       Nov  5 12:38:37 jnl: b(1, 2): journal replay done.
       Nov  5 12:38:40 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  5 13:26:28 process mdworker32[357] thread 8766 caught burning CPU! It used more than 85% CPU (Actual recent usage: 86%) over 40 seconds. thread lifetime cpu usage 81.048638 seconds, (76.580865 user, 4.467773 system) ledger info: balance: 34001309838 credit: 80940733771 debit: 46939423933 limit: 34000000000 (85%) period: 40000000000 time since last refill (ns): 39339579198 [fatal violation]
       Nov  5 14:26:53 PM notification timeout (pid 231, Creative Cloud)
       Nov  5 14:26:53 PM notification timeout (pid 325, Adobe CEF Helper)
       Nov  5 14:26:53 PM notification timeout (pid 326, Adobe CEF Helper)
       Nov  5 14:45:49 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  5 14:45:49 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  5 14:47:27 process discoveryd[49] thread 1023 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 91.572722 seconds, (77.540749 user, 14.031973 system) ledger info: balance: 90015163759 credit: 91483527972 debit: 1468364213 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90121915160
       Nov  5 15:13:33 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  6 08:25:36 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  6 11:59:36 PM notification timeout (pid 286, Creative Cloud)
       Nov  6 11:59:36 PM notification timeout (pid 355, Adobe CEF Helper)
       Nov  6 11:59:36 PM notification timeout (pid 356, Adobe CEF Helper)
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smbsmb2_sm2_b_parse_smchabnge_no_tipfary: ssmb_er_chq_replya failngeed_n ot6if0
       Nov  6 12:29:24 y: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_ssmmb2_b_spmabr_sparsee_c_hancgeh_naotinfgy: smb_rq_re_epnlyoti failfedy :60 sm
       Nov  6 12:29:24 b_rq_reply failed 60
       Nov  6 12:29:24 rs failed Qsmumber2b_sy m_Inrqfbo __pa60rr
       Nov  6 12:29:24 rse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 ply failed 60smb2_smb_parse_change
       Nov  6 12:29:24 _notify: smsmb_rq_reply failb2_ed smb_6parse_0
       Nov  6 12:29:24 ply failed smb2_smb_pa60
       Nov  6 12:29:24 rse_change_nsmb2otif_smy:b_ spmb_rq_reply failedars e_c60han
       Nov  6 12:29:24 ge_notify: smb_smb2_smb_parse_chrqange__repnotify: smb_rly fq_ailed reply failed 60
       Nov  6 12:29:24 smb2_smb_parssmb2_e_smbchange_pa_nrsote_chifany:ge _nosmb_tifrq_y:re smplb_y rq_fareilply failed 60
       Nov  6 12:29:24 y failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 q_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 12:29:24 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov  6 14:01:02 process discoveryd[49] thread 1259 caught burning CPU!; EXC_RESOURCE supressed due to audio playback
       Nov  6 15:49:49 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov  6 16:10:23 process Adobe InDesign C[435] caught causing excessive wakeups. Observed wakeups rate (per sec): 309; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45011
       Nov  7 08:25:38 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 10 09:28:46 process discoveryd[49] thread 1195 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 152.284113 seconds, (127.648543 user, 24.635570 system) ledger info: balance: 90002963251 credit: 152063056684 debit: 62060093433 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90142287445
       Nov 10 09:42:09 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 10 11:20:45 process discoveryd[49] thread 1182 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 150.526060 seconds, (126.552866 user, 23.973194 system) ledger info: balance: 90000111985 credit: 150369654672 debit: 60369542687 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90164134478
       Nov 10 12:14:06 PM notification timeout (pid 261, Creative Cloud)
       Nov 10 12:14:06 PM notification timeout (pid 332, Adobe CEF Helper)
       Nov 10 12:14:06 PM notification timeout (pid 333, Adobe CEF Helper)
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 y failed 60
       Nov 10 12:43:27 failed mb60
       Nov 10 12:43:27 smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:43:27 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 12:46:06 process WindowServer[121] caught causing excessive wakeups. EXC_RESOURCE supressed due to audio playback
       Nov 10 12:49:29 jnl: b(1, 2): replay_journal: from: 27704832 to: 35355648 (joffset 0x1721c000)
       Nov 10 12:49:29 jnl: b(1, 2): journal replay done.
       Nov 10 12:54:05 jnl: b(1, 2): replay_journal: from: 35355648 to: 40313344 (joffset 0x1721c000)
       Nov 10 12:54:05 jnl: b(1, 2): journal replay done.
       Nov 10 12:54:08 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 10 14:31:43 PM notification timeout (pid 232, Creative Cloud)
       Nov 10 14:31:43 PM notification timeout (pid 327, Adobe CEF Helper)
       Nov 10 14:31:43 PM notification timeout (pid 324, Adobe CEF Helper)
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 : smb_rq_reply failesmbd 2_smb_60
       Nov 10 15:07:47 parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 tify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_nsotify:mb2 sm_b_rq_reply sfailmed b60
       Nov 10 15:07:47 _parse_change_notify: smbsmb2_rq__rsepmb_parsly failee_d ch60ange_notify
       Nov 10 15:07:47 : smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:47:46 process discoveryd[49] thread 1013 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 153.503446 seconds, (128.774521 user, 24.728925 system) ledger info: balance: 90007455004 credit: 153327303891 debit: 63319848887 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90099512937
       Nov 11 08:25:38 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 11 09:38:05 process Adobe InDesign C[553] caught causing excessive wakeups. Observed wakeups rate (per sec): 283; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45017
       Nov 10 14:31:43 PM notification timeout (pid 327, Adobe CEF Helper)
       Nov 10 14:31:43 PM notification timeout (pid 324, Adobe CEF Helper)
       Nov 10 14:31:43 com.apple.dpd: Service exited with abnormal code: 75
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 : smb_rq_reply failesmbd 2_smb_60
       Nov 10 15:07:47 parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 tify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_nsotify:mb2 sm_b_rq_reply sfailmed b60
       Nov 10 15:07:47 _parse_change_notify: smbsmb2_rq__rsepmb_parsly failee_d ch60ange_notify
       Nov 10 15:07:47 : smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:07:47 smb2_smb_parse_change_notify: smb_rq_reply failed 60
       Nov 10 15:47:46 process discoveryd[49] thread 1013 caught burning CPU! It used more than 50% CPU (Actual recent usage: 99%) over 180 seconds. thread lifetime cpu usage 153.503446 seconds, (128.774521 user, 24.728925 system) ledger info: balance: 90007455004 credit: 153327303891 debit: 63319848887 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 90099512937
       Nov 10 16:47:01 com.apple.WebKit.Networking.UUID: Service exited with abnormal code: 1
       Nov 11 08:25:37 com.apple.Kerberos.kdc: Service exited with abnormal code: 1
       Nov 11 08:25:38 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Nov 11 08:56:36 com.apple.dpd: Service exited with abnormal code: 75
       Nov 11 09:38:05 process Adobe InDesign C[553] caught causing excessive wakeups. Observed wakeups rate (per sec): 283; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45017
    CPU per process: com.apple.WebKit (UID 501) is using 41.2  %
    Daemons
       com.apple.installer.osmessagetracing
       com.microsoft.office.licensing.helper
       com.adobe.fpsaud
    Agents
       com.adobe.CS4ServiceManager
       com.adobe.AdobeCreativeCloud
       com.adobe.ARM.UUID
       com.adobe.ARM.UUID
       com.apple.Safari
       com.adobe.ARM.UUID
       com.google.keystone.user.agent
       com.apple.AirPortBaseStationAgent
    App extensions
       com.apple.InternalFiltersXPC
    Contents of /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist (checksum 461455494)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.AdobeCreativeCloud</string>
        <key>Program</key>
        <string>/Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/Creative Cloud</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/Creative Cloud</string>
        <string>--showwindow=false</string>
              <string>--onOSstartup=true</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist (checksum 4071182229)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
        <dict>
         <key>Label</key>
         <string>com.adobe.AAM.Scheduler-1.0</string>
         <key>Program</key>
         <string>/Library/Application Support/Adobe/OOBE/PDApp/UWA/UpdaterStartupUtility</string>
         <key>ProgramArguments</key>
         <array>
            <string>/Library/Application Support/Adobe/OOBE/PDApp/UWA/UpdaterStartupUtility</string>
            <string>-mode=scheduled</string>
         </array>
         <key>StartCalendarInterval</key>
         <dict>
           <key>Minute</key>
           <integer>0</integer>
           <key>Hour</key>
           <integer>2</integer>
         </dict>
        </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 394026997)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        <string>semi-auto</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 4116814193)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        <string>semi-auto</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 926752576)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.apple.SafariBookmarksSyncer.plist (checksum 4209634474)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.apple.Safari</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Safari.app/Contents/SafariSyncClient.app/Contents/MacOS/S afariSyncClient</string>
        <string>--sync</string>
        <string>com.apple.Safari</string>
        <string>--entitynames</string>
        <string>com.apple.bookmarks.Bookmark,com.apple.bookmarks.Folder</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>ThrottleInterval</key>
        <integer>60</integer>
        <key>WatchPaths</key>
        <array>
        <string>/Users/USER/Library/Safari/Bookmarks.plist</string>
        </array>
       </dict>
       ...and 1 more line(s)
    Contents of Library/LaunchAgents/com.google.keystone.agent.plist (checksum 64800286)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.google.keystone.user.agent</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
         <string>/Users/USER/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bu ndle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftw areUpdateAgent</string>
         <string>-runMode</string>
         <string>ifneeded</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>3523</integer>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
       </dict>
       </plist>
    Bad plists
       Library/Preferences/com.apple.iphotomosaic.plist
    Listeners
       launchd: afpovertcp
       launchd: afpovertcp
       launchd: microsoft-ds
       launchd: ssh
       launchd: microsoft-ds
       launchd: ssh
       kdc: kerberos
    User login items
       Microsoft Outlook
       - /Applications/Microsoft Office 2011/Microsoft Outlook.app
       TransmitMenu
       - /Applications/Transmit.app/Contents/MacOS/TransmitMenu.app
       ClipMenu
       - /Applications/ClipMenu.app
       Dept
       - /Volumes/Dept
       Public
       - /Volumes/Public
       Apps
       - /Volumes/Apps
    Restricted files: 4584
    Lockfiles: 99
    Elapsed time (s): 352

Maybe you are looking for

  • How do I connect both a Mac and PC to Apple TV Home Sharing?

    Goal - I am trying to share both my PC and Mac through my Apple TV2 on the "Computers" home sharing menu. - These are 2 seperate iTunes accounts as they are 2 different owners of the PC and Macbook. - However, home sharing only allows me to have one

  • How can I transfer photos from my computer to my iPod?

    Please can anyone tell me how I can transfer photo's from my desktop Computer Windows 7 to my new iPod....thanks in advance Joy

  • G5 only boots to desktop image & Finder toolbar, then beachball just spins

    My G5 only boots as far as the background image showing up on both monitors and the Finder toolbar loads but I can't click on anything in it, and the beachball justs sits there and spins-I tried DiskUtilities on OS X DVD but get 'Verify volume failed

  • FAQ: New feature overview

    This text guide helps you find most major new features in Photoshop CS. For a comprehensive video walkthrough, see this Ask A Pro session with Senior Product Manager Zorana Gee.  Retouching and transforming Content-Aware Move tool The Content-Aware M

  • Get purchase requisition ( eban ) info when in XM06 , exit_saplebnd_001

    We are using EXIT_SAPLEBND_001 for customized changes to the release strategy. All that is imported to this exit is ceban. How do I get the purchase requisition number (banfn) and line item number (bnfpo) from this include (ZXM06U13)? I have tried th