我正在尝试 Datatorrent 沙盒,但收到此错误....
HDFS 未就绪 HDFS 可能仍在启动,或者您的 hadoop 服务可能存在其他配置问题。
控制台每 10 秒检查一次这些服务的状态变化,但您也可以手动触发刷新。
添加环境细节:
操作系统:Ubuntu 14.04
虚拟盒子:virtualbox-5.0_5.0.18-106667
数据洪流:数据洪流-沙盒-3.2.0
我正在尝试 Datatorrent 沙盒,但收到此错误....
HDFS 未就绪 HDFS 可能仍在启动,或者您的 hadoop 服务可能存在其他配置问题。
控制台每 10 秒检查一次这些服务的状态变化,但您也可以手动触发刷新。
添加环境细节:
操作系统:Ubuntu 14.04
虚拟盒子:virtualbox-5.0_5.0.18-106667
数据洪流:数据洪流-沙盒-3.2.0
#!/bin/bash
# script to check status of various Hadoop services
# NOTE: If machine was shutdown improperly, or if HDFS continues to show red
# not-ready status, some of these may not be running; just start them if needed with:
# sudo service <name> start
# where <name> is the name of the service you want to start
#
services="hadoop-hdfs-namenode hadoop-hdfs-datanode hadoop-yarn-resourcemanager \
hadoop-yarn-nodemanager dtdemos"
for s in $services; do
sudo service $s status
done
# gateway service
sudo service dtgateway status
如果这也不起作用,请尝试以下命令将其强制退出安全模式:
hdfs dfsadmin -safemode leave
hdfs fsck -delete
HDFS 将在启动后几秒钟内处于安全模式。在此处阅读更多信息:http: //hadoop.apache.org/docs/r2.4.1/hadoop-project-dist/hadoop-hdfs/HdfsUserGuide.html#Safemode
您可以查看 dtgateway.log 文件了解更多具体细节吗?该文件通常位于/home/username/.dt/logs/dtgateway.log
.