Where is the Keytool application?

JavaEclipseAndroid MapviewKeytool

Java Problem Overview


I need to use mapview control in android and I can't seem to understand how to run keytool. Is it installed with eclipse? I can't seem to find a download link.

Thanks

Java Solutions


Solution 1 - Java

keytool is a tool to manage (public/private) security keys and certificates and store them in a Java KeyStore file (stored_file_name.jks).
It is provided with any standard JDK/JRE distributions.
You can find it under the following folder %JAVA_HOME%\bin.

Solution 2 - Java

keytool is part of the standard java distribution.

In a windows 64-bit machine, you would normally find the jdk at

C:\Program Files\Java\jdk1.8.0_121\bin

It is used for managing keys and certificates you can sign things with, in your case, probably a jar file.

If you provide more details of what you need to do, we could probably give you a more specific answer.

Solution 3 - Java

For me it turned out to be in c/Program Files/Java/jdk1.7.0_25/bin (Windows 8). A more general answer to this question is that it will most likely be in the bin sub directory of wherever your jdk is installed.

Solution 4 - Java

> keytool it's a binary file into the JDK folder ... just add your JDK > as environment variable by adding the following line

C:\Program Files\Java\jdk1.8.0_65\bin

Solution 5 - Java

If you are working with a Mac... the keytool is part of the Java SDK and can be found in the following location /System/Library/Java/JavaVirtualMachines/[VERSION].jdk/Contents/Home/bin/keytool

Solution 6 - Java

here: C:\Program Files\Java\jre7\bin it is an exe keytool.exe

Solution 7 - Java

It is in path/to/jdk/bin. Make sure that $JAVA_HOME is defined, and $JAVA_HOME/bin is added to $PATH, or else the 'keytool' command won't be recognized when called.

Solution 8 - Java

If you have Android installed in windows, you will also find it here: C:\Program Files\Android\jdk\microsoft_dist_openjdk_1.8.0.25\jre\bin

Solution 9 - Java

If you have java installed of course keytool is in there. What you need to do is to add it on your PATH variable.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAmit RazView Question on Stackoverflow
Solution 1 - JavaevandrixView Answer on Stackoverflow
Solution 2 - JavabiziclopView Answer on Stackoverflow
Solution 3 - JavaAdam DavisView Answer on Stackoverflow
Solution 4 - JavaMohammed AmineView Answer on Stackoverflow
Solution 5 - JavacrazyDiamondView Answer on Stackoverflow
Solution 6 - Javauser3142006View Answer on Stackoverflow
Solution 7 - JavaAsher AView Answer on Stackoverflow
Solution 8 - JavaCloudArchView Answer on Stackoverflow
Solution 9 - JavaDen IsahacView Answer on Stackoverflow