Ignore:
Timestamp:
2016-10-31T15:10:48+13:00 (7 years ago)
Author:
davidb
Message:

Adjustments after latest fresh 'vagrant up' trial

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

Legend:

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

    r30992 r31009  
    4040
    41413. Start the zookeeper daemon:
    42      zkServer.sh start
     42     zookeeper-start.sh
    4343
    44444. Use the 'start-solr-all.sh' script on 'zookeeper' to launch Solr daemons
     
    5353   collection for the htrc extracted features to be ingested into (htrc-pd-ef)
    5454
    55      ssh solr1 init-solr-collection.sh
     55     ssh solr1 ./solr-init-collection.sh
    5656
    5757   It doesn't matter which solr node is used to create the collection 'solr1'
  • other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/solr/manifests/init.pp

    r30989 r31009  
    5959  command => "tar -zxf /home/${user}/htrc_configs.tar.gz -C ${solr_home}/server/solr/configsets",
    6060  path => $path,
    61   creates => "${solr_home}-6.2.1",
     61  user => $user,
     62  creates => "${solr_home}/server/solr/configsets/htrc_configs",
    6263  require => [ File["/home/${user}/htrc_configs.tar.gz"], Exec["rename_solr"] ]
    6364 }
  • other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/zookeeper/templates/solr-start-all.sh

    r30989 r31009  
    11#!/bin/bash
    22
    3 for node in <%= @solr_1 %> <%= @solr_2 %> <%= @solr_3 %> ; do
    4 #    ssh $node solr-start-node.sh
    5     ssh $node solr start -c -z zookeeper:2181 -h $node:8983'
     3for node in <%= @solr_1 %> <%= @solr_2 %> <%= @solr_3 %> ; do   
     4    echo ""
     5    echo "****"
     6    echo "* Starting Solr daemon on '$node'"
     7    echo "****"
     8    #    ssh $node solr-start-node.sh
     9    ssh $node solr start -c -z zookeeper:2181 -h $node:8983
    610done
    711
Note: See TracChangeset for help on using the changeset viewer.