javac : command not found

JavaCompilationCentosJavac

Java Problem Overview


I have installed java in my CentOS release 5.5 machine using the command yum install java. But I am unable to compile a class using javac.

Do I need to install any other package?

I have tried to locate the javac executable but i am unable to locate it.

/usr/bin/java is linked as follows:
/usr/bin/java -> /etc/alternatives/java
/etc/alternatives/java -> /usr/lib/jvm/jre-1.6.0-openjdk.x86_64/bin/java

I have seen the following output by yum list installed |grep java:

java-1.6.0-openjdk.x86_64              1:1.6.0.0-1.16.b17.el5          installed
tzdata-java.x86_64                     2011b-1.el5                     installed

Java Solutions


Solution 1 - Java

Worked for me with this command:

yum install java-devel

Solution 2 - Java

You installed the Java Runtime Environment (JRE) only, which does not provide javac. For javac, you have to install the OpenJDK Development Environment. You can install java-devel or java-11-devel, which both include javac.

By the way: you can find out which package provides javac with a yum search, e.g.

su -c 'yum provides javac'

on more recent releases of CentOS e.g. 6 the command changes to

su -c 'yum provides */javac'

Solution 3 - Java

Use the following sudo command:

sudo yum install java-1.6.0-openjdk-devel

Solution 4 - Java

I don't know exactly what yum install java will actually install. But to check for javac existence do:

> updatedb
> locate javac

preferably as root. If it's not there you've probably only installed the Java runtime (JRE) and not the Java Development Kit (JDK). You're best off getting this from the Oracle site: as the Linux repos may be slightly behind with latest versions and also they seem to only supply the open-jdk as opposed to the Oracle/Sun one, which I would prefer given the choice.

Solution 5 - Java

I use Fedora (currently 31)

Even with JDK's installed, I still need to specify JAVAC_HOME in the .bashrc, especially since I have 4 Java versions using sudo alternatives --configure java to switch between them.

To find java location of java selected in alternatives

readlink -f $(which java)

In my case: /usr/java/jdk1.8.0_241-amd64/jre/bin/java

So I set following in .bashrc to:

export JAVA_HOME=/usr/java/jdk1.8.0_241-amd64/jre/bin/java

export JAVAC_HOME=/usr/java/jdk1.8.0_241-amd64/bin/javac

export PATH=$PATH:/usr/java/jdk1.8.0_241-amd64/jre/bin

export PATH=$PATH:/usr/java/jdk1.8.0_241-amd64/bin/

Now javac –version gives: javac 1.8.0_241

This is useful for those who want to use Oracle's version. Just remember to change your .bashrc again if you make a change with java alternatives.

Solution 6 - Java

Is the javac executable in a directory that is part of your PATH?

I don't know the CentOS equivalent of the Windows path but if you cd to the java sdk directory and run ./javac does anything happen?

Solution 7 - Java

Install same version javac as your JRE

yum install java-devel

Solution 8 - Java

This worked for me: sudo dnf install java-<version>-devel

Solution 9 - Java

You have installed the Java Runtime Environment(JRE) but it doesn't contain javac.

So on the terminal get access to the root user sudo -i and enter the password. Type yum install java-devel, hence it will install packages of javac in fedora.

Solution 10 - Java

Linux Mint 19.3

I installed Java Oracle manually, like this:

$ sudo ln -s /usr/lib/jvm/java-1.8.0_211/bin/javac /usr/bin/javac

Solution 11 - Java

for java 8 use sudo yum install java-1.8.0-openjdk-devel

Solution 12 - Java

Make sure you install JDK/JRE first.

follow these steps:

open terminal go to your root dictionary by typing

cd /

you will see Library folder

Now follow this path Library/Java/JVM/bin

Once you get into bin you can see the javac file

Now you need to get the path of this folder for that just write this command

pwd

get the path for your javac.

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
QuestionBikash BarmanView Question on Stackoverflow
Solution 1 - JavaJustin GeeslinView Answer on Stackoverflow
Solution 2 - Javaax.View Answer on Stackoverflow
Solution 3 - JavanandalView Answer on Stackoverflow
Solution 4 - JavaRichard HView Answer on Stackoverflow
Solution 5 - JavawayneeusaView Answer on Stackoverflow
Solution 6 - JavaBenCrView Answer on Stackoverflow
Solution 7 - JavaPravin BansalView Answer on Stackoverflow
Solution 8 - JavaGabriel DemlView Answer on Stackoverflow
Solution 9 - JavaMohnishView Answer on Stackoverflow
Solution 10 - JavajkoliveView Answer on Stackoverflow
Solution 11 - Javasampath pallekumburaView Answer on Stackoverflow
Solution 12 - Javanimish parikhView Answer on Stackoverflow