Database Reference
In-Depth Information
verify that ports 10000 and 10001 are open for communication on the
Hadoop computer. On a Windows machine, you can check this by running
the following command from a command prompt:
netstat -a > c:\temp\ports.txt
It can take some time to complete this command. When it finishes, you can
open the file c:\temp\ports.txt in notepad.exe . This file contains a
listing of open ports on the computer. Search the file for 10000 and 10001.
Iftheportisopen, youwillseelines similar tothefollowing. (TheIPaddress
and computer name values may vary, depending on your environment
settings):
TCP 0.0.0.0:10000 HDP1-3:0 LISTENING
TCP 0.0.0.0:10001 HDP1-3:0 LISTENING
If there are no entries for ports 10000 or 10001, you can run the following
commands from the command prompt to open them:
netsh advfirewall firewall add rule name=AllowHive
dir=in
action=allow protocol=TCP localport=10000-10001
You will also need to verify that the computer running SSIS allows outgoing
connections on ports 10000 and 10001. You can do that with the following
command (note the use of out instead of in for direction):
netsh advfirewall firewall add rule name=AllowHive
dir=out
action=allow protocol=TCP localport=10000-10001
Search WWH ::




Custom Search