You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by sh...@apache.org on 2015/12/22 11:34:48 UTC

incubator-atlas git commit: ATLAS-360 Secure cluster Atlas-solr integration instructions (tbeerbower via shwethags)

Repository: incubator-atlas
Updated Branches:
  refs/heads/master 6a9078e1f -> 611ac3028


ATLAS-360 Secure cluster Atlas-solr integration instructions (tbeerbower via shwethags)


Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/611ac302
Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/611ac302
Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/611ac302

Branch: refs/heads/master
Commit: 611ac3028ea5ba3c44434dec9cdcf193912cfa07
Parents: 6a9078e
Author: Shwetha GS <ss...@hortonworks.com>
Authored: Tue Dec 22 16:04:40 2015 +0530
Committer: Shwetha GS <ss...@hortonworks.com>
Committed: Tue Dec 22 16:04:40 2015 +0530

----------------------------------------------------------------------
 docs/src/site/twiki/InstallationSteps.twiki |  62 ++++++++------
 docs/src/site/twiki/security.twiki          | 103 +++++++++++++++++++++++
 release-log.txt                             |   1 +
 3 files changed, 141 insertions(+), 25 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/611ac302/docs/src/site/twiki/InstallationSteps.twiki
----------------------------------------------------------------------
diff --git a/docs/src/site/twiki/InstallationSteps.twiki b/docs/src/site/twiki/InstallationSteps.twiki
index 64aad85..11a38e8 100644
--- a/docs/src/site/twiki/InstallationSteps.twiki
+++ b/docs/src/site/twiki/InstallationSteps.twiki
@@ -61,7 +61,8 @@ Tar is structured as follows
 *Installing Atlas*
 <verbatim>
 tar -xzvf apache-atlas-${project.version}-bin.tar.gz
-* cd atlas-${project.version}
+
+cd atlas-${project.version}
 </verbatim>
 
 *Configuring Atlas*
@@ -111,50 +112,54 @@ executed. The following environment variables are available to set.
 
 
 *NOTE for Mac OS users*
-<verbatim>
 If you are using a Mac OS, you will need to configure the METADATA_SERVER_OPTS (explained above).
 
 In  {package dir}/conf/atlas-env.sh uncomment the following line
+<verbatim>
 #export METADATA_SERVER_OPTS=
+</verbatim>
 
 and change it to look as below
+<verbatim>
 export METADATA_SERVER_OPTS="-Djava.awt.headless=true -Djava.security.krb5.realm= -Djava.security.krb5.kdc="
 </verbatim>
 
-* Hbase as the Storage Backend for the Graph Repository
+*Hbase as the Storage Backend for the Graph Repository*
 
 By default, Atlas uses Titan as the graph repository and is the only graph repository implementation available currently.
-The HBase versions currently supported are 1.1.x. For configuring ATLAS graph persistence on HBase, please go through the "Configuration - Graph persistence engine - HBase" section
+The HBase versions currently supported are 1.1.x. For configuring ATLAS graph persistence on HBase, please see "Graph persistence engine - HBase" in the [[Configuration][Configuration]] section
 for more details.
 
 Pre-requisites for running HBase as a distributed cluster
- * 3 or 5 ZooKeeper nodes
- * Atleast 3 RegionServer nodes. It would be ideal to run the DataNodes on the same hosts as the Region servers for data locality.
+   * 3 or 5 ZooKeeper nodes
+   * Atleast 3 RegionServer nodes. It would be ideal to run the DataNodes on the same hosts as the Region servers for data locality.
 
-* Configuring SOLR as the Indexing Backend for the Graph Repository
+*Configuring SOLR as the Indexing Backend for the Graph Repository*
 
 By default, Atlas uses Titan as the graph repository and is the only graph repository implementation available currently.
 For configuring Titan to work with Solr, please follow the instructions below
-<verbatim>
-* Install solr if not already running. The version of SOLR supported is 5.2.1. Could be installed from http://archive.apache.org/dist/lucene/solr/5.2.1/solr-5.2.1.tgz
 
