hadoop - Accessing HDFS Remotedly -


i have hadoop server runs on server, let's on ip 192.168.11.7 , have core-site.xml follows :

<configuration> <property>         <name>fs.defaultfs</name>         <value>hdfs://localhost:9000</value> </property> 

i run hdfs, i.e. command :

sbin/start-dfs.sh 

now, want access hdfs local computer browser. possible?

i tried http://192.168.11.7:9000 or http://192.168.11.7:50075, no avail. i.e. site can’t reached

thank much

edited :

this content of hdfs-site.xml :

<configuration> <property>         <name>dfs.replication</name>         <value>1</value>     </property> <property>     <name>dfs.webhdfs.enabled</name>     <value>true</value> </property> <property>     <name>dfs.namenode.http-address</name>     <value>0.0.0.0:50070</value> </property> 

and core-site.xml :

<configuration> <property>         <name>fs.defaultfs</name>         <value>hdfs://localhost:9000</value> </property>  <property>         <name>dfs.datanode.http.address</name>         <value>0.0.0.0:50075</value> </property> 

but when access ly local computer : http://192.168.11.7:50075, still no avail there wrong?

thank you

there should connections between 2 machines. either configure ssh or httpfs


Comments

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -