Member since
01-15-2019
126
Posts
17
Kudos Received
25
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
49 | 06-28-2022 08:16 AM | |
140 | 01-20-2022 03:37 AM | |
410 | 09-21-2020 03:44 AM | |
1338 | 08-12-2020 08:24 AM | |
1361 | 08-11-2020 06:53 AM |
05-19-2020
07:11 AM
@vincentD The CM agents should be able to send hearbeats to the CM sever successfully before the parcel installation. Did you also happen to setup TLS here? Please check the CM server and agent logs on the nodes for issues reported. Click on the hostnames what is the error reported on Cloudera Manager for the hosts?
... View more
05-09-2020
09:27 AM
@michaelli You can use the CM API to fetch the service configurations by executing below command from terminal # curl -u admin_uname:admin_pass "http://cm_server_host:7180/api/ v19 /cm/deployment" The password should be present under the name : hive_metastore_database_password Refer: https://docs.cloudera.com/documentation/enterprise/5-14-x/topics/cm_intro_api.html#concept_dnn_cr5_mr__section_ztf_lyt_xr Hope this helps, Paras Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
03-15-2020
10:04 PM
1 Kudo
@TCloud You can follow the below steps: Login to Cloudera Manager -> Zookeeper- -> Configuration - Java Configuration Options for Zookeeper Server Add below in the text box: -Dzookeeper.security.auth_to_local=RULE:<rule format> Hope this helps, Paras Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
03-12-2020
05:12 AM
@prakashpunj The hue-server package includes service scripts to start and stop the Hue Server. To start the Hue Server: $ sudo service hue start To restart the Hue Server: $ sudo service hue restart To stop the Hue Server: $ sudo service hue stop
... View more
03-11-2020
11:16 PM
@Mohan50 This should be the oozie sharelib path on HDFS. Default path: /user/oozie/share/lib/ in HDFS You can check the same under oozie configuration on cloudera manager.
... View more
03-11-2020
04:54 AM
@Mohan50 Have you configured oozie libpath in the workflow? If not, please add the ojdbc7.jar under /user/oozie/share/lib/ in HDFS and retry execution. Hope this helps, Paras Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
03-11-2020
12:52 AM
@AndyTech Please refer link [1] for installation guide of required hive JDBC connector. It contains steps for driver configuration on windows. [1] https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/hive_jdbc_odbc_driver_install.html#hive_installing_jdbc_odbc_drivers You can refer connector documentation from the below link www.cloudera.com/downloads/connectors/hive/jdbc/2-5-20.html.
... View more
03-02-2020
09:44 PM
1 Kudo
@Siddo You can migrate the Hue DB. Refer doc to migrate Hue DB https://docs.cloudera.com/documentation/enterprise/6/latest/topics/hue_dbs_migrate.html#hue_dbs_migrate Manually migrating queries from tables would be complex and not tested completely. It has the below requirement: The Hue database has a "desktop_document2" table that stores all the saved queries and Oozie workflows and all sorts of users' saved stuff (query history included). This table has an OWNER_ID column that is a foreign key to the auth_user table's ID column. The process of getting the new ID of the "auth_user" table, and associating them with the correct "owner_id" in the "desktop_document2" table, can be very involved.
... View more
02-28-2020
08:40 PM
@Siddo Do you mean saved queries are not available in hue 4 but present in hue 3.9 version? Have you recently upgraded the cluster? What is the CDH version here? Go to "http[s]://<huehost>:<hueport>/home" or click the house icon in the upper left corner in hue. After this recheck if the saved queries are visible.
... View more
02-07-2020
05:13 AM
@sow What is the mysql DB version being used here? Does this only support TLSV1 ? You should consider upgrading the DB to the latest supported TLS versions. TLSV1 is included in the disabled algorithms in the latest java versions by default . The option of disabling the algorithms from java.security hence works in the particular host once you update the java.security file. This is the only workaround here but not recommended since TLSv1 is deprecated. Ref: https://dev.mysql.com/doc/refman/5.7/en/encrypted-connection-protocols-ciphers.html
... View more
02-05-2020
06:11 AM
@sow Sqoop does not currently support TLS/SSL to Oracle, MySQL, or other databases. Refer:https://docs.cloudera.com/documentation/enterprise/5-14-x/topics/cm_sg_hadoop_ssl_cm.html
... View more
01-31-2020
12:24 AM
@srinu Sentry permissions can be configured through GRANT and REVOKE statements issued either interactively via Hue or programmatically through the HiveServer2 SQL command line interface, Beeline (documentation available here ). The GRANT ROLE statement can be used to grant roles to groups. Only Sentry admin users can grant roles to a group. Execute below hive query as sentry admin. GRANT ROLE <role name> [, <role name>] TO GROUP <group name> [,GROUP <group name>] Refer link for more details: https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/sg_hive_sql.html#concept_c2q_4qx_p4 Hope this helps, Paras Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
01-31-2020
12:17 AM
@had00p101 To allow scheduler access, please uncheck the permission disable_editor_access if this is enabled for the hue user group. Only oozie.access, oozie.dashboard_jobs_access is required to be set under the group permissions set for user in Hue. Hope this helps, Paras Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
01-30-2020
11:43 PM
@chhaya_vishwaka The "ERR_SSL_VERSION_OR_CIPHER_MISMATCH" error can happen if a JKS contains multiple certs with similar names. Run below command for the keystore # keytool -list -keystore server.jks The correct cert with be the one with "Entry type: PrivateKeyEntry". If you find a certificate with "Entry type: trustedCertEntry" and a similar alias name then that is the problem cert. Remove this certificate from keystore using below steps: i) Make a backup of the existing JKS. ii) Stop CM iii) Remove the cert identified above. keytool -delete -alas <cert_alias> -keystore server.jks iv) Start CM and test again.
... View more
01-13-2020
03:35 AM
1 Kudo
@srinivassrinu01 Is the curl command output from your cloudera-scm-server host returning proper response? # curl http://archive.cloudera.com/cm5/redhat/7/x86_64/cm/5/repodata/repomd.xml # ping archive.cloudera.com If the commands do not fetch proper results, you should check for firewall restrictions blocking access to the port and other network configurations on the CM server.
... View more
01-13-2020
03:03 AM
@prophess What is the CM and CDH version you are using ? Please share the hue logs and errors you observe.
... View more
01-13-2020
02:50 AM
@Anil Cloudera Navigator Key Trustee Server and KMS both require a valid Cloudera Enterprise license, they’re not distributed through the public Cloudera Manager yum repository. They must be downloaded directly from Cloudera’s website. These should then be made available for installation by copying them to a temporary directory on the Cloudera Manager server. You must create an internal repository to install or upgrade the Cloudera Navigator data encryption components. Refer link: https://docs.cloudera.com/documentation/enterprise/latest/topics/key_trustee_install.html#xd_583c10bfdbd326ba-590cb1d1-149e9ca9886--7b84
... View more
12-26-2019
02:34 AM
Hi @HKG Have you created cloudera-scm user with sudo privileges ? Please create the user if this does not exist. Is this CM installation using installer.bin?
... View more
12-20-2019
04:39 AM
An easier approach would be to change timezone of your service monitor host/CM server. You can follow the same steps to have the same timezone as the Impala daemon nodes. Restart the Cm server for changes to take effect on the CM web UI
... View more
12-20-2019
04:33 AM
@slowrocket There is perhaps a difference in localtime configured in your impala daemon nodes and management service nodes which is causing these issues. You can change the system localtime on the impala daemons hosts using below steps: 1) delete the /etc/localtime file. 2) Link the time CET the /usr/share/zoneinfo folder to /etc/localtime with this command: #ln -s /usr/share/zoneinfo/ CET /etc/localtime 2.a) If you don't want to link it you can copy and rename it to localtime: #cp /usr/share/zoneinfo/ CET /etc/localtime After you did this on the hosts where the timezone is wrong, please execute the queries and check if there are still discrepancies observed
... View more
11-17-2019
09:55 PM
Log messages show that chrony loses synchronisation frequently. Are you also able to reach server i psap01.ecb.de during the time of the issue? The last received values seem to be higher as compared to the other available server. Please compare the performance with servers configured on other hosts which do not report the issue. Check with your network/OS team on the server availability and to make time synchronization stable on the hosts
... View more
11-17-2019
09:22 PM
Hi @Shriniwas Please refer our installation guide [1] and review the steps performed so far. I would suggest to review the steps under document [2] to ensure the environment is correctly setup before installation. Configure Network Names Disabling the Firewall Setting SELinux mode Enable an NTP Service Install Python 2.7 on Hue Hosts [1] https://docs.cloudera.com/documentation/enterprise/latest/topics/installation.html [2] https://docs.cloudera.com/documentation/enterprise/latest/topics/installation.html#install_cm_cdh
... View more
10-21-2019
12:33 AM
What is the curl output to the namenode web UI? curl -k "<namenode web UI address>"
... View more
10-20-2019
10:07 PM
What is the error? Please share the snapshot Did you restart the cluster services post disabling kerberos? Are you able to fetch curl output to the namenode web UI? curl -k "<namenode web UI address>" Previous output does show established connections from 10.49.70.13. Please check if 50070 is the port for namenode web UI.
... View more
10-17-2019
10:09 PM
Could you please check your code once as the referenced file M1.txt is a local path file whereas the command arguments show iinput hdfs path.
... View more
10-17-2019
09:20 PM
To disable the SPNEGO authentication for the Hadoop services, modify the following properties related to the service Ambari Web > Services > HDFS > Configs > Advanced core-site: hadoop.http.authentication.simple.anonymous.allowed = true hadoop.http.authentication.type = simple It will require the dependent / affected services to be restarted.
... View more
10-17-2019
06:28 AM
Yes, you can follow below steps to disable SPNEGO authentication From the Clusters tab, select the service (HDFS, MapReduce, or YARN) for which you want to disable authentication. Click the Configuration tab. Under the Scope filter, click service_name (Service-Wide). Under the Category filter, click Security to display the security configuration options. In the Enable Kerberos Authentication for HTTP Web-Consoles setting, uncheck the box to disable authentication requirement for the selected service_name (Service-Wide). Click Save Changes to save the change. This will require service restart
... View more
10-17-2019
03:58 AM
For Windows 10, you need to download and install the MIT Kerberos Client: Visit the MIT Kerberos Distribution Page. Download and install (typical installation) the appropriate MIT Kerberos client for Windows - Windows 4.1 64-bit version. The default location of the Kerberos configuration file on Windows machine is "C:\ProgramData\MIT\Kerberos5\krb5.ini" (this is hidden file) Copy the contents from the /etc/krb5.conf file from one of the hosts in the Hadoop cluster (from Linux) into the krb5.ini file on Windows, save the changes and exit. Configure the following environment properties for MIT Kerberos by visiting Control Panel -> System -> Advanced -> Environment Variables on Windows: KRB5_CONFIG: Path of the Kerberos ini file. KRB5CCNAME: Path of the Kerberos credential cache file. Save the changes and reboot the machine. Open MIT Kerberos Ticket Manager and supply the appropriate principal and password to have a valid TGT to authenticate to Kerberos Web Consoles: Configure browser to use SPNEGO to negotiate Kerberos authentication and then try to access the web UI
... View more
10-17-2019
03:40 AM
What is the windows version being used here?
... View more
10-17-2019
02:56 AM
httpFS hostname is the hostname of the web UI you want access to. This command is used to map the domain name being used by cluster nodes to the kerberos REALM they belong to. A specific hostname with domainname can be configured, or all hosts in a domain with a "." before the domain or subdomain. Eg: C:\Windows\system32>ksetup /addhosttorealmmap .example.com CLUSTER.REALM It can be run multiple times to add specific domains/hosts to the mapping to the CLUSTER.REALM.
... View more
- « Previous
- Next »