But when I tried to kick start nimbus, then I got the below exception in the nimbus log file:
2013-05-17 19:17:12 ZooKeeper [INFO] Initiating client connection, connectString=localhost:2181 sessionTimeout=20000 watcher=com.netflix.curator.ConnectionState@53e6978d
2013-05-17 19:17:12 ClientCnxn [INFO] Opening socket connection to server localhost/
127.0.0.1:21812013-05-17 19:17:12 ClientCnxn [INFO] Socket connection established to localhost/
127.0.0.1:2181, initiating session
2013-05-17 19:17:13 ClientCnxn [INFO] Session establishment complete on server localhost/
127.0.0.1:2181, sessionid = 0x13eb48fd6420000, negotiated timeout = 20000
2013-05-17 19:17:13 zookeeper [INFO] Zookeeper state update: :connected:none
2013-05-17 19:17:13 ZooKeeper [INFO] Session: 0x13eb48fd6420000 closed
2013-05-17 19:17:13 CuratorFrameworkImpl [INFO] Starting
2013-05-17 19:17:13 ZooKeeper [INFO] Initiating client connection, connectString=localhost:2181/storm sessionTimeout=20000 watcher=com.netflix.curator.ConnectionState@11c0b8a0
2013-05-17 19:17:13 ClientCnxn [INFO] Opening socket connection to server localhost/
127.0.0.1:21812013-05-17 19:17:13 ClientCnxn [INFO] EventThread shut down
2013-05-17 19:17:13 ClientCnxn [INFO] Socket connection established to localhost/
127.0.0.1:2181, initiating session
2013-05-17 19:17:13 ClientCnxn [INFO] Session establishment complete on server localhost/
127.0.0.1:2181, sessionid = 0x13eb48fd6420001, negotiated timeout = 20000
2013-05-17 19:17:13 nimbus [INFO] Starting Nimbus server...
2013-05-17 19:22:04 TNonblockingServer [WARN] Got an IOException in internalRead!
java.io.IOException: Connection reset by peer
at sun.nio.ch.FileDispatcher.read0(Native Method)
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:21)
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:202)
at sun.nio.ch.IOUtil.read(IOUtil.java:175)
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:243)
at org.apache.thrift7.transport.TNonblockingSocket.read(TNonblockingSocket.java:141)
at org.apache.thrift7.server.TNonblockingServer$FrameBuffer.internalRead(TNonblockingServer.java:669)
at org.apache.thrift7.server.TNonblockingServer$FrameBuffer.read(TNonblockingServer.java:458)
at org.apache.thrift7.server.TNonblockingServer$SelectThread.handleRead(TNonblockingServer.java:359)
at org.apache.thrift7.server.TNonblockingServer$SelectThread.select(TNonblockingServer.java:304)
at org.apache.thrift7.server.TNonblockingServer$SelectThread.run(TNonblockingServer.java:243)
I have ensured that even the port 6627 is left unblocked. I have placed the storm.yaml file inside storm/conf folder as well inside .storm folder in my home root folder with al permissions.
Help appreciated.