Member since
01-21-2019
122
Posts
12
Kudos Received
10
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
6175 | 02-12-2019 04:26 AM | |
2202 | 01-24-2019 09:14 AM | |
1756 | 02-20-2018 06:47 AM | |
2180 | 01-04-2018 05:56 AM | |
1884 | 09-09-2017 02:50 PM |
11-20-2017
10:45 PM
4 Kudos
The steps to set up Atlas with Ldaps (ssl) are below. Download the AD CA certificate on Atlas instance
echo -n | openssl s_client -connect ad.xx.xx.com:636 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > /root/ldaps-ca.cert
View the certificate
openssl x509 -noout -text -in /root/ldaps-ca.cert
Import the AD CA certificate to trust-store in Atlas instance.
$JAVA_HOME/bin/keytool -import -alias AD -keystore /home/nixon/ad-truststore -file /root/ldaps-ca.cert
#remember the password used while importing into trust-store Verify the certificate added to trust-store.
$JAVA_HOME/bin/keytool -list -alias AD -keystore /etc/atlas/conf/ad-truststore
Change ownership of trust-store if needed
chown atlas:hadoop /etc/atlas/conf/ad-truststore
Add the following config to Atlas Advanced atlas-env metadata_opts via Ambari, so that ATLAS_OPTS is set within atlas-env.sh -Djavax.net.ssl.trustStore=/etc/atlas/conf/ad-truststore -Djavax.net.ssl.trustStorePassword=<password> Or can be added as env variable in atlas_start.py for atlas java process.
... View more
Labels:
10-31-2017
04:59 PM
@Vishal Gupta, I was able to login with password for admin user in /etc/atlas/conf/users-credentials.properties file. Ensure that you are doing it same host where Atlas server is running, users-credentials.properties file is present on all HDP hosts.
... View more
10-30-2017
01:39 PM
@Vishal Gupta Try adding new user entry to /etc/atlas/conf/users-credentials.properties file and then restart Atlas from Ambari and check the Atlas login HTH
... View more
09-11-2017
06:24 PM
@Srikanth Gorripati, Can you check this implementation, it worked for me on kerberos mode. https://github.com/nixonrodrigues/java-samples/commit/f3a75090ef3196874b051d78fe2dff35d69bd9d9
... View more
09-09-2017
02:50 PM
@sundara Palanki which entities types of entities you are referring to, if hive did you try import-hive.sh script or create table in hive db. check the hive and atlas application logs for error during table creation time.
... View more
07-06-2017
07:14 PM
Are you using HDP? if not which version of Atlas you need to install on Amazon emr ?
... View more
06-23-2017
07:10 AM
Try adding CORS related headers
here and recompile atlas project.
responseWrapper.setHeader("Access-Control-Allow-Origin", "*");
responseWrapper.setHeader("Access-Control-Allow-Methods", "GET, OPTIONS, HEAD, PUT, POST");
This should work.
... View more
06-08-2017
06:39 AM
@Smart Data, Can you please give more details on how are you trying to access and error you are getting? Nixon
... View more
06-04-2017
05:26 PM
@Qinglin Xia, There is jira filed for it, can you followup on this JIRA ? https://issues.apache.org/jira/browse/ATLAS-1805 cc: @Ramesh Mani
... View more
05-30-2017
06:14 PM
@Muhammad Imran Tariq, You are right MySQL will not notify like Hive, check if MySql has any mechanism to invoke the class / method when there is a change in metadata. Do share your findings Nixon
... View more