Keytool alias does not exist

匿名 (未验证) 提交于 2019-12-03 08:48:34

问题:

I am trying to get my debug.keystore md5 key so I can get the API key for Google Maps.

I run the command:

And then running the command:

keytool -list -alias armand -keystore debug.keystore

I then enter my password and it gives me the following error:

keytool error: java.lang.Exception: Alias  does not exist

What am I doing wrong?

回答1:

This is right a way to get key:

To get certificate fingerprint (MD5) follow the steps below:

You need to get the keystore file for getting the certificate fingerprint (MD5). Your keystore file can be found at the following path:

C:\Documents and Settings\\Local Settings\Application Data\Android

(Or)

C:\Documents and Settings\\.android

Keystore file name is debug.keystore. Copy the "debug.keystore" file to some other folder (ex: - "D:\Androidkeystore\") (it's user friendly to use). Open command Prompt and go to the Java installed directory. ("C:\Program Files\Java\\bin") Then type the below line (given in box) and press enter.

keytool.exe -list -alias androiddebugkey -keystore "D:\AndroidKeystore\debug.keystore" -storepass android -keypass android

Here the MD5 certificate fingerprint is

64:88:A2:FC:AA:9F:B1:B0:CA:E4:D0:24:A8:1E:77:FB

This is working, but I am getting small error here:

this is my path-C:\ANDROID\Java\jdk1.6.0\bin>keytool.exe -list -alias androiddebugkey -keystore"C:\ANDROID\debugkey\debug.keystore"-storepass android -keypass android

keytool error: java.lang.RuntimeException: Usage error, android is not a  legal command


回答2:

You are using the wrong keystore. You will have to use a different keystore.

I got this same error On Fedora, after running this command:

keytool -exportcert -alias androiddebugkey -keystore androidKey -list -v

Error:

keytool error: java.lang.Exception: Alias  does not exist java.lang.Exception: Alias  does not exist

The mistake I made in this case was me using the keystore to sign my android APK project rather than the debug.keystore located in /home/el/.android/debug.keystore:

I changed it to use the right keystore like this:

[el@rosewill .android ]$ keytool -exportcert -alias androiddebugkey -keystore /home/el/.android/debug.keystore -list -v Enter keystore password:  ******

And it produced this output:

Alias name: androiddebugkey Creation date: Aug 31, 2013 Entry type: PrivateKeyEntry Certificate chain length: 1 Certificate[1]: Owner: CN=Android Debug, O=Android, C=US Issuer: CN=Android Debug, O=Android, C=US Serial number: 14be2b38 Valid from: Sat Aug 31 21:43:47 EDT 2013 until: Mon Aug 24 21:43:47 EDT 2043 Certificate fingerprints:          MD5:  47:D1:3C:AD:3C:6D:49:22:26:01:6B:C8:4D:C0:37:42          SHA1: 10:96:22:A1:3C:3B:4A:14:2D:B7:5E:62:1D:D7:9B:0B:24:EE:DF:BD          SHA256: DF:BF:A9:5D:B8:AE:7D:FF:7E:E7:62:84:8F:32:9A:29:19:C6:41:82:83:FA:0B:D0:1B:59:15:AE:4D:D8:38:D1          Signature algorithm name: SHA256withRSA          Version: 3  Extensions:   #1: ObjectId: 2.5.29.14 Criticality=false SubjectKeyIdentifier [ KeyIdentifier [ 0000: 1A 32 1F F0 03 E0 23 34   6F GE 78 CC E3 10 B5 61  .0....)4o.x....a 0010: 6D 6F F1 38                                        mo.8 ] ]

For reference, these were the directions I was following:

From here: https://developers.google.com/+/quickstart/android

In a terminal, run the the Keytool utility to get the SHA-1 fingerprint of the certificate. For the debug.keystore, the password is android.

keytool -exportcert -alias androiddebugkey -keystore  -list -v


转载请标明出处:Keytool alias does not exist
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!