-* Start solr in cloud mode.
+   * Install solr if not already running. The version of SOLR supported is 5.2.1. Could be installed from http://archive.apache.org/dist/lucene/solr/5.2.1/solr-5.2.1.tgz
+
+   * Start solr in cloud mode.
   SolrCloud mode uses a ZooKeeper Service as a highly available, central location for cluster management.
   For a small cluster, running with an existing ZooKeeper quorum should be fine. For larger clusters, you would want to run separate multiple ZooKeeper quorum with atleast 3 servers.
   Note: Atlas currently supports solr in "cloud" mode only. "http" mode is not supported. For more information, refer solr documentation - https://cwiki.apache.org/confluence/display/solr/SolrCloud
 
-* For e.g., to bring up a Solr node listening on port 8983 on a machine, you can use the command:
+   * For e.g., to bring up a Solr node listening on port 8983 on a machine, you can use the command:
       <verbatim>
       $SOLR_HOME/bin/solr start -c -z <zookeeper_host:port> -p 8983
       </verbatim>
 
-* Run the following commands from SOLR_HOME directory to create collections in Solr corresponding to the indexes that Atlas uses. In the case that the ATLAS and SOLR instance are on 2 different hosts,
+   * Run the following commands from SOLR_HOME directory to create collections in Solr corresponding to the indexes that Atlas uses. In the case that the ATLAS and SOLR instance are on 2 different hosts,
   first copy the required configuration files from ATLAS_HOME/conf/solr on the ATLAS instance host to the Solr instance host. SOLR_CONF in the below mentioned commands refer to the directory where the solr configuration files
   have been copied to on Solr host:
 
+<verbatim>
   bin/solr create -c vertex_index -d SOLR_CONF -shards #numShards -replicationFactor #replicationFactor
   bin/solr create -c edge_index -d SOLR_CONF -shards #numShards -replicationFactor #replicationFactor
   bin/solr create -c fulltext_index -d SOLR_CONF -shards #numShards -replicationFactor #replicationFactor
+</verbatim>
 
   Note: If numShards and replicationFactor are not specified, they default to 1 which suffices if you are trying out solr with ATLAS on a single node instance.
   Otherwise specify numShards according to the number of hosts that are in the Solr cluster and the maxShardsPerNode configuration.
@@ -162,14 +167,15 @@ For configuring Titan to work with Solr, please follow the instructions below
 
   The number of replicas (replicationFactor) can be set according to the redundancy required.
 
-* Change ATLAS configuration to point to the Solr instance setup. Please make sure the following configurations are set to the below values in ATLAS_HOME//conf/application.properties
+   * Change ATLAS configuration to point to the Solr instance setup. Please make sure the following configurations are set to the below values in ATLAS_HOME//conf/application.properties
+<verbatim>
  atlas.graph.index.search.backend=solr5
  atlas.graph.index.search.solr.mode=cloud
  atlas.graph.index.search.solr.zookeeper-url=<the ZK quorum setup for solr as comma separated value> eg: 10.1.6.4:2181,10.1.6.5:2181
-
-* Restart Atlas
 </verbatim>
 
+   * Restart Atlas
+
 For more information on Titan solr configuration , please refer http://s3.thinkaurelius.com/docs/titan/0.5.4/solr.htm
 
 Pre-requisites for running Solr in cloud mode
@@ -185,38 +191,44 @@ bin/atlas_start.py [-port <port>]
 </verbatim>
 
 By default,
-* To change the port, use -port option.
-* atlas server starts with conf from {package dir}/conf. To override this (to use the same conf
-with multiple atlas upgrades), set environment variable METADATA_CONF to the path of conf dir
+   * To change the port, use -port option.
+   * atlas server starts with conf from {package dir}/conf. To override this (to use the same conf with multiple atlas upgrades), set environment variable METADATA_CONF to the path of conf dir
 
 *Using Atlas*
+   * Quick start model - sample model and data
 <verbatim>
-* Quick start model - sample model and data
   bin/quick_start.py [<atlas endpoint>]
+</verbatim>
 
-* Verify if the server is up and running
+   * Verify if the server is up and running
+<verbatim>
   curl -v http://localhost:21000/api/atlas/admin/version
   {"Version":"v0.1"}
+</verbatim>
 
