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 |
01-03-2018
08:22 AM
1 Kudo
Hello @JB0000000000001, If you added the Impala Service after Hue was part of the cluster, it is likely you need to manually enable Impala via Cloudera Manager. Try going to Hue --> Configuration Then, search for "Impala Service" If "none" is selected, choose the name of your Impala service instead and save. Restart Hue. Log out of Hue and back in if you already have an active session just to be sure. After that, Impala service should be available in Hue.
... View more
12-29-2017
09:49 AM
Sorry for the late reply; glad you did it and now you know it was the perfect solution. Cheers!
... View more
12-29-2017
09:47 AM
@DataYogi, The error discussed on this thread is: HTTPError: HTTP Error 400: BAD REQUEST The error your agent is showing is different: HTTPError: HTTP Error 500: Internal Server Error This is a different problem... we should probably move to another thread. In short, your Hue Server is not functional since it cannot communicate with its Postgres backend database: OperationalError: FATAL: no pg_hba.conf entry for host "2402:1f00:8001:281::", user "hue", database "hue", SSL off This is a response from your Postgres server saying that it is denying your host / user combination access to the server. You may need to either configure IPv4 addresses if you did not intend on using IPv6 or configure your server's pg_hba.conf file to allow the IPv6 address. Information regarding this database configuration should be on Postgres sites or other places on the web. We do have some documentation from Cloudera, too: https://www.cloudera.com/documentation/enterprise/latest/topics/cm_ig_extrnl_pstgrs.html If you are using the "embedded" postgres database, instead, you can either enable IPv4 in the cluster hosts or add IPv6 lines in the config file located in "/var/lib/cloudera-scm-server-db/data/pg_hba.conf".
... View more
12-29-2017
09:30 AM
@epowell, Yes, you are correct. Client Configurations are managed separately from the configurations that servers use when CDH is managed by Cloudera Manager. Deploy Client Configuration for your cluster to make sure the /etc/hadoop/conf files contain the latest configuration items. Once that is done, you should be able to run commands just fine. Ben
... View more
12-11-2017
02:54 PM
to clarify, "yum list |grep postgres-server" was intended to show in which repository the package is found.
... View more
12-11-2017
02:51 PM
@shasta, This looks like a yum problem. yum is looking for "postgresql-server" and cannot find it... --> Processing Dependency: postgresql-server >= 8.4 for package: cloudera-manager-server-db-2-5.8.0-1.cm580.p0.40.el6.x86_64 --> Finished Dependency Resolution Error: Package: cloudera-manager-server-db-2-5.8.0-1.cm580.p0.40.el6.x86_64 (my-cloudera-af-repo) Requires: postgresql-server >= 8.4 Try running "yum list |grep postgres-server" As a workaround, you could install the packages manually using "yum localinstall" perhaps
... View more
11-30-2017
12:04 PM
@CrispinVV, Could you supply us with a screen shot showing exactly what URL you are navigating to and what you are clicking? Also, please check the Cloudera Manager log for exceptions. They might help us understand what is happening. Usually, the log is /var/log/cloudera-scm-server/cloudera-scm-server.log Lastly, what version of Cloudera Manager are you using? From the Support Menu on the top right of CM, click "About" to see the version. Thanks!
... View more
11-27-2017
08:19 AM
@ivten, The "recommended" my.cnf in the Cloudera documentation is intended, in general, as a suggestion for MySQL used by any role. DBAs may adjust as needed or desired.
... View more
11-22-2017
08:11 AM
1 Kudo
@szamasz, Your observations are correct and expected. The configuration differences are due to the logic used in Cloudera Manager's management of client configurations. Depending on what roles you have installed on each host, CM will determine the configuration files necessary for clients on those hosts. If you have a YARN role (NodeManager or Resource Manager) running on the same host as the NameNode, you will probably see the same alternative link to conf.cloudera.yarn. This is because the YARN configuration will contain client files for YARN as well as HDFS. If you wish, you can go to your YARN service in Cloudera Manager and click on the Instances subtab. Click Add new Role Instances and add a new role of "Gateway" to the NameNode host. Then, deploy client configuration. You will then see that the alternatives link will change to /etc/hadoop/conf.cloudera.yarn Adding the Gateway Role will allow clients (not Services) to read the current client configuration. Servers do not use the client configuration files in /etc. Rather, they use the configuration files deployed to the /var/run/cloudera-scm-agent/process directory when starting a service via Cloudera Manager. I don't know if all of this will help you solve your problem since I didn't see what command you tried to run when the problem happened. If it doesn't help, please describe what the problem is and we'll help you. Ben
... View more
11-22-2017
07:44 AM
@ronnie10, Hello, Based on your description, it appears the complaint is that when you click on the Cloudera Manager link for the NameNode UI, it uses the "internal" hostname. This cannot be influenced unless you changed the name of the internal host to match the hostname your browser is using. Cloudera Manager generates the URL based on the hostname and domain of the hosts on which the roles are running. I would recommend either adding the internal hostname as an alias (maybe in hosts file) so the external clients know how to resolve to the correct IP. There are other ways to work around this... for example, I think using a reverse proxy with URL rewrite rules may work, for instance depending on your host naming scheme would be something that is possible. A low-tech solution would be to build a list of URLs that use the public host/IP and put them in web page rather than using the URLs generated by CM. Ben
... View more