source: trunk/gsdl3/build.properties@ 10801

Last change on this file since 10801 was 10801, checked in by kjdon, 18 years ago

mysql datadir is now a property and can be set in build.properties. if you are installing on an NFS drive in linux, then it seems to have problems with removing locks after the program has shut down. you need to put the data directory in a local drive

  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 KB
Line 
1#### properties file for Greenstone3 building using ANT. See the README for more
2#### information
3
4## java compilation properties - for javac
5#Should compilation include the debug option?
6compile.debug=true
7#Should compilation include the deprecation option?
8compile.deprecation=true
9#Should compilation include the optimize option?
10compile.optimize=true
11
12## windows c++ compilation
13compile.windows.c++.setup=C:/Program Files/Microsoft Visual Studio/VC98/Bin/VCVARS32.BAT
14
15## Tomcat installation
16#The name of the machine that Tomcat is/will be run on. If you are using a proxy, then you may need to set this to something other than localhost
17tomcat.server=localhost
18# The port number that tomcat is/will be run on
19tomcat.port=8080
20# If tomcat is already running, enter the path to the base directory here
21tomcat.installed.path=
22#uncomment the following if you have moved the greenstone3 web directory to tomcats webapps dir
23#web.home=${tomcat.installed.path}/webapps/greenstone3
24
25## Greenstone 2 collection building options
26#The path to Greenstone 2 if it is already installed
27#If you do not want to use Greenstone 2 style building at all, set this property to any non-empty string, e.g. xxx
28gsdl2.installed.path=
29
30## Relational database
31# set this to be non-empty if you are using an external mysql.
32mysql.installed.path=
33#change the following if the defaults are not correct
34mysql.server=localhost
35#port mysql should run on. Change if you already have mysql running on the default port
36mysql.port=3306
37#Should passwords be set for the root and greenstone mysql users?
38mysql.use.passwords=yes
39## If you are installing greenstone (including mysql) in an nfs directory, mysql may not work. The data directory needs to be on a local drive - set the location here
40#mysql.datadir=
41## Mysql user passwords: uncomment and set the following if you don't want to be prompted for them during installation
42#The root password for a local mysql installation
43#mysql.root.password=
44# The password for the gsdl3admin user (local and external mysql)
45#mysql.admin.password=
46# The password for the gsdl3reader user (local and external mysql)
47#mysql.reader.password=
48
49## Proxy setup - Greenstone installation will attempt to download extra packages. Set the proxy information here if you are behind a firewall.
50# The proxy server name
51proxy.host=
52# The proxy server port
53proxy.port=
54# A user name to use when talking to the proxy server (optional, will prompt if not entered here)
55proxy.user=
56# A password to use when talking to the proxy server (optional, will prompt if not entered here)
57proxy.password=
58
59## Mac OS X specific stuff
60# set the path to your GDBM here
61gdbm.installed.path=
Note: See TracBrowser for help on using the repository browser.