Member since
04-22-2014
1218
Posts
341
Kudos Received
157
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 26232 | 03-03-2020 08:12 AM | |
| 16367 | 02-28-2020 10:43 AM | |
| 4703 | 12-16-2019 12:59 PM | |
| 4470 | 11-12-2019 03:28 PM | |
| 6648 | 11-01-2019 09:01 AM |
07-17-2019
07:41 PM
Sorry @Consult I did not notice your question until now. The business case is simple. Now a days many people do not use password to login to their window workstation. They use pin/with PIV card, face id, finger print, etc. to login to desktop. Some government agancies do not even give password to users to enforce users not to use password. Now after login to the desktop account, the user need to login to cloudera CM with the same AD account they used to login to windows. but they don't have the password for the AD account, what can they do?
... View more
07-17-2019
02:58 AM
It would be safe if you remove balancer role. balancer is required only when there is data incosistency.stop the role and follow below steps. You can goto HDFS-> instances -> select balancer -> migrate roles and specify target host. Regards, Asim
... View more
07-15-2019
05:44 AM
@bgooley Cloudera Navigator Metastore needs TLS password to be set in CM UI otherwise it wont start. Thanks for the help to fix the issue. - Vijay M
... View more
07-14-2019
06:41 PM
@manu_009, Unfortunately, the CM log kind of shows us more of the same: the server attempts to execute a query but communication with MySQL fails. If this is a problem where the server cannot start, I'd be interested in seeing the logs from startup just to see if there are any clues when CM attempts to connect to MySQL initially. If it gets by that part but then fails later on, that could tell us something. Since the CM log shows it is waiting for packets that never arrive, that means it would be good to look at the network and MySQL to see if it gets connections from CM. I'd recommend the following: - Try starting CM and while CM is starting, run the "show full processlist;" to see if any connections are establishjed You could also use netstat -nap or similar to see if connections are established. - Check MySQL documentation... see if there is a way to debug incoming connections - Try running this on the CM host before trying to start: "tcpdump -i any -w ~/mysql.pcap port 3306" (or whatever port your MySQL is listining on) This will capture all packets going out to and coming back from the MySQL server. After CM does not start, use Ctrl-c to quit tcpdump and finalize the pcap file. You can use WireShark to review communication with MySQL. You could also run tcpdump on the MySQL host (if it is not the CM host) to find out how communication looks on the MySQL host side. Generally, the errors you are seeing do not indicate a problem with CM itself; rather, CM cannot read information from the database.
... View more
07-11-2019
02:15 PM
@BiggieSmalls, The error you show indicates that the certificate and key files specified for Hue are not in the expected PEM format. The key needs to have the key stored in base64 between: -----BEGIN ENCRYPTED PRIVATE KEY----- -----END ENCRYPTED PRIVATE KEY----- The certificate file needs to have the certificate in base64 between: -----BEGIN CERTIFICATE----- -----END CERTIFICATE----- The "no start line" error from openssl libraries is explaining that it cannot find any BEGIN line make sure your ssl_certificate and ssl_private_key files contain the above text.
... View more
07-10-2019
02:56 PM
@lamdeptunhien9x, I just worked with Cloudera engineering and we have fixed up the code logic that led to the false ERROR. I tested and it looks good. We'll add the fix into future releases. Cheers, Ben
... View more
07-10-2019
10:39 AM
@bob_the_web, There is only one Cloudera Manager binary. Without a license, the limited features of Express are available. To unlock the Enterprise features, a trial or purchased license is required. https://www.cloudera.com/documentation/enterprise/latest/topics/cm_ag_licenses.html You can find how to install CM here: https://www.cloudera.com/downloads/manager/6-2-0.html
... View more