Ignore:
Timestamp:
2016-10-30T15:41:11+13:00 (7 years ago)
Author:
davidb
Message:

Inital cut at README notes, and supporting links

Location:
other-projects/hathitrust/vagrant-solr-cluster/trunk
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/hathitrust/vagrant-solr-cluster/trunk/README.txt

    r30956 r30991  
     1----
     2Introduction
     3----
    14
    2 For details on how to set up Solr cluster, see:
     5Vargrant provisioning files to spin up a modest Solr cluster/cloud
     6(zookeeper + 3 solr nodes) for experiments in ingesting HTRC Extracted
     7Feature JSON files, which in turn has been processed by a Hadoop cluster.
    38
    4   https://chrxr.com/testing-solrcloud-vagrant/
    59
     10*Assumptions*
     11
     12  * You have VirtualBox and Vagrant installed
     13    (at time of writing VirtualBox v5.0.28, Vagrant 1.8.6)
     14
     15
     16*Useful*
     17
     18  * Installing the Vagrant VirutalBox Guest Additions plugin to stop warnings
     19    about potentially incompatible versions:
     20
     21      vagrant plugin install vagrant-vbguest
     22
     23
     24----
     25Setup Procedure
     26----
     27
     281. Spin up cloud:
     29
     30     vagrant up
     31
     32If this is the first time run, then this can take a while to run.
     33
     34
     352. Log into 'zookeeper' and change to the 'htrc' user:
     36
     37     vagrant ssh zookeeper
     38     sudo su - htrc
     39
     403. Use the 'start-solr-all.sh' script on 'zookeeper' to launch Solr daemons
     41   processes on each solr node in the cluster/cloud.
     42
     43     solr-start-all.sh
     44
     45   This runs a (password authenticated) ssh command on each node to start
     46   its solr instance.
     47
     484. If the first time the solr cloud has been spun up then create a solr
     49   collection for the htrc extracted features to be ingested into (htrc-pd-ef)
     50
     51     ssh solr1 init-solr-collection.sh
     52
     53   It doesn't matter which solr node is used to create the collection 'solr1'
     54   chosen for convenience.
     55
     56 
     57
Note: See TracChangeset for help on using the changeset viewer.