Member since
07-11-2016
35
Posts
10
Kudos Received
6
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3182 | 10-19-2018 09:22 AM | |
5429 | 10-07-2016 02:57 AM | |
1682 | 10-06-2016 07:34 PM | |
7138 | 10-01-2016 02:44 PM | |
2919 | 10-01-2016 12:20 PM |
10-19-2018
09:22 AM
Hello Nukala, YARN (MapReduce 2 Included) is the recommended for usage. MapReduce is included in YARN for backward compatibility. The only configuration to access MapReduce is to change the "Alternatives Priority" property under YARN's configuration from 92 to 91. To change the Alternatives Priority property, do the following: 1. Go to the MapReduce or YARN service. 2. Click the Configuration tab. 3. Select Scope > Gateway Default Group. 4. Select Category > All. 5. Type Alternatives in Search box. 6. In the Alternatives Priority property, set the priority value. 7. Click Save Changes to commit the changes. 8. Redeploy the client configuration. The link to the document covering changing of priorities is located here: Configuring Alternatives Priority for Services Dependent on MapReduce
... View more
10-07-2016
02:57 AM
The error states: "Either your MetaData is incorrect, or you need to enable "datanucleus.autoCreateTables"" You need to do one of two things: 1. Uninstall and reinstall Hive. or 2. On the Hive MetaStore server, add the following to the "/etc/hive/conf.cloudera.hive/hive-site.xml" file: <property>
<name>datanucleus.autoCreateTables</name>
<value>True</value>
</property> Restart the Hive service.
... View more
10-06-2016
07:34 PM
1 Kudo
Hello, The AD certificate goes in the JVM keystore on CM: 1. On the domain controller, export the certificate in the "Base-64 encoded X.509 (.CER) format. 2. Copy the file to the Cloudera Manager host using an SCP/SSH tool such as WinSCP. 3. Import the certificate into your JVM keystore: keytool -import -alias <alias-for-cert> -file <path-to-cert> -keystore <path-to-keystore> -storepass <keystore password> Note: The truststore is usually located at: $JAVA_HOME/jre/lib/security/cacerts.
... View more
10-06-2016
06:11 PM
Hello, cat db.properties file and note the database name and username: cat /etc/cloudera-scm-server/db.properties You psql command looks a bit odd. Use the information from the db.properites file to run the following command: psql -d <database-name> -U <username> -h localhost -p 7432 If you still get the same error, then you probably missed a step and should perform a reinstallation. If you still have issues after a reinstallation, I can give step-by-step instructions for an AWS install.
... View more
10-06-2016
03:06 PM
Hello, Can you tell me what OS (and its version) you are using in your attempt to deploy a CM cluster in AWS?
... View more
10-03-2016
09:12 AM
Hello, I have a couple of questions: 1. Have you checked the value of your datanode directory in Cloudera Manager (CM -> HDFS -> Configuration-> DataNode Data Directory)? It should state /dfs/dn. 2. Run the following command: sudo chown -R hdfs:hdfs /dfs/dn 3. If that does not fix the issue, delete /dfs/dn, and restart HDFS.
... View more
10-01-2016
07:11 PM
Hello, The version of Java you are attempting to install is unsupported in CM 5.8.x. http://www.cloudera.com/documentation/enterprise/release-notes/topics/rn_consolidated_pcm.html#pcm_jdk
... View more
10-01-2016
02:44 PM
4 Kudos
Hello, The hash and salt for CM versions 5.0.1 and above are the following: Password Hash: 9f7e3270b1aaa4931d38845a0334e66b2dd93f916439006fac4e5e2535a444b3 Password Salt: -5357030608435271136
... View more
10-01-2016
12:20 PM
Hello, Perform the following: 1. SSH to your instance of Cloudera Manager. 2. After the proper modifications, enter the following command: curl -X PUT -H "Content-Type:application/json" -u admin:admin -d '{ "items": [ { "name": "hbase_regionserver_msginterval", "value": "25" } ] }' 'http://localhost:7180/api/v10/clusters/Cluster%201/services/HBASE-1/roleConfigGroups/HBASE-1-REGIONSERVER-BASE/config' Proper modifications: - If your credentials are not "admin:admin," then replace "admin:admin" with the credentials you are using. - If your cluster name is not "Cluster 1," then change "Cluster%201" to the name of your cluster. If you don't know the name of your cluster, issue the following command: curl -u admin:admin 'http://localhost:7180/api/v10/clusters' - If your HBASE service name is not "HBASE-1," then change it to the name you are using. If you do not know the name of your HBASE service, issue the following command: curl -u admin:admin 'http://localhost:7180/api/v10/clusters/Cluster%201/services' | grep displayName - If your RoleConfigGroupName is not "HBASE-1-REGIONSERVER-BASE," then change it to the name you are using. If you do not know your RoleConfigGroupName, then enter the following command: curl -u admin:admin 'http://localhost:7180/api/v10/clusters/Cluster%201/services/HBASE-1/roleConfigGroups' | grep name 3. Go to the home page of Cloudera Manager. On the page, you should see a stale configuration icon next to the HBASE service. Click the icon to refresh the configuration.
... View more
09-07-2016
08:35 AM
Check the status of your underlying database service. Is it running? If it is running, try to restart the service.
... View more