문제

I want to change the password of store and an alias in a signing certificate.Can anyone tell me how can I do this?

도움이 되었습니까?

해결책

For Keystore, you can use. It's interactive and will ask you for current and new password

keytool -storepasswd -keystore <keystore-name>

For Alias, try this

keytool -keypasswd -keystore <keystore-name> -alias <alias-name> -keypass <old-password> -new <new-password>

다른 팁

Use keytool, the following command should work a charm :)

keytool -keypasswd  -alias <key_name> -keystore my.keystore

Check out this link

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top