-* List the types in the repository
+   * List the types in the repository
+<verbatim>
   curl -v http://localhost:21000/api/atlas/types
   {"results":["Process","Infrastructure","DataSet"],"count":3,"requestId":"1867493731@qtp-262860041-0 - 82d43a27-7c34-4573-85d1-a01525705091"}
+</verbatim>
 
-* List the instances for a given type
+   * List the instances for a given type
+<verbatim>
   curl -v http://localhost:21000/api/atlas/entities?type=hive_table
   {"requestId":"788558007@qtp-44808654-5","list":["cb9b5513-c672-42cb-8477-b8f3e537a162","ec985719-a794-4c98-b98f-0509bd23aac0","48998f81-f1d3-45a2-989a-223af5c1ed6e","a54b386e-c759-4651-8779-a099294244c4"]}
 
   curl -v http://localhost:21000/api/atlas/entities/list/hive_db
+</verbatim>
 
-* Search for entities (instances) in the repository
+   * Search for entities (instances) in the repository
+<verbatim>
   curl -v http://localhost:21000/api/atlas/discovery/search/dsl?query="from hive_table"
 </verbatim>
 
 
 *Dashboard*
 
-Once atlas is started, you can view the status of atlas entities using the Web-based
-dashboard. \You can open your browser at the corresponding port to use the web UI.
+Once atlas is started, you can view the status of atlas entities using the Web-based dashboard. You can open your browser at the corresponding port to use the web UI.
 
 
 *Stopping Atlas Server*

