How to reset AppEngine password in IntelliJ IDEA 12?

I entered the wrong password when I deployed the AppEngine project using Tools -> Upload App Engine Application. How do I get IntelliJ to ask me for a new password? Now it just fails in the background. My Admine console in App Engine shows that nothing is being deployed.

+4
source share
4 answers

I managed to delete this line

<property name="GOOGLE_APP_ENGINE_ACCOUNT_EMAIL" value=" my_email_address@gmail.com " /> 

from my workspace.xml .

+3
source

Well, I figured it out on Intellij Idea 13.

You should delete the file ~ / .IntelliJIdea13 / config / options / security.xml

Pay attention . This will delete all stored passwords, as the usernames are also encrypted, so you donโ€™t know which entry matches your AppEngine authentication.

Then you must reconfigure the IDE โ†’ Password to reset the master password.

+1
source

Open the .iml file for your project and edit it to remove the following lines:

 <option name="email" value=" user@host.com " /> <option name="gp" value="abcd1234" /> <option name="oauth2" value="false" /> 

The next time you start deployment to App Engine, you will be prompted for new credentials.

0
source

You can force the AppEngine credential dialog to be activated by choosing Don't Remember Passwords in Preferences> Passwords.

-1
source

Source: https://habr.com/ru/post/1487687/


All Articles