Member since
04-22-2014
1218
Posts
341
Kudos Received
157
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 26322 | 03-03-2020 08:12 AM | |
| 16482 | 02-28-2020 10:43 AM | |
| 4764 | 12-16-2019 12:59 PM | |
| 4498 | 11-12-2019 03:28 PM | |
| 6720 | 11-01-2019 09:01 AM |
11-22-2017
07:28 AM
@ronnie10, Hi, The errors you have presented are all at the systemd level and only tell us that mysql didn't start. I'd check the mysql log files for clues as to why the start failed so we can get an idea of what the problem is. -Ben
... View more
11-20-2017
10:15 AM
@narayanaraov, The problem appears to occur since the scm prepare script cannot tail the agent log. This leads to the Wizard in Cloudera Manager to believe that the installation did not work properly. See the error in the log snippet you provided: tail: tail: cannot open '/var/log/cloudera-scm-agent//cloudera-scm-agent.log' for reading: No such file or directory cannot open '/var/log/cloudera-scm-agent//cloudera-scm-agent.log' for reading: No such file or directory Check to see if the log file exists. If it does not, that indicates that the agent may not have been able to start. Try starting the agent manually on that host with "service cloudera-scm-agent restart" Then, check /var/log/cloudera-scm-agent/cloudera-scm-agent.log again and see if it exists and if there are any errors in it. Since we see in your log snippet that a tail of "/var/log/cloudera-scm-agent//cloudera-scm-agent.out " was successful, it is odd that the agent log didn't exist unless the agent process existed unexpectedly
... View more
11-19-2017
05:01 AM
1 Kudo
@PSG01 No problem. Check out this documentation for some background on where the charts data comes from: https://www.cloudera.com/documentation/enterprise/latest/topics/cm_dg_chart_time_series_data.html metrics are stored in the Host Monitor and Service Monitor. The data used in chart building is avaiable via the tsquery results. The actual data is stored in leveldb files on disk (by default in /var/lib/cloudera-host-monitor and /var/lib/cloudera-service-monitor) If you wish to view the metrics in JSON format you can click on the properties icon in the chart and choose "Export JSON" -Ben
... View more
11-19-2017
03:56 AM
@PSG01, Activity Monitor is only used if you have MapReduce1 in your cluster. If you are utilizing only YARN for your jobs, you can remove Activity Monitor without impact as it will not be doing anything -Ben
... View more
11-02-2017
09:57 AM
@epowell, I moved this from Cloudera Manager to HDFS Community since the error is coming out of HDFS itself. This should help you get better and quicker assistance. -Ben
... View more
10-27-2017
10:30 AM
@Alexios, I am not sure what you are asking, so I'll answer two ways to take the question. - If you asking how to create custom roles, that feature does not currently exist. - If you are asking how to assign roles to Cloudera Manager users: https://www.cloudera.com/documentation/enterprise/latest/topics/cm_sg_user_roles.html
... View more
10-26-2017
08:18 AM
1 Kudo
@Alexios, This is the current documentation for Cloudera Manager Roles: https://www.cloudera.com/documentation/enterprise/latest/topics/cm_sg_user_roles.html Let us know if you have any questions. -Ben
... View more
10-24-2017
10:02 AM
@jjjjjjhao, The bits of errors provided don't tell enough of the story to indicate what may be wrong. I would run: service cloudera-scm-agent restart and then see what happens in the agent log. Also, what is the actual problem? What is wrong in Cloudera Manager, etc. It is unclear what you are trying to do or see and what actually happens. Once that is clarified, the community can help. Ben
... View more
10-16-2017
02:19 PM
@ParidaAbinash In order to use the API, you must provide authenticate to CM. See the example here: https://cloudera.github.io/cm_api/docs/python-client/ # Get a handle to the API client
from cm_api.api_client import ApiResource
cm_host = "cm-host"
api = ApiResource(cm_host, username="admin", password="admin")
# Get a list of all clusters
cdh4 = None
for c in api.get_all_clusters():
print c.name
if c.version == "CDH4":
cdh4 = c
... View more
10-16-2017
09:49 AM
@jackyyipjk, The following error indicates that the "hue_hive" user is not authorized to act as a proxy for other users: Failed to validate proxy privilege of hue_hive for administrator:14:13' Hue authenticates to Hive as "hue_hive" but it must then act as a proxy. This is restricted by default. Usually, this can be configured in Cloudera Manager by editing: HDFS --> Configuration --> Service Wide --> Advanced --> Cluster-wide Advanced Configuration Snippet (Safety Valve) for core-site.xml You can add, for instance: hadoop.proxyuser.hue_hive.groups * XML representiation: <property> <name>hadoop.proxyuser.hue_hive.groups</name> <value>*</value> </property> The above will allow hue_hive to act as a proxy for any user (including "administrator) Regards, Ben
... View more