Tried to reset a login keychain but got the error: Unable to obtain authorization for this operation.

There was a user account established on my computer when I bought it.  I later added an admin account.  I realized that I did not have the password to the original account.  Using the admin account, I changed the password for the user account.  I then realized that I now couldn't access the keychain.  I followed the instructions to reset a login keychain.  Opened Keychain Access, selected Preferences, clicked Reset Login Keychain, typed the new password I'd created for the account but received the following error.  Unable to obtain authorization for this operation.  I cannot find a user/library/keychain folder so I can't delete the user keychain file.  How can I reset the keychain?

A lot longer ago than that. PowerPC apps haven't been supported since Lion, 10.7.x.
You may have just purchased the game, but the developers obviously haven't kept up to date with the requirements for newer versions of the Mac OS.
You have three options, depending on how old your Mac is.
1) If it were ever able to boot directly to Snow Leopard, you could create a separate partition and install SL onto that partition. Make sure to turn on the option during the installation to install Rosetta. That is OS X's PPC emulator.
2) If your Mac is too new to install Snow Leopard, then you can purchase and install Snow Leopard Server within a VM, such as Parallels, VirtualBox, or Vmware.
3) Use a separate older Mac for running outdated software.

Similar Messages

  • TS1544 I cannot reset my keychain, I recieve a message indicating unable to obtain authorization for this operation

    I recieve systematic passwords request from Key chain and when I want to reset it I recieve a message indicating unable to authorise this operation. Any help is welcome

    Did you change your login PW ever?
    Open System Preferences>Accounts, unlock the lock, click on the little plus icon, make a new admin account, log out & into the new account.
    Does it work in the new account?

  • I've lost the content in my settings, i tried to reset my ipad 2 by holding the Sleep and Home button down for about 10 seconds until you see the Apple logo. Ignore the red slider but it didnt do anything.

    i've lost the content of my settings, ipad 2. i tried to reset 5 times but nothing happened. what should i do? help!

    Try closing the Settings 'app' via the taskbar and see if it works properly when you re-open the app : from the home screen (i.e. not with the Settings app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Settings app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.

  • Tried to install WL81 sp 6 but got same error

    trying to upgrade from WL81Sp3 to SP6 and got this error msg on the install log:
    2008-08-20 09:50:29,294 FATAL [readSilentXML] com.bea.plateng.wizard.installer.common.parsers.TemplateParser - Got an error in parsing template.xml!
    2008-08-20 09:50:29,294 FATAL [readSilentXML] com.bea.plateng.wizard.installer.silent.tasks.ReadSilentXMLTask - java.lang.NullPointerException
    2008-08-20 09:50:29,294 INFO [WizardController] com.bea.plateng.wizard.WizardController - Terminating.
    Anyone, with any idea whats causing the issue and how can i over come and go ahead with my upgrade of WL81sp6, thx in advance

    A lot longer ago than that. PowerPC apps haven't been supported since Lion, 10.7.x.
    You may have just purchased the game, but the developers obviously haven't kept up to date with the requirements for newer versions of the Mac OS.
    You have three options, depending on how old your Mac is.
    1) If it were ever able to boot directly to Snow Leopard, you could create a separate partition and install SL onto that partition. Make sure to turn on the option during the installation to install Rosetta. That is OS X's PPC emulator.
    2) If your Mac is too new to install Snow Leopard, then you can purchase and install Snow Leopard Server within a VM, such as Parallels, VirtualBox, or Vmware.
    3) Use a separate older Mac for running outdated software.

  • Trying to implement a VPD policy but got the following error ORA-20001

    hey good day,
    I'm trying to implement a VPD policy to my application. After I have performed the below task (Label 1) in oracle 10g database. When I'm about to access my application page in ApEx 3.2.1 I got the following error
    ORA-20001: get_dbms_sql_cursor error ORA-28110: policy function or package CHARLES.VPD_PREDICATE has error
    any form of assistance will be greatly appreciated.
    thanks in advance
    Label 1
    USER is "VPD_ADMIN"
    SQL> create or replace context empnum_ctx using set_empnum_ctx_pkg;
    Context created.
    SQL> CREATE OR REPLACE PACKAGE set_empnum_ctx_pkg IS
      2    PROCEDURE set_empnum;
      3  END;
      4  /
    Package created.
    SQL> CREATE OR REPLACE PACKAGE BODY set_empnum_ctx_pkg IS
      2    PROCEDURE set_empnum IS
      3     emp_id NUMBER;
      4    BEGIN
      5     SELECT EMPNUM INTO emp_id FROM CHARLES.INSTRUCTOR
      6     WHERE upper(username) = nvl(v('APP_USER'), USER);
      7     DBMS_SESSION.SET_CONTEXT('empnum_ctx', 'empnum', emp_id);
      8
      9    EXCEPTION
    10      WHEN NO_DATA_FOUND THEN NULL;
    11    END;
    12  END;
    13  /
    Package body created.
    SQL> create or replace package vpd_policy as
      2    function vpd_predicate(object_schema in varchar2 default null, object_name in varchar2 default null)
      3     return varchar2;
      4  end;
      5  /
    Package created.
    SQL> create or replace package body vpd_policy as  function vpd_predicate(
      2   object_schema in varchar2 default null, object_name in varchar2 default null)
      3     return varchar2 as
      4
      5      BEGIN
      6     if (USER = 'ADMIN') and (v('APP_USER') is null) or
      7        (USER = 'MICHAEL.GRAY') and (v('APP_USER') is NULL) then
      8       return '';
      9     else
    10       return '(
    11             exists (
    12                     select  "INSTRUCTOR"."EMPNUM" as "EMPNUM",
    13                             "INSTRUCTOR"."FIRSTNAME" as "FIRSTNAME",
    14                             "INSTRUCTOR"."LASTNAME" as "LASTNAME",
    15                             "LOAD"."COURSEID" as "COURSEID",
    16                             "COURSE"."CREDIT" as "CREDIT",
    17                             "COURSE"."HPW" as "HPW",
    18                             "LOAD"."CAMPID" as "CAMPID",
    19                             "LOAD"."YR" as "YR",
    20                             "INSTRUCTOR"."POS" as "POS",
    21                             "INSTRUCTOR"."USERNAME" as "USERNAME",
    22                             "INSTRUCTOR"."DEPARTMENT_NAME" as "DEPARTMENT_NAME",
    23                             "LOAD"."SEMESTER" as "SEMESTER"
    24                     from    "COURSE" "COURSE",
    25                             "INSTRUCTOR" "INSTRUCTOR",
    26                             "LOAD" "LOAD"
    27                     where   "INSTRUCTOR"."EMPNUM"="LOAD"."EMPNUM"
    28                     and     "LOAD"."COURSEID"="COURSE"."COURSEID"
    29                     and     department_name = (
    30                                     select department_name from departments
    31                                     where upper (assigned_to) = nvl(v(''APP_USER''),USER) )
    32                                     )
    33
    34                     or upper(username) = nvl(v(''APP_USER''), USER)
    35                                                ) ';
    36
    37     END IF;
    38  END vpd_predicate;
    39  END vpd_policy;
    40  /
    Package body created.
    SQL> begin
      2  dbms_rls.add_policy(
      3  object_schema => 'charles',
      4  object_name => 'load',
      5  policy_name => 'Loading Policy',
      6  function_schema => 'charles',
      7  policy_function => 'vpd_predicate',
      8  statement_types => 'select, update, insert, delete');
      9  end;
    10  /
    PL/SQL procedure successfully completed.

    ORA-20001 isn't an Oracle error message it was coded into your application by a developer: Look it up.
    Consider too the following:
    EXCEPTION
       WHEN NO_DATA_FOUND THEN NULL;so if the employee identifier is not found ... is this really what you want? If an employee isn't valid shouldn't you know it?

  • TS3989 Photos are ok in aperture and iphoto but in photostream on ipad and iphone the top of all portrait photos is chopped off. I tried switching photostream off and on but got the same. Only happened with photos added today, all past photos are fine

    I have never had any problems before but all portrait photos added today have the top chopped off. For example , people's heads are missing or roofs or buildings are chopped off. Photos are fine on the camera and on my mac in iphoto and aperture. Switched off photostream on my ipad...all photos were deleted. Switched photostream back on and all photos uploaded again and portrait photos are cropped again

    It sounds like while trying to import the photos with insufficient disk space those image files were damaged and not copied fully.  Now that you have sufficient space (a minimum of 10 GB is recommended) the latest imports are good.
    What do you get if you export one of the problem photos out of iPhoto as Kind=Original and try to open it with Preview.  If it appears the same then there's nothing you can to do recover them.
    OT

  • I am trying to install Acrobat XI pro but got an error code 16, please help!

    My system is W8 X64. Please help!
    Thank you!

    Hi texdwu,
    Right click on Acrobat and run as admin. Please follow the kb: http://helpx.adobe.com/x-productkb/policy-pricing/configuration-error-cs5.html .
    Also disable UAC and try installing again: http://blogs.msdn.com/b/hyperyash/archive/2012/07/18/disabling-user-account-control-in-win dows-8.aspx .
    Regards,
    Romit Sinha

  • I just got a new iPhone 4S and tried to restore but it didn't finished downloading all the apps, tried to reset and restore again, but it wouldn't start over. What can I do?

    I just got a new iPhone 4S and tried to restore but it didn't finished downloading all the apps, tried to reset and restore again, but it wouldn't start over. What can I do?

    http://support.apple.com/kb/ts3694
    Check USB connections
    If there’s an issue with the USB port, cable, dock, or hub, or if the device becomes disconnected during restore, try troubleshooting the USB connection, then troubleshooting your security software.
    Common errors: 13, 14, 1600-1629, 1643-1650, 2000-2009, 4000, 4005, 4013, 4014, 4016, “invalid response”, and being prompted to restore again after a restore completes.
    To narrow down the issue, you can also change up your hardware:
    Use another USB cable.
    Plug your cable into a different USB port on your computer.
    Try a different dock connector (or no dock).
    Add (or remove) a USB hub between your device and computer.
    Connect your computer directly to your Internet source, with no routers, hubs, or switches.
    If you see your error after changing your USB connections, continue to the next section to troubleshoot your hardware.

  • I am trying to set up iCloud keychain, but it keeps sending the verification code to my land line, even tho I have gone into my apple account and changed to my mobile phone

    I am trying to set up Icloud keychain, but it keeps sending the verification code to my land line (which I guess I entered back when I first got my MacBook).  I have gone into my apple account and changed the # to my mobile phone, but it continued to send it to the land line.  Probably is something simple, but I am not a techy!! 

    Hi,
    As regardss to the iChat and iChat Sharing categorisation you have used.
    In iChat 6 (lion) and Messages (Mountain Lion) the apps login to AIM and to Me.com
    The Login to Me.com allows AIM to verify the password to the iCloud issued names (@me.com and @iCloud.com)
    This "Dual" login also prevents the newer iCloud issued name from using this site
    (it has extra Privacy settings that iChat can't access for your AIM and Aim valid Accounts)
    Ignoring the @mac.com and MobileMe entries in the Add Account Screen in iChat and using the AIM one does not get around this issue.
    AIM and @mac.com names still work in older versions of iChat.
    The short answer is that iCloud issued Apple IDs do not work in iChat 5 or Earlier.
    10:12 PM      Friday; February 15, 2013
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Just started getting an APS Daemon.exe-System Error saying my MSVCR80.dll file is missing.  I tried to reinstall itunes, but got another error message.  Anyone having this problem or know how to fix it?

    Just last 2 days started getting an APS Daemon.exe-System Error saying my MSVCR80.dll file is missing when booting up my PC with Windows 7.  I tried to reinstall itunes, but got another error message.  Anyone having this problem or know how to fix it?
    I now see the message from tt2 and will try that.  Thanks!

    Read this:
    MSVCR80.dll missing, cannot install iTunes

  • HT5312 I've tried to reset my security questions but it's not working.

    I've tried to reset my security questions but it's not working. I tried to reset the quwstions but i have'nt received any email.

    Alternatives for Help Resetting Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Customer Service: Contacting Apple for support in your
              country and ask to speak to Account Security.
    How to Manage your Apple ID: Manage My Apple ID

  • 4 hours ago my iphone randomly turned off and now i cant get it to turn back on. Ive tried everything, trying to reset it, charging it but nothing works! the charging symbol doesnt even come up when i plugged in the charger. Please help!

    4 hours ago my iphone randomly turned off and now i cant get it to turn back on. Ive tried everything, trying to reset it, charging it but nothing works! the charging symbol doesnt even come up when i plugged in the charger. Please help!

    Hello there, LaruaGalliers.
    The following Knowledge Base article provides some great troubleshooting steps for your issue:
    iPhone and iPod touch: Charging the battery
    http://support.apple.com/kb/HT1476
    Particularly:
    Battery does not charge
    Verify that the outlet being used is working.
    Try another USB power adapter if available.
    If no other USB power adapter is available, try connecting to a high-power USB 2.0 port (not a keyboard). The computer must be turned on and not in sleep or standby mode.
    Try another USB cable if available.
    iPhone or iPod touch displays the low-battery image and is unresponsive
    If you see the image below, charge the iPhone or iPod touch with USB power adapter for at least 15 minutes.    
    You should see this image when iPhone or iPod touch begins to charge:
    If the screen still displays the low-battery icon, try turning the iPhone or iPod touch off and then on again.
    If the issue persists, follow these troubleshooting steps.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • I'm trying to restore/update my iphone 3gs but I got the error -1 . Does somebody knows what it means and how to fix it?

    I update my iphone to the version 5.0 and it was great, but after I got the 5.1 IOS my iphone started to reboot every now and then. It restarted itself a couple of times and keep working fine, and then it happen again until the screen showed the usb cable and the itunes logo. Its on restore mode, so I connect it to itunes but I always got the error -1 just before the update finished. I have been trying to find out what the error -1 means and how to fix it. My iphone have never been unlock or jailbreaked. I hope somebody have some information about error -1. Thanks.

    Have you tried here:
    iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting

  • I got the error ORA-12154 trying to connect my app but not with the SQLplus

    Hello! i need your help,
    I have a client (Win XP SP2) and i'm trying to connect to the database in the server (Windows 2003, Oracle 10G) using the SQL plus, this is ok, but i try to do it throught the application developed in Developer 6i and i cannot, i got the error: ORA-12154 TNS:could not resolve service name. I tried to solve it by setting the env. var TNS_ADMIN and i still have the same error.
    Could anyone help me?, please

    Hi,
    Check for following file TNSNAMES.ORA at location;
    C:\<Forms-directory>\NET80\ADMIN
    See, if your service name is added to your file. If not then add a new entry like;
    gsm.world =
    (DESCRIPTION =
    (ADDRESS = (COMMUNITY = tcp)(PROTOCOL = TCP)(Host = 10.0.1.22)(Port = 1521))
    (CONNECT_DATA = (SID = gsm))
    Where:
    gsm.world = your service through which you connect to databse.
    Host = ip address of machine where oracle server is running.
    sid = name of your database
    If you already have entry of service in TNSNAMES.ora file then paste you service here as is did , so that we can check because the error you are facing is only due to service problem. Please update........

  • I ve got an iPhone 6 i forgot my password i ve tried to restore it from itunes but in the middle of the downloading it asks for password

    I ve got an iPhone 6 with iOS 8.1.1i forgot my password i ve tried to restore it from itunes but in the middle of the downloading it asks for password  how do i restore my phone?

    Hi there pablo nina,
    Welcome to Apple Support Communities.
    It sounds like you’ve forgot the passcode for your iPhone and you want to know how to restore it. The article linked  below will walk you through the process of restoring your iPhone from recovery mode using iTunes.
    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled - Apple Support
    Cheers,
    -Jason 

Maybe you are looking for

  • Call transaction 'VL33N' on click of Inbound delivery number  in ALV List.

    Hi, My ALV output is having Inbound delivery number. If user clicks on one of the Inbound delivery it has to call transaction VL33N and display the user selected document. Code: WHEN '&IC1'. IF rs_selfield-fieldname = 'VBELN'.         READ TABLE gt_f

  • Owa_util.get_cgi_env( 'REMOTE_ADDR' ) fails with PLSQL numeric error

    APEX Listener 2.0.1 APEX 4.2.2 Oracle 11gR2 Linux RHEL 6.3 Glassfish 3.1.2 ============= After upgrading from APEX Listener 1.1.4 -> 2.0.1 the procedure owa_util.get_cgi_env( 'REMOTE_ADDR' ) fails to return the remote IP Address and instead I get the

  • Email adress to update when sendind workitem

    hello, could you please help me to solve a problem ? in fact, an operator doesn't receive a notification on his mail box when he validates an order, i have seen that his mail adress is not correct how can correct  it please ? Thank's

  • Error when i try to Activate BC Set for Charm

    Hi gurus, I´m trying  to activate the BC Set for charm via spro and the following error message apear when I try to activate that.(solman 4.0 sp 16) "SAP ChaRM auto-configuration warnings" "Message no. IMG_FASTCONF028" Any idea for this? Regards, Ign

  • Delta not working for 2LIS_17_I3OPER

    HI BW Experts, Can somebody please help me to solve the following problem. Software :BI 7.0 There is a custom built release flag in the extractor 2LIS_17_I3OPER and it can be changed by users.When ever Flag is changed(R or blank) it should generate a