Member since
01-09-2019
401
Posts
163
Kudos Received
80
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2600 | 06-21-2017 03:53 PM | |
| 4307 | 03-14-2017 01:24 PM | |
| 2402 | 01-25-2017 03:36 PM | |
| 3841 | 12-20-2016 06:19 PM | |
| 2103 | 12-14-2016 05:24 PM |
04-30-2016
02:29 AM
1 Kudo
I can run sandbox running on virtualbox with 2222. No reason to think of why its working from vmware and not virtualbox. Both use NAT.
... View more
04-30-2016
02:13 AM
1 Kudo
If this is sandbox, you can ssh to localhost on port 2222. ssh root@localhost -p 2222 if you are on mac/linux or use putty if you are on windows. Default password for root is hadoop. More details here
... View more
04-30-2016
12:54 AM
ulimit -n 8096 Try this and restart DN and NN and see if this works. I haven't seen your DN logs but it looks like you are running into max open files issue.
... View more
04-29-2016
10:12 PM
NN has stopped with this 'java.io.IOException: All datanodes DatanodeInfoWithStorage[10.0.2.15:50010,DS-c63e2550-a18a-4035-8bb3-7f8f2b4dd607,DISK] are bad. Aborting...' One possible reason is that you are hitting ulimit. Please post ulimit -a output and datanode log (from the same folder as NN log)
... View more
04-29-2016
10:04 PM
Check if the nodemanager service is running on the nodes that you are expecting. ps -ef | grep nodemanager should show if it is running. If it is running, take a look to see if resourcemanager is running. ps -ef | grep resourcemanager on resourcemanager node. Please also paste resourcemanager and nodemanager logs (from /var/log/hadoop-yarn/yarn folder on those nodes)
... View more
04-29-2016
09:55 PM
It means namenode is not running. You need to paste the full NN log to see why it hasn't started. Please upload either the full NN log or the last 20 lines from there.
... View more
04-29-2016
09:23 PM
1 Kudo
From the third screenshot, I see that NN hasn't restarted (which was running before the restart). You can take a look at /var/log/hadoop/hdfs/hadoop-hdfs-datanode-sandbox.hortonworks.com.log which is your NN log. This should have some information on why hasn't started back up.
... View more
04-29-2016
01:08 PM
As @nyadav pointed out, you need to use the URL as jdbc:sqlserver://xx.xx.x.xxx:1433;databaseName=sample instead of the way that you are entereing for SQL Server. List databases worked since you haven't used a database in the jdbc URL there.
... View more
04-29-2016
01:01 PM
/var/log/hadoop/hdfs/hadoop-hdfs-datanode-<hostname>.log has datanode log and /var/log/hadoop-yarn/yarn/yarn-yarn-nodemanager-<hostname>.log has nodemanager on each node. You can also look at .out files with same name in the same directories.
... View more