Member since
04-12-2016
124
Posts
20
Kudos Received
17
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2121 | 11-26-2018 06:59 AM | |
16360 | 06-18-2018 08:29 AM | |
5795 | 03-12-2018 11:46 AM | |
2611 | 01-29-2018 12:59 PM | |
5114 | 10-10-2017 11:12 AM |
07-03-2017
04:45 AM
1 Kudo
Hello, You will have to talk to a Cloudera sales rep, they will be able to tell you what licenses and the duration is available to you. Call Sales Representative From the US: (888) 789-1488 International: +1 (650) 362-0488 Good luck, Tina
... View more
05-31-2017
07:18 AM
1 Kudo
Does it work if you try to connect using the IP address or the hostname instead of local host? If not, try looking at the iptables? This fixed this issue for me once. {code} CANNOT CONNECT TO YOUR CM CONSOLE IF YOU SEE ANY 'REJECT' LINES YOU MUST REMOVE THEM [host ~]# iptables -L Chain INPUT (policy ACCEPT) target prot opt source destination ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED ACCEPT icmp -- anywhere anywhere ACCEPT all -- anywhere anywhere ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ssh REJECT all -- anywhere anywhere reject-with icmp-host-prohibited Chain FORWARD (policy ACCEPT) target prot opt source destination REJECT all -- anywhere anywhere reject-with icmp-host-prohibited Chain OUTPUT (policy ACCEPT) target prot opt source destination SEE THEM HERE [host ~]# more /etc/sysconfig/iptables # sample configuration for iptables service # you can edit this manually or use system-config-firewall # please do not ask us to add additional ports/services to this default configuration *filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT -A INPUT -p icmp -j ACCEPT -A INPUT -i lo -j ACCEPT -A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT -A INPUT -j REJECT --reject-with icmp-host-prohibited -A FORWARD -j REJECT --reject-with icmp-host-prohibited COMMIT #EDIT FILE AND REMOVE, THEN RESTART IPTABLES [host ~]# vim /etc/sysconfig/iptables # RESTART SERVICE service iptables restart {code}
... View more
05-23-2017
06:44 AM
Hi, Here are some docs that should help. CM Upgrade: https://www.cloudera.com/documentation/enterprise/5-9-x/topics/cm_ag_ug_cm5.html#cmig_topic_9_4 CDH Upgrade: https://www.cloudera.com/documentation/enterprise/5-9-x/topics/install_upgrade_to_cdh58.html Good Luck, Tina
... View more
05-05-2017
06:37 AM
HI Shriparv, There is a CM unstaller /usr/share/cmf/uninstall-cloudera-manager.sh that may help you. Tina
... View more
03-29-2017
06:53 AM
What is the operationg system you are trying to install on? The error shows it is looking for files for Ubuntu16.04 (xenial) we haven't released CM for that O/S yet. Tina
... View more
02-14-2017
06:43 AM
All the services you mentioned will be part of the CDH parcel, you are correct. The Key Trustee Server parcel is separate and needs further licensing. You will need to contact Cloudera support to be able to install it. Hope the rest of your CDH installation went well. Tina
... View more
02-13-2017
07:54 AM
No, I am not sure. https://www.cloudera.com/documentation/enterprise/latest/topics/cm_ig_create_local_parcel_repo.html Did you follow the directions here for copying the files? Download the parcel and manifest.json files for your OS distribution from Move the .parcel and manifest.json files to the web server directory, and modify file permissions If you copied the CDH parcels, configured CM to use them, it should be working. All I can think of at this time is the permissions are not right. I hope that is it. Tina
... View more
02-13-2017
07:13 AM
Hi, The wizard should eventually see your local repo. When I had this issue, this is how I got it to work. 1) login to CM on another window 2) get out of the express wizard that I was automatically logged into 3) go to the parcel, top right of landing page http://HOSTNAME:7180/cmf/parcel/status 4) Click on Check for new parcels 5) Go back to your installation window and you should see the parcels Hope this works, Tina
... View more
02-13-2017
06:52 AM
2 Kudos
Hi, You will need to upgrade CM to 5.10.0 first. CM will not let you upgrade CDH to a version that is higher than CM's version. Depending what you are running, it could be as easy as following Step 7. https://www.cloudera.com/documentation/enterprise/latest/topics/cm_ag_ug_cm5.html#cmig_topic_9_4 Read this for directions. Tina
... View more
02-08-2017
06:55 AM
You need the epel repository which you probably do not have in your older version of CentOS 6.4. Look at this page https://fedoraproject.org/wiki/EPEL read under How can I use these extra packages? you need to get the repo, then enable the repo and install python, I think you will get all the software you need installed that way. yum --enablerepo=epel install python26-devel or some command like that. Hope this helps.
... View more