Member since
03-26-2018
9
Posts
1
Kudos Received
0
Solutions
03-28-2018
05:24 PM
Thanks a lot everyone who replied back to me to help, The cloudera cm install went on fine and tats the reason I was able to connect the url internally from the host machine, it’s a mistake from my end I grabbed the private ip instead of the public ip and url failed, but when I used the public ip was able to login to cloudera manager without any issues. Thanks
... View more
03-28-2018
12:58 PM
i tried replacing the localhost with the machine name and still works [ec2-user@ip-172-31-44-224 ~]$ curl -i http://ip-172-31-44-224.us-west-2.compute.internal:7180 HTTP/1.1 200 OK Expires: Thu, 01-Jan-1970 00:00:00 GMT Set-Cookie: CLOUDERA_MANAGER_SESSIONID=1h54xzygxge381p2g16fyh0wbh;Path=/;HttpOnly Content-Type: text/html; charset=utf-8 Last-Modified: Wed, 07 Feb 2018 17:44:18 GMT Content-Length: 63 Accept-Ranges: bytes Cache-Control: max-age=3600,public Server: Jetty(6.1.26.cloudera.4) <head><meta http-equiv="refresh" content="0;url=/cmf/"></head> [ec2-user@ip-172-31-44-224 ~]$ curl -i -u 'admin:admin' http://ip-172-31-44-224.us-west-2.compute.internal:7180/api/v1/tools/echo HTTP/1.1 200 OK Expires: Thu, 01-Jan-1970 00:00:00 GMT Set-Cookie: CLOUDERA_MANAGER_SESSIONID=1t1pb4wgxqsl61ix0fwo3c0xs5;Path=/;HttpOnly Content-Type: application/json Date: Wed, 28 Mar 2018 19:57:30 GMT Transfer-Encoding: chunked Server: Jetty(6.1.26.cloudera.4) { "message" : "Hello, World!" }[ec2-user@ip-172-31-44-224 ~]$
... View more
03-28-2018
11:37 AM
I changed the inbound rules to allow port 7180 still no luck.
... View more
03-28-2018
11:32 AM
Hi, I've installed cloudera Manager on Amazon VM Ec2 server. disabled SELinux, disabled filewall setting sudo service cloudera-scm-server status - up and running netstat -nap |grep 7180 (No info could be read for "-p": geteuid()=1000 but you should be root.) tcp 0 0 0.0.0.0:7180 0.0.0.0:* LISTEN i tried these two on the running server ec2-user@ip-172-31-44-224 ~]$ curl -i http://localhost:7180 HTTP/1.1 200 OK Expires: Thu, 01-Jan-1970 00:00:00 GMT Set-Cookie: CLOUDERA_MANAGER_SESSIONID=sgoy1bydivup1kmcoqv110bfu;Path=/;HttpOnly Content-Type: text/html; charset=utf-8 Last-Modified: Wed, 07 Feb 2018 17:44:18 GMT Content-Length: 63 Accept-Ranges: bytes Cache-Control: max-age=3600,public Server: Jetty(6.1.26.cloudera.4) <head><meta http-equiv="refresh" content="0;url=/cmf/"></head> curl -i -u 'admin:admin' http://localhost:7180/api/v1/tools/echo HTTP/1.1 200 OK Expires: Thu, 01-Jan-1970 00:00:00 GMT Set-Cookie: CLOUDERA_MANAGER_SESSIONID=ubst7780j868jkzeysc0a31;Path=/;HttpOnly Content-Type: application/json Date: Wed, 28 Mar 2018 18:30:20 GMT Transfer-Encoding: chunked Server: Jetty(6.1.26.cloudera.4) { "message" : "Hello, World!" } both returned an output, However when trying to access the below url from chrome or fixefox i am getting the below error http://ip-172-31-44-224.us-west-2.compute.internal:7180 Error : We can’t connect to the server at ip-172-31-44-224. If that address is correct, here are three other things you can try: Any suggestions would be very helpful. Thanks,
... View more
03-28-2018
07:35 AM
Hi, Good morning, thanks for your reply, I tried changing the setting as below but still it’s failing Attached is the screenshot . Thanks,
... View more
03-27-2018
10:00 PM
EC2 and port 7180 is open for public access [ec2-user@ip-172-31-44-224 ~]$ netstat -na | grep 7180 tcp 0 0 0.0.0.0:7180 0.0.0.0:* LISTEN
... View more
03-27-2018
01:14 PM
I am also facing the same issue, can you let me know how did you solve it
... View more
03-26-2018
11:47 AM
1 Kudo
seems like both services - impala-state-store and impala-catalog are down, restarting them worked for me sudo service impala-state-store start sudo service impala-catalog start
... View more
03-26-2018
10:01 AM
I Found the jar file was in this directory: [cloudera@quickstart lib]$ find ./ -name hive-contrib.jar ./hive/lib/hive-contrib.jar ./oozie/oozie-sharelib-mr1/lib/hive/hive-contrib.jar ./oozie/oozie-sharelib-yarn/lib/hive/hive-contrib.jar [cloudera@quickstart lib]$ pwd /usr/lib/hive/lib [cloudera@quickstart lib]$ ls -ltr hive-contrib.jar lrwxrwxrwx 1 root root 32 Oct 23 09:59 hive-contrib.jar -> hive-contrib-1.1.0-cdh5.13.0.jar [cloudera@quickstart lib]$ then used the same ADD JAR /usr/lib/hive/lib/hive-contrib.jar and it worked.
... View more