Member since
07-09-2019
361
Posts
97
Kudos Received
56
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
826 | 08-26-2024 08:17 AM | |
1293 | 08-20-2024 08:17 PM | |
500 | 07-08-2024 04:45 AM | |
614 | 07-01-2024 05:27 AM | |
524 | 06-05-2024 06:25 AM |
11-06-2019
06:20 AM
1 Kudo
@wdailey Use "ldapRealm=org.apache.zeppelin.realm.LdapRealm" Below is the template for your reference ldapRealm=org.apache.zeppelin.realm.LdapRealm
ldapRealm.contextFactory.systemUsername =cn=manager,dc=charan,dc=com
ldapRealm.contextFactory.systemPassword =admin
ldapRealm.contextFactory.authenticationMechanism=simple
ldapRealm.contextFactory.url=ldap://test1:389
ldapRealm.authorizationEnabled=true
#ldapRealm.pagingSize = 20000
ldapRealm.searchBase=
ldapRealm.userSearchBase=
ldapRealm.groupSearchBase=
ldapRealm.userObjectClass=
ldapRealm.userSearchAttributeName = uid
ldapRealm.userSearchScope = subtree
ldapRealm.groupSearchScope = subtree
ldapRealm.userSearchFilter=
ldapRealm.memberAttribute = member
ldapRealm.memberAttributeValueTemplate=(name={0})
... View more
10-24-2019
03:41 AM
1 Kudo
@IrenaKon Refer below link https://docs.cloudera.com/HDPDocuments/HDP2/HDP-2.6.5/index.html
... View more
10-22-2019
08:16 AM
1 Kudo
@Peruvian81 You need to update ranger, You can follow the below steps to reset the password in postgres: 1.Login into postgres 2. postgres=# \connect ranger 3. ranger=# update x_portal_user set password = 'ceb4f32325eda6142bd65215f4c0f371' where login_id = 'admin'; Above would reset the password to 'admin'. 4. Login to Ranger UI using the above password 5. Go to User Profile and change the password 6. Open Ambari UI Ranger Configs 7. Update 'admin_password' in Advanced ranger-env with the newly set password
... View more
10-22-2019
07:17 AM
@Peruvian81 The following method could be used to work this around. 1. Login to the Ranger repository database 2.Run the following DML command to update the Ranger admin's password to 'admin'
update x_portal_user set password = 'ceb4f32325eda6142bd65215f4c0f371' where login_id = 'admin'; The above would reset the password to 'admin'. 3. Login to Ranger UI using the above password 4. Go to User Profile and change the password 5. Open Ambari UI Ranger Configs 6. Update 'admin_password' in Advanced ranger-env with the newly set password
... View more
09-04-2019
10:45 AM
2 Kudos
To encrypt LDAP bind password in zeppelin Shiro configuration follow below steps: 1. Removed system password line from the config (this line contained the password for the system user that is doing the LDAP lookups) 2. Added the following line in shiro.ini: ldapRealm.hadoopSecurityCredentialPath=jceks://file/home/zeppelin/conf/zeppelin.jceks 3. Run the following command as Zeppelin user on Zeppelin host: # hadoop credential create ldapRealm.systemPassword -provider jceks://file/home/zeppelin/conf/zeppelin.jceks
#Entered password <test> Where <test> is my password 4. Confirmed that file has 700 attributes 5. Restart Zeppelin
... View more
Labels:
09-04-2019
10:28 AM
1 Kudo
Jdbc interpreter is will take default queue to run a job.
To run the job in specific queue add the queue name in hive.url property in JDBC interpreter settings as shown below
hive.url=jdbc:hive2://<zookeeper quorum>/;serviceDiscoveryMode=zooKeeper;zooKeeperNamespace=hiveserver2?tez.queue.name=<Queue Name>
EXAMPLE:
hive.url= jdbc:hive2://c186-node2.-labs.com:2181,c186-node3.-labs.com:2181,c186-node4.-labs.com:2181/;serviceDiscoveryMode=zooKeeper;zooKeeperNamespace=hiveserver2?tez.queue.name=sai
Where sai is my queue name.
To check and confirm execute below query in zeppelin using JDBC interpreter and check-in Yarn Resource manager UI
%jdbc(hive)
show databases;
use <database name>;
show tables;
select count (*) from <table name>;
... View more
Labels:
04-16-2019
12:12 PM
1 Kudo
@Manish Roy you need to enable spnego authentication to access webUI after enabling Kerberos ,you can refer to the following article https://community.hortonworks.com/articles/28537/user-authentication-from-windows-workstation-to-hd.html
... View more
01-11-2019
01:04 AM
1 Kudo
@Divya Thaore Are you see any errors in Browser Inspect element , Also check ambari-server logs
... View more
01-10-2019
03:15 PM
1 Kudo
@Divya Thaore 502 Bad Gateway error is usually indicating a networking error, Try restart of the browser or try accessing from Incognito mode
... View more