DIfferent Keychain Error - pls advise

First, I've searched for my keychain error, and cannot find any post dealing with it.
I've upgraded to Leopard on both my G4 powerbook and my new iMac. Both have the same error.
When I go to a website and enter a password, I get the typical "would you like to save this password" popup. If I select YES, I get:
"Keychain [insert name of keychain here] cannot be found to store [login name] your keychain may have been renamed, deleted, or its on an unmounted volume."
This gives me 2 options to select: Cancel or Reset to Defaults.
I just ran the Keychain First Aid, got errors, tried to repair them and ran another test. This is the result:
Verification started
Checking keychain configuration for [redacted] (user ID=501)
Home directory is /Users/[redacted]
Checked login keychain
Checked default keychain
Warning: keychain ~/Library/Keychains/[redacted] is missing the .keychain extension
Checked keychain search list
Keychain ~/Library/Keychains/[redacted].keychain could not be found
Checked contents of ~/Library/Keychains/login.keychain
Checked contents of ~/Library/Keychains/MicrosoftIntermediateCertificates
Problems were found; you should choose the Repair option to fix them
Verification failed
Now, I did (at one point) select "reset to defaults". However, that hasn't helped apparently.
Thoughts?
This is really annoying.
Thanks.
Robert
Leopard Annoyances: Deleted printers, changed desktops, lost keychain, slower Safari, etc. Now why did I upgrade?

Nope. I went into the keychain library, duplicated the login.keychain file and renamed it with my login name.keychain.
Then in the keychain utility, I can see that (icon as well) and it contains all my login info as does the login.keychain keychain.
However, after a restart, I still get the same error message from my first post.
Running the repair utility shows that your fix (basically what I did) fixed ONE of the 2 errors:
Verification started
Checking keychain configuration for [redacted] (user ID=501)
Home directory is /Users/[redacted]
Checked login keychain
Checked default keychain
Warning: keychain ~/Library/Keychains/[redacted] is missing the .keychain extension
Checked keychain search list
Checked contents of ~/Library/Keychains/login.keychain
Checked contents of ~/Library/Keychains/MicrosoftIntermediateCertificates
Checked contents of ~/Library/Keychains/[redacted].keychain
Verification completed
so I'm still missing the .keychain extension....
Thoughts anyone?
Robert

