Thereof, how do I check my HDFS version?
There are couple of other options we can explore like: Using HDFS command line is one of the best way to get the detailed version. Using HDP Select command on the host where you want to check the version. Using Ambari API also we can get some idea about the hdfs client version shipped and installed as part of the HDP.
Secondly, how do I know if I have Hadoop installed? Your answer
To check Hadoop daemons are running or not, what you can do is just run the jps command in the shell. You just have to type 'jps' (make sure JDK is installed in your system). It lists all the running java processes and will list out the Hadoop daemons that are running.
Secondly, what is my Hadoop version?
hive --service version
This returns the Hive version for your distribution of Hadoop. Another approach is if you enter into beeline , you can find the version straight away. /usr/bin/hive --version worked for me.
How do I check my hive version?
To find out the Hive version you can run below command on CLI: hive --version.
