Member since
04-23-2018
6
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2177 | 04-23-2018 12:48 PM |
04-23-2018
12:48 PM
Well I found a solution, took me a lot of time. Figured that some application was using port 8080 by: C:\WINDOWS\system32>netstat -anob | findstr "8080"
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 4700
TCP 127.0.0.1:8080 127.0.0.1:49327 TIME_WAIT 0
TCP 127.0.0.1:8080 127.0.0.1:49328 TIME_WAIT 0
TCP 127.0.0.1:8080 127.0.0.1:49329 TIME_WAIT 0
TCP 127.0.0.1:8080 127.0.0.1:49399 TIME_WAIT 0
TCP [::]:8080 [::]:0 LISTENING 4700
TCP [::1]:8080 [::1]:65314 TIME_WAIT 0
TCP [::1]:8080 [::1]:65315 TIME_WAIT 0
TCP [::1]:8080 [::1]:65316 TIME_WAIT 0
TCP [::1]:8080 [::1]:65343 TIME_WAIT 0
TCP [::1]:8080 [::1]:65344 TIME_WAIT 0
TCP [::1]:8080 [::1]:65391 TIME_WAIT 0
TCP [::1]:8080 [::1]:65392 TIME_WAIT 0 So I kill that application with PID 4700: C:\WINDOWS\system32>taskkill /PID 4700 /F
SUCCESS: The process with PID 4700 has been terminated. Start VM from virtualbox again and I am happy and Ambari is up and running! Cheers.
... View more
04-27-2018
08:10 PM
@Marshal Tito The hostname should be the node you have installed the hiveserver2 on. The username/pw should be a hadoop user you have created (or if using the Sandbox, one of the pre-created users such as maria_dev). Within Azure, make sure the port that you are connecting over is open (10000) from your tableau system to your hadoop cluster. Usually on public clouds, it is the closed firewall ports that is the issue.
... View more