hdfs配置公网远程连接

修改/etc/hosts文件

xx.xxx.xx.xx 公网Ip  master

172.17.14.210 master

修改core-site配置文件

<configuration>
    <property>
        <name>fs.defaultFS</name>
        <value>hdfs://master:9000</value>
    </property>
        <property>
                <name>hadoop.tmp.dir</name>
        <value>/home/jardoop/tmp</value>
        </property>
</configuration>

修改hdfs-site.xml

<property>
        <name>dfs.namenode.secondary.http-address</name>
        <value>master:9001</value>
</property>

重新启动

stop-dfs.sh
hdfs namenode -format
start-dfs.sh

如果有hive,需要重新启动

删除元数据库,重新初始化


start-all.sh
schematool -dbType mysql -initSchema

你可能感兴趣的:(大数据)