http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/611ac302/docs/src/site/twiki/security.twiki
----------------------------------------------------------------------
diff --git a/docs/src/site/twiki/security.twiki b/docs/src/site/twiki/security.twiki
index 79c81a5..b3e496f 100755
--- a/docs/src/site/twiki/security.twiki
+++ b/docs/src/site/twiki/security.twiki
@@ -100,8 +100,111 @@ The property required for authenticating to the server (if authentication is ena
 
    * <code>atlas.http.authentication.type</code> (simple|kerberos) [default: simple] - the authentication type
 
+---+++ SOLR Kerberos configuration
 If the authentication type specified is 'kerberos', then the kerberos ticket cache will be accessed for authenticating to the server (Therefore the client is required to authenticate to the KDC prior to communication with the server using 'kinit' or a similar mechanism).
 
+See [[https://cwiki.apache.org/confluence/display/RANGER/How+to+configure+Solr+Cloud+with+Kerberos+for+Ranger+0.5][the Apache SOLR Kerberos configuration]].
 
+   * Add principal and generate the keytab file for solr.  Create a keytab per host for each host where Solr is going to run and use the principal name with the host (e.g. addprinc -randkey solr/${HOST1}@EXAMPLE.COM. Replace ${HOST1} with the actual host names).
 
+<verbatim>
+   kadmin.local
+   kadmin.local:  addprinc -randkey solr/<hostname>@EXAMPLE.COM
+   kadmin.local:  xst -k solr.keytab solr/<hostname>@EXAMPLE.COM
+   kadmin.local:  quit
+</verbatim>
+
+
+   * Add principal and generate the keytab file for authenticating HTTP request. (Note that if Ambari is used to Kerberize the cluster, the keytab /etc/security/keytabs/spnego.service.keytab can be used)
+
+<verbatim>
+   kadmin.local
+   kadmin.local:  addprinc -randkey HTTP/<hostname>@EXAMPLE.COM
+   kadmin.local:  xst -k HTTP.keytab HTTP/<hostname>@EXAMPLE.COM
+   kadmin.local:  quit
+</verbatim>
+
+   * Copy the keytab file to all the hosts running Solr.
+
+<verbatim>
+   cp solr.keytab /etc/security/keytabs/
+   chmod 400 /etc/security/keytabs/solr.keytab
+
+   cp HTTP.keytab /etc/security/keytabs/
+   chmod 400 /etc/security/keytabs/HTTP.keytab
+</verbatim>
+
+
+   * Create path in Zookeeper for storing the Solr configs and other parameters.
+
+<verbatim>
+   $SOLR_INSTALL_HOME/server/scripts/cloud-scripts/zkcli.sh -zkhost $ZK_HOST:2181 -cmd makepath solr
+</verbatim>
+
+
+   * Upload the configuration to Zookeeper.
+
+<verbatim>
+   $SOLR_INSTALL_HOME/server/scripts/cloud-scripts/zkcli.sh -cmd upconfig  -zkhost $ZK_HOST:2181/solr -confname basic_configs -confdir $SOLR_INSTALL_HOME/server/solr/configsets/basic_configs/conf
+</verbatim>
+
+
+   * Create the JAAS configuration.
+
+<verbatim>
+   vi /etc/solr/conf/solr_jaas.conf
+
+   Client {
+     com.sun.security.auth.module.Krb5LoginModule required
+     useKeyTab=true
+     keyTab="/etc/security/keytabs/solr.keytab"
+     storeKey=true
+     useTicketCache=true
+     debug=true
+     principal="solr/<hostname>@EXAMPLE.COM";
+   };
+</verbatim>
+
+
+   * Copy /etc/solr/conf/solr_jaas.conf to all hosts running Solr.
+
+   * Edit solr.in.sh in $SOLR_INSTALL_HOME/bin/
+
+<verbatim>
+   vi $SOLR_INSTALL_HOME/bin/solr.in.sh
+
+   SOLR_JAAS_FILE=/etc/solr/conf/solr_jaas.conf
+   SOLR_HOST=`hostname -f`
+   ZK_HOST="$ZK_HOST1:2181,$ZK_HOST2:2181,$ZK_HOST3:2181/solr"
+   KERBEROS_REALM="EXAMPLE.COM"
+   SOLR_KEYTAB=/etc/solr/conf/solr.keytab
+   SOLR_KERB_PRINCIPAL=HTTP@${KERBEROS_REALM}
+   SOLR_KERB_KEYTAB=/etc/solr/conf/HTTP.keytab
+   SOLR_AUTHENTICATION_CLIENT_CONFIGURER="org.apache.solr.client.solrj.impl.Krb5HttpClientConfigurer"
+   SOLR_AUTHENTICATION_OPTS=" -DauthenticationPlugin=org.apache.solr.security.KerberosPlugin -Djava.security.auth.login.config=${SOLR_JAAS_FILE} -Dsolr.kerberos.principal=${SOLR_KERB_PRINCIPAL} -Dsolr.kerberos.keytab=${SOLR_KERB_KEYTAB} -Dsolr.kerberos.cookie.domain=${SOLR_HOST} -Dhost=${SOLR_HOST} -Dsolr.kerberos.name.rules=DEFAULT"
+</verbatim>
+
+   * Copy solr.in.sh to all hosts running Solr.
+
+   * Set up Solr to use the Kerberos plugin by uploading the security.json.
+
+<verbatim>
+   $SOLR_INSTALL_HOME/server/scripts/cloud-scripts/zkcli.sh -zkhost <zk host>:2181 -cmd put /security.json '{"authentication":{"class": "org.apache.solr.security.KerberosPlugin"}}'
+</verbatim>
+
+   * Start Solr.
+
+<verbatim>
+   $SOLR_INSTALL_HOME/bin/solr start -cloud -z $ZK_HOST1:2181,$ZK_HOST2:2181,$ZK_HOST3:2181 -noprompt
+</verbatim>
+
+   * Test Solr
+
+<verbatim>
+   kinit -k -t /etc/security/keytabs/HTTP.keytab HTTP/<host>@EXAMPLE.COM
+   curl --negotiate -u : "http://<host>:8983/solr/"
+</verbatim>
+
+
+   * Create collections in Solr corresponding to the indexes that Atlas uses and change the Atlas configuration to point to the Solr instance setup as described in the [[InstallationSteps][Install Steps]].
 

http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/611ac302/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index be666d2..6be3fff 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -5,6 +5,7 @@ Apache Atlas Release Notes
 INCOMPATIBLE CHANGES:
 
 ALL CHANGES:
+ATLAS-360 Secure cluster Atlas-solr integration instructions (tbeerbower via shwethags)
 ATLAS-368 Change trunk version to 0.7-incubating-SNAPSHOT (sumasai via shwethags)
 ATLAS-383 tests for classtype.convert() with id (sumasai via shwethags)
 ATLAS-263 Searching for a multi word trait always returns empty result (girishrp via shwethags)