I have install below setup with version: Hadoop version 1.0.3 java version \"1.7.0_67\" Scala version 2.11.7 Spark version 2.1.1.
getting below error, can any one hel
Add SPARK_LOCAL_IP in load-spark-env.sh as
SPARK_LOCAL_IP
load-spark-env.sh
export SPARK_LOCAL_IP="127.0.0.1"
The load-spark-env.sh file is located in spark/bin directory
spark/bin
Or you can add your hostname in /etc/hosts file as
hostname
/etc/hosts
127.0.0.1 hostname
You can get your hostname by typing hostname in terminal
Hope this solves the issue!