Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Keytool command not recognized

I'm working on Login with Google+ activity and when I write command "Keytool" in Cmd this message appears: "keytool is not recognized as an internal or external command".

How do I fix this problem ?

like image 942
Ahmed azooz Avatar asked Aug 13 '26 12:08

Ahmed azooz


1 Answers

The Keytool command can only be ran if you have added it to your path or from within the directory where it is located.

If you are on Windows, most likely it is located here:

C:\Program Files\Java\\bin

You'll need to either run the keytool command from there, or add the keytool location to your PATH environment variable.

like image 142
MalcolmMcFly Avatar answered Aug 16 '26 00:08

MalcolmMcFly