this is my storm.yaml storm.zookeeper.servers: - "192.168.1.5" nimbus.host: "192.168.1.5"
supervisor.slots.ports: - 7700 storm.local.dir: "/var/storm" supervisor.childopts: "-Djava.net.preferIPv4Stack=true" nimbus.childopts: "-Djava.net.preferIPv4Stack=true" worker.childopts: "-Djava.net.preferIPv4Stack=true" drpc.servers: - "192.168.x.x" storm.messaging.transport: "backtype.storm.messaging.netty.Context" storm.messaging.netty.server_worker_threads: 1 storm.messaging.netty.client_worker_threads: 1 storm.messaging.netty.buffer_size: 5242880 storm.messaging.netty.max_retries: 100 storm.messaging.netty.max_wait_ms: 1000 storm.messaging.netty.min_wait_ms: 100 i checked it before but couldn't find anything wrong On Fri, Jan 8, 2016 at 5:56 PM, Jean-Sebastien Vachon < jean-sebastien.vac...@wantedanalytics.com> wrote: > You won't find 0.0.0.0 (or you should not) in your /etc/hosts file. You > have a process accepting connections on all known interfaces (localhost, > 127.0.0.1 or any network addresses listed in ifconfig). > > You need to configure your UI, supervisor and worker to use a valid Ip > address and different ports so that they can talk to each other over the > network. If you're running two processes on the same box, then they must > use different port numbers. Look at your storm.yaml file and init scripts > to make sure that everything (IP and port) is correctly configured and you > should be fine. > > > ------------------------------ > *From:* researcher cs <prog.researc...@gmail.com> > *Sent:* Friday, January 8, 2016 10:50 AM > *To:* Jean-Sebastien Vachon; u...@storm.apache.org; dev@storm.apache.org; > Derek Dagit; Michael Vogiatzis; Michael Vogiatzis; nat...@nathanmarz.com > *Subject:* Re: Failed to bind to: 0.0.0.0/0.0.0.0:6703 > > Thanks, it's a good point , actually i searched for 0.0.0.0 and found that > it read all ipv4 and ipv6 could you guide me how to fix it . here my > /etc/hosts > #127.0.0.1 localhost > 192.168.x.x computername > #127.0.1.1 localhost > # The following lines are desirable for IPv6 capable hosts > #::1 ip6-localhost ip6-loopback > #fe00::0 ip6-localnet > #ff00::0 ip6-mcastprefix > #ff02::1 ip6-allnodes > #ff02::2 ip6-allrouters > and when i used ifconfig > eth0 Link encap:Ethernet HWaddr 68:f7:28:a0:1b:b0 > UP BROADCAST MULTICAST MTU:1500 Metric:1 > RX packets:0 errors:0 dropped:0 overruns:0 frame:0 > TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 > collisions:0 txqueuelen:1000 > RX bytes:0 (0.0 B) TX bytes:0 (0.0 B) > > lo Link encap:Local Loopback > inet addr:127.0.0.1 Mask:255.0.0.0 > UP LOOPBACK RUNNING MTU:65536 Metric:1 > RX packets:1899 errors:0 dropped:0 overruns:0 frame:0 > TX packets:1899 errors:0 dropped:0 overruns:0 carrier:0 > collisions:0 txqueuelen:0 > RX bytes:193309 (193.3 KB) TX bytes:193309 (193.3 KB) > > wlan0 Link encap:Ethernet HWaddr d0:53:49:ce:c5:2d > inet addr:192.168.x.x Bcast:192.168.1.255 Mask:255.255.255.0 > inet6 addr: fd58:2af7:1428:7200:d253:49ff:fece:c52d/64 > Scope:Global > inet6 addr: fe80::d253:49ff:fece:c52d/64 Scope:Link > inet6 addr: fd58:2af7:1428:7200:d554:6712:d36f:95fa/64 > Scope:Global > UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 > RX packets:11503 errors:0 dropped:0 overruns:0 frame:0 > TX packets:11831 errors:0 dropped:0 overruns:0 carrier:0 > collisions:0 txqueuelen:1000 > RX bytes:8105372 (8.1 MB) TX bytes:2425942 (2.4 MB) >