Jvm startup fails with error when using large -Xmx value

I'm running JDK 1.6.0_02-b05 on RHEL5 server. I'm getting error when starting the JVM with large -Xmx value. The host has ample memory to succeed yet it fails. I see this error when I'm starting tomcat with a bunch of options but found that it can be easily reproduced by starting the JVM with -Xmx2048M and -version. So it's this boiled down test case that I've been examining more closely.
host% free -mt
total used free shared buffers cached
Mem: 6084 3084 3000 0 184 1531
-/+ buffers/cache: 1368 4716
Swap: 6143 0 6143
Total: 12228 3084 9144
Free reveals the host has 6 GB of RAM, approximately half is available. Swap is totally free meaning I should have access to about 9 GB of memory at this point.
host% java -version
java version "1.6.0_02"
Java(TM) SE Runtime Environment (build 1.6.0_02-b05)
Java HotSpot(TM) Server VM (build 1.6.0_02-b05, mixed mode)
java -version succeeds
host% java -Xmx2048M -version
Error occurred during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine.
java -Xmx2048M -version fails. Trace of this reveals mmap call fails.
mmap2(NULL, 2214592512, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = -1 ENOMEM (Cannot allocate memory)
Any ideas?

These are the relevant java options we are using:
-server -XX:-OmitStackTraceInFastThrow -XX:+PrintClassHistogram -XX:+UseLargePages -Xms6g -Xmx6g -XX:NewSize=256m -XX:MaxNewSize=256m -XX:PermSize=128m -XX:MaxPermSize=192m -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -XX:+CMSPermGenSweepingEnabled -XX:+ExplicitGCInvokesConcurrent -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Djava.awt.headless=true
This is a web application that is very dynamic and uses lots of database calls to build pages. We use a large clustered cache to reduce trips to the database. So being able to acces lots of memory is important to our application.
I'll explain some of the more uncommon options:
We use the Concurrent Garbage collector to reduce stop the world GC's. Here are the CMS options:
-XX:+UseConcMarkSweepGC
-XX:+CMSClassUnloadingEnabled
-XX:+CMSPermGenSweepingEnabled An explicit coded GC invokes the Concurrent GC instead of the stop the world GC.
-XX:+ExplicitGCInvokesConcurrentThe default PermSizes where not large enough for our application. So we increased them.
-XX:PermSize=128m
-XX:MaxPermSize=192mWe had some exceptions that were omitting their stack traces. This options fixes that problem:
-XX:-OmitStackTraceInFastThrowWe approximate between 10% to 20% performance improvement with Large Page support. This is an advance feature.
-XX:+UseLargePagesUseLargePages requires OS level configuration as well. In SUSE10 we configured the OS's hugepages by executing
echo "vm.nr_hugepages = 3172" >> /etc/sysctl.confand then rebooting. kernel.shmmax may also need to be modified. If you use Large Page be sure to google for complete instructions.
When we transitioned to 64bit we transitioned from much slower systems having 4GB of ram to much faster machines with 8GB of ram, so I can't answer the question of degraded performance, however with our application, the bigger our cache the better our performance, so if 64bit is slower we more than make up for it being able to access more memory. I bet the performance difference depends on the applications. You should do your own profiling.
You can run both the 32bit version and the 64bit version on most 64bit OSes. So if there is a significant difference run the version you need for the application. For example if you need the memory use the 64bit version if you don't then use the 32bit version.

Similar Messages

  • Crystal 2011 getting Logon failed IM004 error when using ODBC (RDO)

    I just installed Crystal Reports 2011 on Windows 7 Ultimate SP1.  Sporadically, but way too often (I would estimate about 60% of the time), when I go to set up an ODBC (RDO) connection or refresh an existing report and enter the password, I get the following error:
    Logon failed.
    Details: IM004:[Microsoft][ODBC Driver Manager] Driver's SQLAllocHandle on SQL_Handle_ENV failed
    Other times, it just works, with no changed made.  It seems to work slightly more often when using the SQL Server driver (the one for SQL 2000) as opposed to the SQL Native Client or SQL Server Native Client 10.0 drivers.  But not often enough for that to be the solution.
    I have tested this with a locally installed SQL Server (on the same machine as Crystal Reports) and remote SQL Servers, with SQL 2000, 2005 and 2008.  Same results.
    I have Crystal Reports 2008 installed on the same machine and have not once had this problem.  I have tried using the same ODBC connections I already had from Crystal 2008 with Crystal 2011 and also to create new ones, same results either way.
    Is this a known issue, or is there a switch/setting I need to change to make this work consistently?  I am especially puzzled by the fact that it seems random, I have not been able to find any pattern at all.

    Hi Victoria,
    MS SQL Server 2008 has a client install now, the MDAC/WDAC doesn't install it as MS used to do with all of their OS's. CR also had to update the use of SQL Server 2008 to include the SQLNCLI10 client engine.
    I suggest, if you have not already, install the Native 10 client from either the SQL Server CD or you can download the MSI from MS's site and only use the Native 10 driver.
    MS kind of dropped ODBC and moved to OLE DB. The native client actually uses the OLE DB driver so using ODBC just puts another layer on top of OLE DB anyways. It's more convenient to use ODBC for deploying applications but it can affect performance.
    Anyways, as noted, CR 2011 is still in Ramp up mode so this issue may have been tracked. If not though you can purchase a support case, if it's a bug then you'll get a refund, if it's a limitation in MS then no refund.
    There is [SP 1 for CR 2011|https://smpdl.sap-ag.de/~sapidp/012002523100007683092011E/cr2011sp1.exe] - http://service.sap.com/sap/bc/bsp/spn/bobj_download/main.htm
    Seems to be a problem with that page right now so try again later... and apply SP 1 or wait until it goes GA and test again. If it's still an issue then you can log a case.
    Firefox just got updated and it's failing, IE works though...
    Thanks again
    Don
    Edited by: Don Williams on Jun 22, 2011 8:51 AM

  • W2k3 Auth failed with KRB5KDC_ERR_ETYPE_NOSUPP when using DES

    We are authenticating users on AD server 2k3, and the users are setup in AD to use DES (checked "Use DES encryption types for this account" in user properties).
    It failed somehow with ETYPE_NOSUPP. From the packet capture, I can find KRB5 AS-REQ contains des-cbc-crc/des-cbc-md5/des-cbc-md4 as encryption types.
    This is the request:
    ++++++++++ REQUEST ++++++++++++++++
    Kerberos AS-REQ
    Pvno: 5
    MSG Type: AS-REQ (10)
    padata: PA-ENC-TIMESTAMP
    Type: PA-ENC-TIMESTAMP (2)
    Value: 303ba003020117a2340432482d36ca7556ebf719421fc8b4... rc4-hmac
    Encryption type: rc4-hmac (23)
    enc PA_ENC_TIMESTAMP: 482d36ca7556ebf719421fc8b4530cfea187d35318fd63bd...
    KDC_REQ_BODY
    Padding: 0
    KDCOptions: 00000010 (Renewable OK)
    .0.. .... .... .... .... .... .... .... = Forwardable: Do NOT use forwardable tickets
    ..0. .... .... .... .... .... .... .... = Forwarded: This is NOT a forwarded ticket
    ...0 .... .... .... .... .... .... .... = Proxiable: Do NOT use proxiable tickets
    .... 0... .... .... .... .... .... .... = Proxy: This ticket has NOT been proxied
    .... .0.. .... .... .... .... .... .... = Allow Postdate: We do NOT allow the ticket to be postdated
    .... ..0. .... .... .... .... .... .... = Postdated: This ticket is NOT postdated
    .... .... 0... .... .... .... .... .... = Renewable: This ticket is NOT renewable
    .... .... ...0 .... .... .... .... .... = Opt HW Auth: False
    .... .... .... ..0. .... .... .... .... = Constrained Delegation: This is a normal request (no constrained delegation)
    .... .... .... ...0 .... .... .... .... = Canonicalize: This is NOT a canonicalized ticket request
    .... .... .... .... .... .... ..0. .... = Disable Transited Check: Transited checking is NOT disabled
    .... .... .... .... .... .... ...1 .... = Renewable OK: We accept RENEWED tickets
    .... .... .... .... .... .... .... 0... = Enc-Tkt-in-Skey: Do NOT encrypt the tkt inside the skey
    .... .... .... .... .... .... .... ..0. = Renew: This is NOT a request to renew a ticket
    .... .... .... .... .... .... .... ...0 = Validate: This is NOT a request to validate a postdated ticket
    Client Name (Principal): test
    Name-type: Principal (1)
    Name: test
    Realm: SRV.MYTESTSERVER.LOC
    Server Name (Unknown): krbtgt/SRV.MYTESTSERVER.LOC
    Name-type: Unknown (0)
    Name: krbtgt
    Name: FP.DEREKTESTING.COM
    from: 2011-04-07 08:10:06 (UTC)
    till: 2011-04-08 08:10:06 (UTC)
    Nonce: 1302163806
    Encryption Types: aes256-cts-hmac-sha1-96 aes128-cts-hmac-sha1-96 des3-cbc-sha1 rc4-hmac des-cbc-crc des-cbc-md5 des-cbc-md4
    Encryption type: aes256-cts-hmac-sha1-96 (18)
    Encryption type: aes128-cts-hmac-sha1-96 (17)
    Encryption type: des3-cbc-sha1 (16)
    Encryption type: rc4-hmac (23)
    Encryption type: des-cbc-crc (1)
    Encryption type: des-cbc-md5 (3)
    Encryption type: des-cbc-md4 (2)
    ++++++++++ REQUEST ++++++++++++++++
    And this is the response:
    ++++++++++ RESPONSE ++++++++++++++++
    Kerberos KRB-ERROR
    Pvno: 5
    MSG Type: KRB-ERROR (30)
    stime: 2011-04-07 08:10:06 (UTC)
    susec: 247525
    error_code: KRB5KDC_ERR_ETYPE_NOSUPP (14)
    Realm: SRV.MYTESTSERVER.LOC
    Server Name (Unknown): krbtgt/SRV.MYTESTSERVER.LOC
    Name-type: Unknown (0)
    Name: krbtgt
    Name: SRV.MYTESTSERVER.LOC
    e-data
    padata: PA-ENCTYPE-INFO
    Type: PA-ENCTYPE-INFO (11)
    Value: 30443020a003020103a119041746502e444552454b544553... des-cbc-md5 des-cbc-crc
    Encryption type: des-cbc-md5 (3)
    Salt: 46502e444552454b54455354494e472e434f4d6a69616e
    Encryption type: des-cbc-crc (1)
    Salt: 46502e444552454b54455354494e472e434f4d6a69616e
    ++++++++++ RESPONSE ++++++++++++++++
    What could have possibly gone wrong? I also tried to reset the passwords of administrator and the user and restart the kdc services. It didn't help.
    Thanks.

    I am not sure, the exact behaviour must be specified somewhere, but I was not able to find any precise documentation on the topic. It may be, that the DC preferes AES if allowed by the client and it may colide with the setting on the user account.
    Anyway, why do you use the checkbox at all? If you wanted to enforce DES, you could have enabled the "System Cryptography: Use FIPS compliant algorithms for encryption, hashing and siging" policy which would switch the whole environment to DES or AES automatically.
    The user account setting is meant to only those accounts that are used by non-windows services IMHO.
    ondrej.

  • DB startup failed with error code 12

    Hi,
    The system is at kernel patch 75,so I was applying the kernel patches by extracting the .SAR files into the /usr/sap/
    4 ETW000 R3trans was called as follows: R3trans -x
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000    Wed Jan  2 19:28:44 2008                             348  0.000348
    4 ETW000    db_con_init called                                    30  0.000378
    4 ETW000    create_con (con_name=R/3)                             78  0.000456
    4 ETW000    Loading DB library '/usr/sap/SDV/SYS/exe/run/dboraslib.so' ...
    4 ETW000                                                                              65  0.000521
    4 ETW000    load shared library (/usr/sap/SDV/SYS/exe/run/dboraslib.so), hdl 0
    4 ETW000                                                                           50079  0.050600
    4 ETW000    Library '/usr/sap/SDV/SYS/exe/run/dboraslib.so' loaded
    4 ETW000                                                                              80  0.050680
    4 ETW000    function DbSlExpFuns loaded from library /usr/sap/SDV/SYS/exe/run/dboraslib.so
    4 ETW000                                                                              94  0.050774
    4 ETW000    *** ERROR => Version mismatch between kernel (700.08) and DBSL shared library (ЯÐÛСÅÌ)
    4 ETW000                                                                             200  0.050974
    2EETW169 no connect possible: "maybe someone set invalid values for DIR_LIBRARY ('/usr/sap/SDV/SYS/exe/run') or dbms_type ('ORA')"
    So,the DB is unable to start & as a result,SAP system isn't available.
    Request your help.
    Thanks
    Sandipan

    The problem is, that you should not use the same SAPCAR to extract in the same directory since it can't overwrite itself. You can use a relative path e. g.
    cd \usr\sap\<SID>
    mkdir newkernel
    cd newkernel
    \usr\sap\<SID>\exe\SAPCAR -xvf <kernel>
    Then
    ren exe exe.old
    ren newkernel exe
    Markus

  • Crawl fails with error when space is entered for source parameter value.

    Hi,
    When we give blank space value for any of the Source parameter then after starting the crawler schedule,following error appears in red:
    "Oracle Secure Enterprise Search Error" and no logs are created.
    Thanks,
    Shashank

    Hi,
    When we give blank space value for any of the Source parameter then after starting the crawler schedule,following error appears in red:
    "Oracle Secure Enterprise Search Error" and no logs are created.
    Thanks,
    Shashank

  • FTPs connection error:When using Variable substitution for Directory path

    Hi
    I am transferring data from BI to xml file via PI: Here a Client proxy from BI sends the data to PI and the PI FTPs the XML file to a remote location. For FTP I am using FTPs SSL connection.
    It was working fine untill I used Variable susbstitution to determine Directory path dynamically. I am using this because different xml files are intended to goto the different locations.
    I did the variable substitution like this:
    Target Message Structure:
    ---> Target Directory: %var1%
    <?xml version="1.0" encoding="UTF-8" ?>
    <MT_BI_EXTRACT_FILE>
      <Header>
         <Directory>/Customer</Directory>
    </Header>
    <Detail>
    </Detail>
       </MT_BI_EXTRACT_FILE>
    And in the variable substitution I am doing it this way
    payload:MT_BI_EXTRACT_FILE,1,Header,1,Directory,1
    And the error I am getting is:
    Attempt to process file failed with Error when getting an FTP connection from connection pool: com.sap.aii.af.service.util.concurrent.ResourcePoolException: Unable to create new pooled resource: iaik.security.ssl.SSLException: Peer sent alert: Alert Fatal: handshake failure
    MP: Exception caught with cause com.sap.aii.af.ra.ms.api.RecoverableException: Error when getting an FTP connection from connection pool: com.sap.aii.af.service.util.concurrent.ResourcePoolException: Unable to create new pooled resource: iaik.security.ssl.SSLException: Peer sent alert: Alert Fatal: handshake failure
    Exception caught by adapter framework: Error when getting an FTP connection from connection pool: com.sap.aii.af.service.util.concurrent.ResourcePoolException: Unable to create new pooled resource: iaik.security.ssl.SSLException: Peer sent alert: Alert Fatal: handshake failure
    Delivery of the message to the application using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: Error when getting an FTP connection from connection pool: com.sap.aii.af.service.util.concurrent.ResourcePoolException: Unable to create new pooled resource: iaik.security.ssl.SSLException: Peer sent alert: Alert Fatal: handshake failure.
    Does anybody have some Idea of this ??
    Regards
    Naina

    Hi,
    I guess the problem is not with Variable Substitution..
    Error when getting an FTP connection from connection pool:
    So its a connection problem..
    Also check the option Disable Security check and try again...
    Try to check again if the interface is executing properly without Variable substitution and let us know..
    Babu
    Edited by: hlbabu123 on Jan 7, 2011 2:46 PM

  • Startup.dll failed with error 127

    I am using CS5
    master suite but premiere pro does not work, everything else works
    Load Library EX startup.dll failed with error 127 the specified procedure could not be found
    Does anybody ever got thie error msg ?
    Please help...

    I followed your instructions to update to ver. 5.0.2 and it is working now
    thank you for all your help
    Fernando Echeverria
    Engineer, Technical Support
    CIG Engineering Division
    Canon U.S.A., Inc.
    One Canon Plaza, Lake Success, NY 11042
    www.usa.canon.com
    [email protected]
    T 516.328.4797     C 516.492.0223     F 516.328.4849
    From:   Todd_Kopriva <[email protected]>
    To:     Fernando Echeverria <[email protected]>
    Date:   11/22/2010 10:42 PM
    Subject:        Startup.dll failed with error 127
    Have you installed the http://bit.ly/djiyh4?
    Tell us about your computer, especially the operating system.
    What are you doing when that error occurs? Starting the program?
    Exporting?
    Has this ever worked?

  • HT1212 I am unable to get our of a continuous cycle when trying to update or restore my iPad 2. Plug in to iTunes 12.0.1 (latest version). Click update, told can't update, have to restore. Restore fails with error 9. Any help appreciated.

    When I tried to update my iPad I got an error 9. Now, I am unable to access my iPad. It is in a continuous cycle when I try to update or restore the iPad 2. Plug in to iTunes 12.0.1 (latest version). Click update, told can't update, have to restore. Restore fails with error 9. Any help appreciated.
    Here's the cycle:
    I plug in my iPad when “cable to iTunes shows on iPad screen. It says "Your iPad can't be updated, you must restore it to factory settings." That bad enough news, but it gets worse.
    Click Restore
    Extracting software…
    Preparing iPad for restore
    Waiting for iPad…
    Verifying iPad restore with Apple…
    (empty bar under the Apple logo…does not show any activity)
    “The iPad “iPad” could not be restored. An unknown error occurred (9).”
    Notes: I just upgraded to OS X Yosemite 10.10.1 on my iMac (27-inch, Mid 2011) in the last week. It’s the first time I’m tried to backup/update my iPad since the iMac update.
    I swapped out the USB cable to a new cable and get the same results.
    I also unplugged all other USB devices from the iMac and security on my iPad and still get the same results.
    I find it strange that it shows no Serial number for my my iPad 2 when plugged in. It shows “Serial Number: n/a on the screen when it displays: “iPad Recovery Mode To update your iPad without erasing its contents, click Update. To restore your iPad to its factory settings, click Restore iPad.
    I prefer to update my iPad, but it displays “Your iPad can’t be updated, you must restore it to factory settings. If you previously backed up the iPad, click Restore Backup after the restore process completes.”
    It’s a continuous loop. I get the display on my iPad to plug in the iPad to iTunes, plug it in which ends after going through the above procedure saying an error occurred (9).
    So now I cannot use my iPad. When I turn it on I get the display showing me to plug it into iTunes with the cable. Since this is the only option I have I plug it in and the loop begins.
    Any advice would be appreciated.
    Thanks!

    Hello jaybearden,
    Thanks for the question. After reviewing your post, it sounds like you are not able to restore the iOS device since you get an error 9. I would recommend that you read this article, it may be able to help the issue.
    Resolve iOS update and restore errors - Apple Support
    Check your security software
    Related errors: 2, 4, 6, 9, 1000, 1611, 9006. Sometimes security software can prevent your device from communicating with either the Apple update server or with your device.
    Check your security software and settings to make sure that they aren't preventing a connection to the Apple servers.
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • Error: The AcquireConnection method call to the connection manager failed with error code 0xC0202009 using DB2 connection

    I have a SSIS project that I am newly running on the SQL server (2005) .  It was previously run on my PC.  I am importing data from a DB2 server to the SQL server.
    I am in the SA group on the server
    My connection to DB2 works
    When open the package and run it in preview mode, I can retrieve the data.
    When I execute the package I get the below errors:
    [MIDAS OLE DB Source [1]] Error: The AcquireConnection method call to the connection manager "NGMDSPA.alharris" failed with error code 0xC0202009.
    [DTS.Pipeline] Error: component "MIDAS OLE DB Source" (1) failed validation and returned error code 0xC020801C.
    What I have already done that has not worked:
    The original Protection level was set to EncryptSensitiveWithPassword. 
    I have reset the Package Password.
    I have set the protection level to DontSaveSensitive
    I saved the package on the server and set a Package Password.
    I created a new package, set the Protection level to DontSaveSensitive, set a package password in a configuration file using the Package Configuration Wizard.
    Error continues

    Yes.  The Drivers are installed and I have a successfull connection.  I am trouble shooting the issue on the server in BIDS.  I can connect to the DB2 server via the Connectionmanager.  I can also preview the data in the OLE
    DB source connection.  Therefore I know that I have a proper connection
    If you're setting option as DontSaveSensitive then you need to pass the connection information from configuration file/ config table. Otherwise it wont be able to use it for connecting to your source/destination servers. This is the recommended way as it
    will enable you to change connection info at runtime.
    If you want connection info to persist you need to use protection level as EncryptSensitiveUsingUserKey or EncryptSensitiveUsingPassword and set a password.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • - 0 fatal error(s), 3 error(s)     ----------- Payload: Adobe Photoshop Lightroom 5 5.6.0.0 Adobe_Lightroom_x64.msi_5.6 -----------  ERROR: Key not valid for use in specified state.    ERROR: Install MSI payload failed with error: 1603 - Fatal error durin

    I keep getting this error code when trying to download         
    - 0 fatal error(s), 3 error(s) ----------- Payload: Adobe Photoshop Lightroom 5 5.6.0.0 Adobe_Lightroom_x64.msi_5.6 ----------- ERROR: Key not valid for use in specified state. ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation. MSI Error message: Key not valid for use in specified state. ERROR: Third party payload installer Adobe_Lightroom_x64.msi failed with exit code: 1603

    Generally this error happens because of an encrypted folder or insufficient permissions on that folder: http://support.microsoft.com/kb/834484 (MS Explanation)
    Adobe has a page here: Error 1603: A fatal error occurred during installation

  • TM Backup failed with error: 11 -  when copying Movie, image, music files

    TM giving backup errors (for a long time unsolved until I read forum entry about monitoring events with Console prog.) Recently upgraded from 10.5.4 to 10.5.6 with Combo package (attempts at upgrade to 10.5.5 failed with "unknown error")
    I narrowed down to the file types listed by excluding relevant erring folders. TM backup works OK now but without Movies, Photos, Music and small number of applications that appear to fail mainly on copying an image within appl.
    Using Console with "backupd" filter on LOG FILES/system.log (while executing TM backup) gives the following 4 samples of errors:
    1. Dec 21 02:20:03 Macintosh /System/Library/CoreServices/backupd[1627]: Starting standard backup
    Dec 21 02:20:05 Macintosh /System/Library/CoreServices/backupd[1627]: Backing up to: /Volumes/MacBook Backup/Backups.backupdb
    Dec 21 02:20:06 Macintosh /System/Library/CoreServices/backupd[1627]: Event store UUIDs don't match for volume: Macintosh HD
    Dec 21 02:20:06 Macintosh /System/Library/CoreServices/backupd[1627]: No pre-backup thinning needed: 64.44 GB requested (including padding), 129.33 GB available
    Dec 21 02:22:31 Macintosh /System/Library/CoreServices/backupd[1627]: Error: (-36) SrcErr:YES Copying /Users/xxxxx/Movies/iMovie Events.localized/New Event 07-04-2008 2/clip-2008-04-07 11;30;45.mov to (null)
    Dec 21 02:22:32 Macintosh /System/Library/CoreServices/backupd[1627]: Error: (-36) SrcErr:NO Copying /Users/xxxxx/Movies/iMovie Events.localized/New Event 07-04-2008 2/clip-2008-04-07 11;30;45.mov to /Volumes/MacBook Backup/Backups.backupdb/............
    2. Dec 21 02:25:23 Macintosh /System/Library/CoreServices/backupd[1627]: Starting standard backup
    Dec 21 02:25:23 Macintosh /System/Library/CoreServices/backupd[1627]: Backing up to: /Volumes/MacBook Backup/Backups.backupdb
    Dec 21 02:25:24 Macintosh /System/Library/CoreServices/backupd[1627]: Event store UUIDs don't match for volume: Macintosh HD
    Dec 21 02:25:24 Macintosh /System/Library/CoreServices/backupd[1627]: No pre-backup thinning needed: 64.44 GB requested (including padding), 126.79 GB available
    Dec 21 02:27:46 Macintosh /System/Library/CoreServices/backupd[1627]: Error: (-36) SrcErr:YES Copying /Users/xxxxx/Music/iTunes/iTunes Music/Duck Baker, Maggie Boyle and Ben Paley/The Expatriate Game--Traditional Irish & American Music/07 Rye Whiskey.m4a to (null)
    3.Dec 21 13:17:28 Macintosh /System/Library/CoreServices/backupd[1768]: No pre-backup thinning needed: 6.26 GB requested (including padding), 120.05 GB available
    Dec 21 13:21:11 Macintosh /System/Library/CoreServices/backupd[1768]: Error: (-36) SrcErr:YES Copying /Applications/AApplications Extra/Investor programs/StockXloader.app/Contents/Resources/StockXloaderName.tif to (null)
    Dec 21 13:22:03 Macintosh /System/Library/CoreServices/backupd[1768]: Error: (-36) SrcErr:YES Copying /Applications/AApplications Extra/Investor programs/Stox.app/Contents/MacOS/Stox to (null)
    Dec 21 13:22:31 Macintosh /System/Library/CoreServices/backupd[1768]: Error: (-36) SrcErr:YES Copying /Applications/AApplications Extra/Investor programs/Stox.app/Contents/Resources/help/Stox Manual_files/image002.png to (null)
    Dec 21 13:23:07 Macintosh /System/Library/CoreServices/backupd[1768]: Error: (-36) SrcErr:YES Copying /Applications/AApplications Extra/Investor programs/Stox.app/Contents/Resources/help/Stox Manual_files/image033.png to (null)
    Dec 21 13:23:31 Macintosh /System/Library/CoreServices/backupd[1768]: Error: (-36) SrcErr:YES Copying /Applications/AApplications Extra/Investor programs/Stox.app/Contents/Resources/help/Stox Manual_files/image060.png to (null)
    Dec 21 13:24:09 Macintosh /System/Library/CoreServices/backupd[1768]: Error: (-36) SrcErr:YES Copying /Applications/AApplications Extra/Investor programs/Stox.app/Contents/Resources/help/Stox Manual_files/image120.png to (null)
    Dec 21 13:27:29 Macintosh /System/Library/CoreServices/backupd[1768]: Error: (-36) SrcErr:YES Copying /Applications/AApplications Extra/Unproven /EyeTV.app/Contents/MacOS/EyeTV to (null)
    Dec 21 13:27:53 Macintosh /System/Library/CoreServices/backupd[1768]: Error: (-36) SrcErr:YES Copying /Applications/AApplications Extra/Unproven /EyeTV.app/Contents/Resources/authopen to (null)
    Dec 21 13:28:17 Macintosh /System/Library/CoreServices/backupd[1768]: Error: (-36) SrcErr:YES Copying /Applications/AApplications Extra/Unproven /EyeTV.app/Contents/Resources/Device Pictures/CinergyDTXS.png to (null)
    Dec 21 13:28:42 Macintosh /System/Library/CoreServices/backupd[1768]: Error: (-36) SrcErr:YES Copying /Applications/AApplications Extra/Unproven /EyeTV.app/Contents/Resources/Device Pictures/CinergyTExpress.fscaled.png to (null)
    Dec 21 13:29:07 Macintosh /System/Library/CoreServices/backupd[1768]: Error: (-36) SrcErr:YES Copying /Applications/AApplications Extra/Unproven /EyeTV.app/Contents/Resources/Device Pictures/ElgatoDiversity.fscaled.png to (null)
    4. Dec 21 14:44:46 Macintosh /System/Library/CoreServices/backupd[1858]: Starting standard backup
    Dec 21 14:44:48 Macintosh /System/Library/CoreServices/backupd[1858]: Backing up to: /Volumes/MacBook Backup/Backups.backupdb
    Dec 21 14:45:50 Macintosh /System/Library/CoreServices/backupd[1858]: No pre-backup thinning needed: 2.11 GB requested (including padding), 116.67 GB available
    Dec 21 14:46:18 Macintosh /System/Library/CoreServices/backupd[1858]: Error: (-36) SrcErr:YES Copying /Applications/iWork '08/Keynote.app/Contents/Frameworks/BGCompatibility.framework/Versions/A/BGComp atibility to (null)
    Dec 21 14:46:18 Macintosh /System/Library/CoreServices/backupd[1858]: Error: (-36) SrcErr:NO Copying /Applications/iWork '08/Keynote.app/Contents/Frameworks/BGCompatibility.framework/Versions/A/BGComp atibility to /Volumes/MacBook Backup/Backups.backupdb/xxxxxxx’s MacBook/2008-12-21-131514.inProgress/58F99FC2-7474-42C9-8DCA-5C99F724CE6E/Macin tosh HD/Applications/iWork '08/Keynote.app/Contents/Frameworks/BGCompatibility.framework/Versions/A
    Dec 21 14:46:18 Macintosh /System/Library/CoreServices/backupd[1858]: Stopping backup.
    Dec 21 14:46:18 Macintosh /System/Library/CoreServices/backupd[1858]: Error: (-8062) SrcErr:NO Copying /Applications/iWork '08/Keynote.app/Contents/Frameworks/BGCompatibility.framework/Versions/A/BGComp atibility to /Volumes/MacBook Backup/Backups.backupdb/xxxxxx’s MacBook/2008-12-21-131514.inProgress/58F99FC2-7474-42C9-8DCA-5C99F724CE6E/Macin tosh HD/Applications/iWork '08/Keynote.app/Contents/Frameworks/BGCompatibility.framework/Versions/A
    Dec 21 14:46:18 Macintosh /System/Library/CoreServices/backupd[1858]: Copied 52 files (26.7 MB) from volume Macintosh HD.
    Dec 21 14:46:18 Macintosh /System/Library/CoreServices/backupd[1858]: Copy stage failed with error:11
    Dec 21 14:46:24 Macintosh /System/Library/CoreServices/backupd[1858]: Backup failed with error: 11

    solongpc wrote:
    Regardless if this is a general problem or not, does anyone know of any documentation/release notes for common/generic TM error codes? That would be helpful.
    Yeah, many of us would love it! But no such thing exists, at least not that us mere mortals can find.
    There might be another variable that I don't understand right now but at least it is consistent.
    Could it be something funky in the name of one of the folders? Or could the folder object itself be corrupt? Or have some odd extended attribute?
    All I can suggest is calling AppleCare, and/or reporting it as a bug:
    *_Submitting a +Bug Report+ to Apple._*
    |
    This requires a membership in the +Apple Developer Connection,+ but you can get one for free.
    Register here: http://developer.apple.com/programs/start/register/create.php
    Once you receive the confirmation, go to: https://bugreport.apple.com and login.
    Click +New Problem+ at the top.
    Click Help at the top, and/or any of the items underlined in blue for more information.
    Provide as much specific detail as possible, and attach a log, screenshot, etc., as appropriate in the lower section.
    When done, click Submit at the bottom.

  • DAG - Backup failing on 1 DB only with error - The Microsoft Exchange Replication service VSS Writer instance ID failed with error code 80070020 when preparing for a backup of database 'DB012'

    Hi Board,
    i´ve search across the board, technet and symantec sites but did not found a hint about my problem.
    we drive a 2 node DAG (Location1-Ex1-mb1 
    Location2-exc1-mb1), on SP2 RU4 patchlevel with 40 Databases.
    Since some time the backup of one - and only one DB - is failing with these events, logged on the Mailboxserver on which the passive DB is hosted.
    Log Name:      Application
    Source:        MSExchangeRepl
    Date:          28.09.2012 00:37:17
    Event ID:      2112
    Task Category: Exchange VSS Writer
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      Location1-Exc1-MB1
    Description: The Microsoft Exchange Replication service VSS Writer instance 1ab7d204-609a-4aea-b0a7-70afb0db38de failed with error code 80070020 when preparing for a backup of database 'DB012'.
    Followed by
    Log Name:      Application
    Source:        MSExchangeRepl
    Date:         
    01.10.2012 03:33:06
    Event ID:      2024
    Task Category: Exchange VSS Writer
    Level:         Error
    Keywords:      Classic
    User:         
    N/A
    Computer:      Location1-Exc1-MB1
    Description:
    The Microsoft Exchange Replication service VSS Writer (Instance 42916d80-36c1-4f73-86d0-596d30226349) failed with error 80070020 when preparing for a backup.
    The backup Application - Symantec Backup Exec 2010 R3 – states, this error
    Snapshot provider error (0xE000FED1): A failure occurred querying the Writer status.
    Check the Windows Event Viewer for details.
    Writer Name: Exchange Server, Writer ID: {76FE1AC4-15F7-4BCD-987E-8E1ACB462FB7}, Last error: The VSS Writer failed, but the operation can be retried (0x800423f3), State: Stable (1).
    Symatec suggests within http://www.symantec.com/business/support/index?page=content&id=TECH184095
    to restart the MS Exchange Replication Service – BUT the mentioned eventID
    8229 isn´t present on any of the both Mailboxservers.
    The affected Database is active on Location2-Exc1-Mb1 Server and in an overall healthy state. I found during my research, that below Location2-Exc1-Mb1 Server, there are not removed shadow copies present!
    This confuses me, since all Backups are normally taken from the passive copy of a Database.
    So my questions to the board are:
    * Does anyone is facing similar issues?
    * Can someone explain why snapshots are present on the Mailboxserver hosting the Active Database, whilst the errors are logged on the passive one?
    -          * Does someone know the conditions, why shadows copies remain and
    aren´t removed in a proper manner?
    What can cause the circumstance, that only 1 DB is facing such issues?
    Any suggestion is welcome!
    BR
    Markus

    Hi Lenora,
    I´ve encreases VSS / Exchange Backup Log levels to expert, before starting
    those things i´ve all tried now:
    - Backup from passive DB (forced within Symantec Backup Exec)
    - Backup from active DB (forced within Symantec Backup Exec)
    - Backup from passive DB without GRT enabled (forced within Symantec Backup Exec)
    - Backup from active DB without GRT enabled(forced within Symantec Backup Exec)
    All those attempts failed.
    But brought some more details - the backup against the active DB states, that there is still a backup in progress and therefore this backup is cancelled by VSS.
    The Solution was, that i´ve needed to restart the Exchange Replication Service on the Mailbox Server hosting the passive DB.
    Backups are working again on all DBs!
    THX for your replys.
    Best regards
    Markus

  • Error when deploying EAR file: Operation failed with error: java:/app/jdbc/

    I created application using JDeveloper 11g, and have the deploy file EAR read to deploy to oracle application server 10g, but I am encouting the error of Operation failed with error: java:/app/jdbc/jdbc/HRConnDS not found
    Below is the log. What did i do wrong? I have created the datasource of HRConnDS, and it shows in EM.
    Nov 6, 2009 10:06:12 AM] Application Deployer for hra1 STARTS.
    [Nov 6, 2009 10:06:12 AM] Copy the archive to /u01/OraHome_app1/j2ee/home/applications/hra1.ear
    [Nov 6, 2009 10:06:12 AM] Initialize /u01/OraHome_app1/j2ee/home/applications/hra1.ear begins...
    [Nov 6, 2009 10:06:12 AM] Unpacking hra1.ear
    [Nov 6, 2009 10:06:12 AM] Done unpacking hra1.ear
    [Nov 6, 2009 10:06:12 AM] Unpacking webapp2.war
    [Nov 6, 2009 10:06:12 AM] Done unpacking webapp2.war
    [Nov 6, 2009 10:06:12 AM] Initialize /u01/OraHome_app1/j2ee/home/applications/hra1.ear ends...
    [Nov 6, 2009 10:06:12 AM] Starting application : hra1
    [Nov 6, 2009 10:06:12 AM] Initializing ClassLoader(s)
    [Nov 6, 2009 10:06:12 AM] Initializing EJB container
    [Nov 6, 2009 10:06:12 AM] Loading connector(s)
    [Nov 6, 2009 10:06:12 AM] Starting up resource adapters
    [Nov 6, 2009 10:06:12 AM] application : hra1 is in failed state
    [Nov 6, 2009 10:06:12 AM] Operation failed with error: java:/app/jdbc/jdbc/HRConnDS not found
    Thank you very much for your help.

    How did you create your datasource, can you post the content, without passwords of course.
    Greetings.

  • My IPOD Touch initially had a white screen.  I tried correcting this by restoring default settings via ITunes.  The Restore Failed with error 1602 and now the IPOD touch is completely dead. It will not power on or respond when I plug it into my PC via USB

    My IPOD Touch initially had a white screen.  I tried correcting this by restoring default settings via ITunes.  The Restore Failed with error 1602 and now the IPOD touch is completely dead. It will not power on or respond when I plug it into my PC via USB.  I get an error on my PC stating that device attached to USB port is not recognizable.  Can anyone help?

    Error 1602: Try the following steps to resolve this error:
    Ensure proper USB isolation troubleshooting has been performed, and test with a known-good cable.
    Follow the steps listed for Error 1604.
    This error may be resolved by disabling, deactivating, or uninstalling third-party security, antivirus, and firewall software. See steps in this article for details on troubleshooting security software.
    Above from:
    http://support.apple.com/kb/TS3694

  • Acrobat 7 mandatory update failing with error 16820 and blocking the use of the program

    Acrobat 7 mandatory update failing with error 16820 and blocking the use of the program

    Sorry I can't get the screen print to upload
    It says
    Mandatory Update Available
    A Mandatory version of this application is available for download. Application can't continue without installing this version.
    Application:     Acrobat_com
    Installed version: 2.0.0.0
    Update Version : 2.3.0.0
    Download now                    Quit
    Release notes ( this is blank)
    After selecting 'Download Now' I get the following message;
         Download failed
         There was an error downloading the update. Error #16820
         Close

Maybe you are looking for

  • I am trying to put music into my 3rd gen ipod touch and older ipod shuffle but they do not show up on Itunes when i connect them,what could be the problem?

    i am trying to put music into my 3rd gen ipod touch and older ipod shuffle but neither are popping up on itunes, what could be the problem?

  • Headphone jack issue

    I recently took my MBP in to repair multiple problems. One was that the headphone jack produced noise when USB and Firewire cables were plugged in. I believe that part was replaced (I know the logic board was). Now, the heaphone jack has a different

  • [Solved] Nvidia broke?

    My card is NVIDIA GeForce FX 5200, Normally the default package 'nvidia' works fine. I updated, and lost support for OpenGL. I figured maybe nvidia dropped updating the geforce fx 5200, so I installed the nvidia-71xx legacy drivers. Well, they simply

  • SQLLoader Problem

    Hello everybody, I have a problem when loading a file with about 3000000 Datasets. but the problem already occurs after dataset 38111. The loader reports in the logfile, that in various rows a field is too long for the definition in the database. Her

  • Insistente ventanita Imprimir a un archivo

    Ayuda por favor. Cada que le doi imprimir aun archivo pdf me sale insistentemente una ventania que dice IMPRIMIR AUN ARCHIVO y abajo de eso dice NOMBRE DE ARCHIVO DE SALIDA ACEPTAR boton nose en que momento hize algo mal,por que estava imprimiendo y