Similar Messages

  • HT1338 Macbook Pro, OS X 10.8.1 when start software update receive error msg NSURLErrorDomain error -1100, pls advise what is this error and how to check software update?

    Macbook Pro, OS X 10.8.1 when start software update receive error msg NSURLErrorDomain error -1100, pls advise what is this error and how to check software update?
    Thank you, best regards
    Sergey

    Several users are reporting a server problem with Software Update. Why not wait and try again later today or tomorrow to see if the problem is resolved.
    If the problem is on your computer then give this a try:
    Fix for Software Update
    See Troubleshooting Automatic Software Update in Mac OS X.
    Delete the following files:
    /Library/Preferences/com.apple.SoftwareUpdate.plist
    /Home/Library/Preferences/com.apple.SoftwareUpdate.plist
    /Home/Library/Preferences/ByHost/com.apple.SoftwareUpdate.xxx.plist where "xxx" is a number.
    /Home/Library/Caches/com.apple.SoftwareUpdate/ (delete entire folder)

  • I am trying to review my new apple id and install skype and wats up. i given all credit card details but still its showing error.. pls advise me

    i am trying to review my new apple id and install skype and wats up. i given all credit card details but still its showing error.. pls advise me

    Same here and this is driving me crazy. I can buy, but can't upgrade. Grrr.

  • [Error] PLS-00049 (6: 19): PLS-00049: bad bind variable 'NEW.T1NAM'

    1. create table t1
    (t1ID int,
    t1nam varchar2(33)
    2. create or replace view t1t2t3
    t1id, t1name, t2id, t2nam, t2cty, t2st, aid, aname, bid, bname, t3id, t3nam
    as
    select * from t1, t2, t1 a, t1 b, t3
    where t1.t1ID = t2.id(+)
    and T2.CTY = a.t1ID(+)
    and t2.sty = b.t1ID(+)
    and t1.t1ID = t3.t3id(+)
    3. CREATE OR REPLACE TRIGGER t1t2t3
    INSTEAD OF INSERT or update
    ON t1t2t3
    BEGIN
    insert into t1
    values(:new.t1ID, :new.t1nam);
    END t1t2t3;
    Get error:
    [Error] PLS-00049 (6: 19): PLS-00049: bad bind variable 'NEW.T1NAM'
    Pls advise. I am using Toad.
    Thanks.

    tnam1 not belongs to t1t2t3.
    :new should be used to te columns of the table on which you are writing the trigger.
    Here i think t1t2t3 has t1name field you have to use :new.t1name instead of :new.t1nam(which belongs to table t1)

  • Getting error PLS-00307: too many declarations while instantiating object.

    Hi,
    I'm using oracle 10.2.0.4.0
    I've created an object obj_bsk as follows:
    create or replace type obj_bsk as object
    (batch_set_key varchar2(64),
    constructor function obj_bsk
    return self as result,
    constructor function obj_bsk(p_batch_set_key in varchar2)
    return self as result,
    member procedure display_batch_set_key
    and object body as
    create or replace type body obj_bsk as
    constructor function obj_bsk
    return self as result is
    begin
    self.batch_set_key := sys_guid();
    return;
    end;
    constructor function obj_bsk (p_batch_set_key varchar2)
    return self as result is
    begin
    self.batch_set_key := p_batch_set_key;
    return;
    end;
    member procedure display_batch_set_key is
    begin
    dbms_output.put_line('batch_set_key is:' || self.batch_set_key);
    end;
    end;
    Then I've created a package test_obj as follows:
    specification:
    create or replace package test_obj is
    -- Author : TSHARMA
    -- Created : 31/01/2012 10:32:37
    -- Purpose : to test objects
    my_bsk obj_bsk;
    g_batch_set_key varchar2(64);
    procedure show_obj_val;
    end test_obj;
    body:
    create or replace package body test_obj is
    procedure show_obj_val is
    begin
    my_bsk.display_batch_set_key();
    end;
    begin
    -- Initialization
    if (g_batch_set_key is not null) then
    my_bsk := obj_bsk(g_batch_set_key);
    else
    my_bsk := obj_bsk();
    end if;
    end test_obj;
    When I'm compiling the package I'm getting following error:
    Compilation errors for PACKAGE BODY TSHARMA.TEST_OBJ
    Error: PLS-00307: too many declarations of 'OBJ_BSK' match this call
    Line: 12
    Text: my_bsk := obj_bsk(g_batch_set_key);
    Error: PL/SQL: Statement ignored
    Line: 12
    Text: my_bsk := obj_bsk(g_batch_set_key);
    Can anyone please explain why oracle is viewing it as too many call for constructor when both constructors are different.
    and how to resolve the issue.
    Thanks
    Tarun

    I've solved the problem. Though it is strange.
    The error occurred because I'm using p_batch_set_key as parameter constructor.
    i.e. constructor function obj_bsk(p_batch_set_key in varchar2)
    return self as result,
    once I changed it to the same name as variable name in object it compiled fine.
    i.e constructor function obj_bsk(batch_set_key in varchar2)
    return self as result,
    It is very strange. Can anyone plesae explain why the parameter name should be same as variable name in object.
    Thanks
    Tarun

  • Keychain error when trying to start backup on time machine

    I have not been able to get my time machine working. It appears to be set up but when I put my password in it says there is a keychain error -25299. I have tried repair, restart keychain back to factory setting. Does anyone have answers? Thanks

    From here: http://support.apple.com/kb/TS3694
    Error 1604
    This error is often related to USB timing. Try changing USB ports, using a different dock connector to USB cable, and other available USB troubleshooting steps (troubleshooting USB connections. If you are using a dock, bypass it and connect directly to the white Apple USB dock connector cable. If the issue persists on a known-good computer, the device may need service.
    If the issue is not resolved by USB isolation troubleshooting, and another computer is not available, try these steps to resolve the issue:
    Connect the device to iTunes, confirm that the device is in Recovery Mode. If it's not in Recovery Mode, put it into Recovery Mode.
    Restore and wait for the error.
    When prompted, click OK.
    Close and reopen iTunes while the device remains connected.
    The device should now be recognized in Recovery Mode again.
    Try to restore again.
    If the steps above do not resolve the issue, try restoring using a known-good USB cable, computer, and network connection.

  • Error: PLS-00216: NUMBER precision constraint must be in range (1 .. 38)

    While compiling one package i am getting the error>
    PLS-00216: NUMBER precision constraint must be in range (1 .. 38)
    The declaration is:
    lServerImportRetVal          number(40);
    Database is Oracle10gdb.
    Do i resize the variable to 38... is that advisable.?

    last option is to change... Your only option is to change: Oracle supports a maximum of 38 digits.
    (Why do you think you need 40 digits? What astronomical number are we talking about?)

  • HT204406 my iTunes match can not pass the step 2, it keeps repeat again and again. Pls advise. Thank you.

    my iTunes Match can not pass the step 2, it keeps repeat again and again. Pls advise. Thank you.

    Very strange.  Two items to try:
    a.  Enable iCloud Status and iCloud Download fields in Song view, sort on status and look for any 'waiting' or 'error';
    b.  If (a) looks good, establish a new user account, create an empty library and enable iTunes Match, confirm that this provides access to all Songs and is working well.
    These are seeking to ensure both no bad Songs or local Library corruption - both are relatively quick.

  • Keep getting keychain error -25293

    None of my keychains can be stored nor accessed it seems. My mobileme account doesn't register either. Pls help. Thanks.
    (Keep getting keychain error -25293).

    My problem is that my Keychain login and password box pops up all the time. I cannot remember my login or password. Is there a way to access my keychain security account without knowing my password?

  • Keychain error -25299 occurred while creating a System Keychain entry for t

    Keychain error -25299 occurred while creating a System Keychain entry for the username “Angela Rosario” and URL “afp://Angela%[email protected]/Data”.
    I keep getting the error above every time I try to set up my time capsule
    Could use some help?
    Mahalo

    Same here.

  • The latest osx update has caused keychain errors on my macbook pro...what should I do?

    I downloaded and installed the latest osx update last night (10.9.2) and now I'm getting login errors when trying to download emails and keychain errors when using Google Chrome or Safari. I have no idea how to solve the problems caused by this update. My macbook pro is older - 2008. Help, please? Thanks in advance for any assistance you can provide.

    I should have clarified above....."keychain errors", not just login errors. Thanks again.

  • Keychain error -25299 when trying to access Time Machine

    I am in the process of migrating to a new iMac and am having trouble getting Time Machine to work on my Time Capsule. It was working fine with my old iMac and it still works fine with my Macbook but when I try to access it on the new machine I am asked for the Time Machine password and the I get the message: "Keychain error -25299 occurred while creating a System Keychain entry for the username "XXXXX XXXX" and URL "XXXXXXX"
    Any suggestions would be appreciated.
    Thanks

    This is a Time Capsule problem, not Time Machine itself.
    It sounds like you need to set up a new password for your TC, or use the one from your old Mac.
    You might do better in the Time Capsule forum, as many of us here (including me) aren't very familiar with TCs.
    The TC forum is hiding in the Digital Life section, and is at: http://discussions.apple.com/forum.jspa?forumID=1253

  • Keychain error while setting up Time Machine

    I'm trying to back up my computer onto a time capsule using time machine. When I try to configure a back up disk, it prompts me for my time capsule password. After entering the correct password, it displays the following error message: Keychain error -25299 occurred while creating a System Keychain entry for the username “<USERNAME>” and URL “<LOCATION OF BACK UP DISK>”. I have verified and repaired the Keychain Access, and no errors were found.

    I had the same problem. WD does indeed support Time Machine set up on the WD World.
    The acrobat file walking you through the 15 second set up [hurrah] can be found here: http://www.wdc.com/wdproducts/updates/?family=mbworld [click on the user guide link to download].
    My problem was that I was trying to login using my user name rather than the wd_backup that is required via Time Machine.... did not read the set up instructions very carefully.

  • HT201269 I am trying to sync contacts from Apple Iphone to Android phone, I was trying to locate the sync contacts with google option but counld not find it in the itunes. Pls advise how do I do the sync, I need to sync the contacts and calendar too. Than

    Hi, I am trying to sync my Iphone contacts and calendar to my Samsung note 3 phone, saw in the U-tube that I can do it in itunes under the sync contacts with googles process. But I could not fine the sync contacts with process in the itunes. Can you pls advise me how I can sync my iphones contacts and calendar to my note 3 phone. Thanks

    http://support.apple.com/kb/HT1296

  • Pls its very urgent - i dropped by iphone 3G and the display became very dim soon after and it still remains the same - pls advise what should be done to bring the display back to normal

    Pls its very urgent - i dropped by iphone 3G and the display became very dim soon after and it still remains the same - pls advise what should be done to bring the display back to normal

    sounds like you broke the display when you dropped it.  There's nothing we users here can do for you.
    Since the iPhone warranty does not cover accidental damage, you will have to pay to have your phone repaired or replaced.  You can bring it into Apple for an out of warranty exchange in the country of purchase, or you can find a 3rd party iPhone repair store in your area.

Maybe you are looking for

  • Background jobs

    Hi,         We can schedule the programs or transactions in background through SM36 and we can see the status through SM37.Then what is the use of FM's JOb_open,Job_submit and Job_close.When we will use these FM's. Can anybody tell me the difference

  • System Tables for Logs

    Does anybody know what system tables store the logs displayed in ST22 and SM37?  Trying to programmatically read and display the logs. Thanks a bunch for your help.

  • BW upgrade 3.0 to 3.5

    HI all, we are about to upgrade a BW project from 3.0 to 3.5. could any one explain me the upgrade procedue. and pl mail me if u have any extact procedure documents and live issues. Thanks in advance. kiran [email protected]

  • Syncing iph4 - unknown error (-50)

    I am getting the following error message and my iph 4 wont sync calendars - unknown error (-50). Any suggestions?

  • Problem reinstalling Adobe Premiere CS3 PRO

    Hello,   I had some issues with Adobe Premiere Pro CS3. I uninstalled it without deactivating it. I know, bad move. When I tried to reinstall it, I got an error of incomplete installation. I tried the Adobe Cloud Cleaner and the Microsoft cleaner and