Skip to content

Instantly share code, notes, and snippets.

@SheldonWangRJT
Created March 24, 2018 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SheldonWangRJT/be8854a84ccc2129995aacdd5f00b307 to your computer and use it in GitHub Desktop.
Save SheldonWangRJT/be8854a84ccc2129995aacdd5f00b307 to your computer and use it in GitHub Desktop.
How to solve mac app wants to use the "Local Items" keychain endlessly
#iOSBySheldon
Sometimes due to Mac system error, you are seeing this alert a lot. This alert could be shown repleatedly and annoyingly.
--------------------------------------------------
| xxx wants to use the "Local Items" keychain. |
| Please enter the keychain password. |
| Password: ________________________ |
--------------------------------------------------
We can clean our KeyChain "Local Items" using Terminal to solve this issue.
Steps:
Open terminal
$ cd ~/Library/Keychains
$ ls
When you 'ls' here you will see a folder that contains a bunch of random number liks so:
94ED610F-DD96-4ECF-A2BC-7D2F8651A464 (this number is unique on each system)
$ rm -rf 94ED610F-DD96-4ECF-A2BC-7D2F8651A464
$ sudo Reboot (it may need you input your computer log in password)
<when you log back in everything should be back to normal>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment