Member since
10-01-2018
802
Posts
143
Kudos Received
130
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3057 | 04-15-2022 09:39 AM | |
| 2466 | 03-16-2022 06:22 AM | |
| 6533 | 03-02-2022 09:44 PM | |
| 2897 | 03-02-2022 08:40 PM | |
| 1906 | 01-05-2022 07:01 AM |
07-30-2021
05:51 AM
@Ging Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future.
... View more
07-29-2021
01:02 AM
@haxsaansiddiqi This is expected. There seems to be a confusion about the different products. What you are doing is installing Private Cloud Experiences (Means CML, CDW & CDE etc.) which Needs a CDP Private Cloud Base Cluster which is synonyms of CDH/CM cluster in old days. CDP Experience don’t have TRIAL available that’s what the error says Installation of the Kubernetes components of the CDP experience needs a License. So if you want CDP Private Cloud Base cluster for TRIAL it's available and you can play around using the doc: https://www.cloudera.com/downloads/cdp-private-cloud-trial.html & https://docs.cloudera.com/cdp-private-cloud-base/7.1.4/installation/topics/cdpdc-trial-installation.html For Experience install you have to contact Sales Team to get the License. Hope this helps.
... View more
07-22-2021
06:50 AM
@rjwiggins80 May be this thread can guide a little: https://community.cloudera.com/t5/Support-Questions/Bad-Credentials-on-Accumulo-Tracer/td-p/131423 Else please send the full error message.
... View more
07-21-2021
01:46 AM
Hi, when i enabled this feature, hue is able to import all users from the LDAP group however sync_ldap_users_and_groups is trying to create same user again and its failing with duplicate key error. see my question at https://community.cloudera.com/t5/Support-Questions/hue-ldap-sync-duplicate-error/m-p/320951/highlight/true#M228224
... View more
07-20-2021
01:48 AM
@exploer The role logs needs to be in given format because at every start of service CM creates a runtime process directory as well for the Role logs it has rotation for logs after a given period of time/size. So the mm-dd-yy after logs makes it convenient and hard coded.
... View more
07-20-2021
01:45 AM
@Narendra_ No, For production purposes you have to buy subscription given that Cloudera software can’t be setup without using Ambari and Cloudera Manager and you can’t effectively monitor the cluster. You can install Hadoop Open Source version (Vanilla) but you are on own and will not get any Cloudera Support on that.
... View more
07-13-2021
06:11 AM
@JatinMalik You can find an answer to your question here: Re: How to download Ambari-repo
... View more
07-12-2021
09:13 PM
@sur I believe you have to Set below properties before executing create table statement. SET hive.txn.manager=org.apache.hadoop.hive.ql.lockmgr.DbTxnManager; SET hive.support.concurrency=true; This seems a very known behaviour and I did a simple Googling and found the solutions on several places. Below are the references. https://stackoverflow.com/questions/42669171/semanticexception-error-10265-while-running-simple-hive-select-query-on-a-tran https://dbmstutorials.com/hive/hive-errors.html https://knowledge.informatica.com/s/article/526538?language=en_USv Hope this helps.
... View more
07-12-2021
07:14 AM
2 Kudos
@flowerbirds For CM server DB you can try something like below: In db.properties: com.cloudera.cmf.db.type = mysql
com.cloudera.cmf.orm.hibernate.connection.url=jdbc:mysql://<db_host>/scm?useSSL=true
com.cloudera.cmf.orm.hibernate.connection.username=scm
com.cloudera.cmf.orm.hibernate.connection.password=cloudera In /etc/default/cloudera-scm-server add the following to export CMF_JAVA_OPTS: -Djavax.net.ssl.trustStore=/opt/cloudera/security/jks/truststore.jks Restart the Cloudera Manager server. NOTE: Just remember in some case we set ssl=true&sslmode=require so if the normal method means com.cloudera.cmf.orm.hibernate.connection.url=jdbc:mysql://<db_host>/scm?useSSL=true failed please try the `ssl=true&sslmode=require as well and see.
... View more