Member since
07-08-2013
548
Posts
59
Kudos Received
53
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3359 | 08-17-2019 04:05 PM | |
| 3147 | 07-26-2019 12:18 AM | |
| 10196 | 07-17-2019 09:20 AM | |
| 5904 | 06-18-2018 03:38 AM | |
| 15237 | 04-06-2018 07:13 AM |
09-14-2017
12:36 AM
Hi, I have uploaded my latest logs in previous message. There is SSL error coming. Kindly help me in resolving that error. Thanks, Amit
... View more
08-17-2017
06:50 PM
Thanks for the detailed response!
... View more
08-17-2017
12:14 AM
Error: Package: cloudera-manager-agent-5.12.0-1.cm5120.p0.120.el7.x86_64 (cloudera-manager) Requires: httpd Error: Package: cloudera-manager-agent-5.12.0-1.cm5120.p0.120.el7.x86_64 (cloudera-manager) Requires: MySQL-python Error: Package: cloudera-manager-agent-5.12.0-1.cm5120.p0.120.el7.x86_64 (cloudera-manager) Requires: mod_ssl am getting this error even after setup of proxy everything
... View more
08-14-2017
03:46 AM
For posterity this seems to be an issue in CM 5.12 and a fix is scheduled to be available in CM 5.12.x maintenance release. - workaround posted in [0] http://community.cloudera.com/t5/Cloudera-Manager-Installation/Installation-failed-Failed-to-receive-heartbeat-from-agent/m-p/58809#M11660 http://community.cloudera.com/t5/Cloudera-Manager-Installation/Cloudera-Manager-Agent-cannot-connect-with-supervisor-Failed-to/td-p/58522 http://community.cloudera.com/t5/Cloudera-Manager-Installation/CDH-5-12-0-clouder-manager-agent-can-not-start/m-p/58726
... View more
08-11-2017
01:53 AM
hi Michalis.thks for help ,i have found the problem afte umount the tmpfs.thks,regard.
... View more
06-16-2017
08:42 AM
Then you will need to parse the REST result of the /hosts?view=full [0] endpoint which gives you map of host-to-roleRef "The list of roles assigned to this host." $ curl -u admin:admin -X GET "http://cm-server:7180/api/v12/hosts?view=full" [0] https://cloudera.github.io/cm_api/apidocs/v16/ns0_apiHost.html
... View more
06-01-2017
05:52 AM
you are right. Working now. Thanks for your help!
... View more
05-07-2017
01:31 AM
hi michalis, sometimes during the installation of CDH5 (take 5.11.0 as an example), there is no "ssh login credentials" page. but the installation can be finished smoothly, and the managed services can starts and runs successfully. why these happened ?
... View more
03-13-2017
07:27 AM
There seems to be issues around update-alternatives command. Which is often caused by a broken alternatives link under /etc/alternatives/ or a bad (zero length, see [0]) alternatives configuration file under /var/lib/alternatives, and based on your description it appears to be the former.
The root cause is that Cloudera Manager Agents relies in the OS provided binary of update-alternatives, however the binary doesn't relay feedback on bad entries or problems, therefore we have to resort to manually rectifying issues like these. We have an internal improvement JIRA OPSAPS-39415 to explore options on how to make alternatives updates during upgrades more resilient.
To recover from the issue, you would need to remove CDH related entries from alternatives configuration files.
[0] https://bugzilla.redhat.com/show_bug.cgi?id=1016725
= = = = = = =
# Stop CM agent service on node
service cloudera-scm-agent stop
# Delete hadoop /etc/alternatives - below will displays the rm command you'll need to issue.
ls -l /etc/alternatives/ | grep "\/opt\/cloudera" | awk {'print $9'} | while read m; do if [[ -e /var/lib/alternatives/${m} ]]; then echo "rm -fv /var/lib/alternatives/${m}"; fi; echo "rm -fv /etc/alternatives/${m}"; done
# Remove 0 byte /var/lib/alternatives
cd /var/lib/alternatives
find . -size 0 | awk '{print $1 " "}' | tr -d '\n'
# The above command will give you a multi-line output of all 0 byte files in /var/lib/alternatives. Copy all the files, and put into the rm -f
rm -f
# Start CM agent
service cloudera-scm-agent start
= = = = = = =
... View more