

You’ve forgotten your Apple ID on an Intel Mac (without an Apple T2 Security Chip).You use an Intel or Apple Silicon Mac that hasn’t been signed into with an Apple ID.You can use it in the following instances: Reset Admin Password on Mac Directly via macOS RecoveryĪn alternative way to reset Mac’s admin password involves opening the Reset Password assistant directly via the Terminal in macOS Recovery. That will help you sync your passwords to a new login keychain. If you’re interested in learning more about Postgres, you can visit the Arctype documentation and Arctype blog, which contain additional details on how to do this as well.Important: If you use iCloud Keychain, your Mac will also request you to enter the passcode of at least one other Apple device (iPhone, iPad, or Mac) you own. In this tutorial, you just learned how to reset your Postgres 14 password on a Mac. This time, change the "trust" method for all users back to "scram-sha-256" and restart the service. Repeat step 1 to restore the pg_hba.conf file back to the correct state. Now enter the following SQL command in the terminal to change the password: ALTER USER postgres WITH PASSWORD 'newpassword' Ĭhange the newpassword argument in the above command to your desired password. You will not be asked for a password because we have change the md5 or scram-sha-256 setting to trust in Step 1. Next, we can now start the PSQL session by running the command below: psql -U postgres

Just enter the following commands: sudo launchctl stop -10.plist Once this is done, save the file and exit it. For more information, refer to the Postgres documentation here. You will see the md5 or scram-sha-256 method near the bottom of the file. Or, open the command line and enter the command below: sudo vim /Library/PostgreSQL/14/data/pg_hba.confĪfter opening the pg_hba.conf file with your text editor, change the "" scram-sha-256" method for all users to " trust.” The method may also say md5 - in which case, changing it to trust is still correct. Look for a file called pg_hba.conf in Finder and open it in the text editor. This file is located in the data directory of Postgres (the folder where you installed Postgres, for example: /PostgreSQL/14/data/). You can reset your Postgres 14 password by following the steps below: Step 1įirst, we’ll modify the pg_hba.conf file. In this guide, we'll walk you through the step-by-step process to reset your Postgres 14 password on a MacOS system. In either case, you’re not locked out forever. If you have Postgres 14 installed on your Mac, you may find that you need to change the password at some point - either for security reasons, or because you simply forgot it.
