1

我正在尝试 Datatorrent 沙盒,但收到此错误....

HDFS 未就绪 HDFS 可能仍在启动,或者您的 hadoop 服务可能存在其他配置问题。

控制台每 10 秒检查一次这些服务的状态变化,但您也可以手动触发刷新。

添加环境细节:

操作系统:Ubuntu 14.04

虚拟盒子:virtualbox-5.0_5.0.18-106667

数据洪流:数据洪流-沙盒-3.2.0

4

3 回答 3

2

您是否有机会使用 Mac?您可以尝试使用这样的脚本重新启动服务吗(此脚本仅检查状态;您可以将状态替换为stopstartrestart):

#!/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
于 2016-05-01T00:25:42.207 回答
1

HDFS 将在启动后几秒钟内处于安全模式。在此处阅读更多信息:http: //hadoop.apache.org/docs/r2.4.1/hadoop-project-dist/hadoop-hdfs/HdfsUserGuide.html#Safemode

于 2016-04-29T13:18:07.927 回答
0

您可以查看 dtgateway.log 文件了解更多具体细节吗?该文件通常位于/home/username/.dt/logs/dtgateway.log.

于 2016-05-02T10:00:09.170 回答