source: gs3-extensions/fedora/trunk/src/fedoragsearch-files/fgsconfig-basic.properties.in

Last change on this file was 26434, checked in by ak19, 11 years ago

While getting GS3-with-Fedora collections to work on Puka discovered more issues. 1. Several additional files needed to become template files with placeholder values for the GS3 tomcat server and port, fedora password and index write lock timeout value. Other files needed further modifications (particularly fedora.fcfg.in and gsearch's fgsconfig-basic.properties) to make sure server and port values weren't fixed to localhost and 8383 defaults. 2. The build.xml had to be updated to make changes to these new and modified files during the installation process. 3. There's now a new target in build.xml: uninstall-fedora. 4. README file update with all this information, as well as corrections and clarifications.

File size: 3.1 KB
Line 
1# file.name=fgsconfig-basic.properties
2
3# configDisplayName is displayed on the admin pages, so you know, which set of config files is in action.
4# configDisplayName is also used as directory name of the config within the FgsConfigTemplate directory.
5configDisplayName=configDemoOnLucene
6#configDisplayName=configDemoOnSolr
7#configDisplayName=configDemoOnZebra
8#configDisplayName=configProductionOnLucene
9#configDisplayName=configProductionOnSolr
10#configDisplayName=configProductionOnZebra
11#configDisplayName=myConfigExperimentName1
12
13# gsearchBase is used for SOAP deployment.
14
15#gsearchBase=http://localhost:8080
16gsearchBase=http://@tomcatserver@:@tomcatport@
17
18# gsearchAppName is used for SOAP deployment.
19gsearchAppName=fedoragsearch
20
21# gsearchUser is used for SOAP deployment.
22#gsearchUser=fgsAdmin
23gsearchUser=fedoraAdmin
24
25# gsearchPass is used for SOAP deployment.
26#gsearchPass=fgsAdminPassword
27gsearchPass=@fedorapassw@
28
29#local.FEDORA_HOME=/Users/gertschmeltzpedersen/f36
30local.FEDORA_HOME=@GSDL3SRCHOME@/ext/fedora3
31
32# finalConfigPath must be in the classpath of the web server, must be an absolute path.
33#finalConfigPath=${local.FEDORA_HOME}/tomcat/webapps/fedoragsearch/WEB-INF/classes
34finalConfigPath=@GSDL3SRCHOME@/packages/tomcat/webapps/fedoragsearch/WEB-INF/classes
35# finalConfigPath=./test
36
37# At startup, GSearch will find the file log4j.xml in tomcat classpath.
38# logFilePath is where to find the log file.
39logFilePath=${local.FEDORA_HOME}/server/logs
40
41# logLevel can be DEBUG, INFO, WARN, ERROR, FATAL.
42logLevel=DEBUG
43
44# namesOfRepositories separated by space.
45namesOfRepositories=FgsRepos
46
47# namesOfIndexes separated by space.
48namesOfIndexes=FgsIndex
49
50# Assuming there is one repository:
51
52 # fedoraBase is base url of the repository.
53 fedoraBase=http://@tomcatserver@:@tomcatport@
54
55 # fedoraAppName is Fedora app name of this repository.
56 fedoraAppName=fedora
57
58 # fedoraUser is the user name to access this repository.
59 fedoraUser=fedoraAdmin
60
61 # fedoraPass is the password to access this repository.
62# fedoraPass=fedoraAdminPassword
63 fedoraPass=@fedorapassw@
64
65 # fedoraVersion is the Fedora version of this repository.
66 fedoraVersion=3.6
67
68 #objectStoreBase must be the location of the objects of this repository.
69 objectStoreBase=${local.FEDORA_HOME}/data/objectStore
70
71#Assuming there is one index:
72
73 # indexEngine is Lucene, Solr, or Zebra.
74 indexEngine=Lucene
75 #indexEngine=Solr
76 #indexEngine=Zebra
77
78 # FgsIndex: indexBase is the server base url, in case of Solr or Zebra.
79 #indexBase=http://localhost:8983/solr
80 #indexBase=http://localhost:9999/
81
82 # FgsIndex: indexDir is the path to the index.
83 indexDir=${local.FEDORA_HOME}/gsearch/FgsIndex
84
85 # FgsIndex: indexingDocXslt is the name of the indexing stylesheet.
86 #indexingDocXslt=foxmlToLucene
87 #indexingDocXslt=foxmlToLuceneDemo
88 indexingDocXslt=foxmlToLuceneGenerated
89 #indexingDocXslt=foxmlToLuceneZZZ
90 #indexingDocXslt=foxmlToSolr
91 #indexingDocXslt=foxmlToSolrDemo
92 #indexingDocXslt=foxmlToSolrGenerated
93 #indexingDocXslt=foxmlToSolrZZZ
94 #indexingDocXslt=foxmlToZebra
95 #indexingDocXslt=foxmlToZebraDemo
96 #indexingDocXslt=foxmlToZebraGenerated
97 #indexingDocXslt=foxmlToZebraZZZ
Note: See TracBrowser for help on using the repository browser.