source: trunk/gsdl3/gs3-setup.bat@ 10824

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

changed the location of tomcat

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1@echo off
2
3if exist gs3-setup.bat goto start
4 echo This script must be run from within the Greenstone 3 home directory
5 goto exit
6
7:start
8:: ---- Set the GSDL3HOME variable to the current directory ----
9cd | winutil\setvar.exe GSDL3SRCHOME > setgsdl3.bat
10call setgsdl3.bat
11del setgsdl3.bat
12echo GSDL3SRCHOME: %GSDL3SRCHOME%
13set GSDL3HOME=%GSDL3SRCHOME%\web
14echo GSDL3HOME: %GSDL3HOME%
15
16:: change if using external tomcat
17set TOMCAT_HOME=%GSDL3SRCHOME%\packages\tomcat
18
19:: ---- Set other important environment variables ----
20set GSDLOS=windows
21set PATH=%PATH%;%GSDL3SRCHOME%\bin;%GSDL3SRCHOME%\bin\script;%GSDL3SRCHOME%\lib\jni;%GSDL3SRCHOME%\packages\mysql\bin
22
23:: ---- Set the CLASSPATH environment variable ----
24set CLASSPATH=%GSDL3HOME%\WEB-INF\classes;%CLASSPATH%
25if exist setcp.bat del setcp.bat
26for %%j in ("%GSDL3HOME%"\WEB-INF\lib\*.jar) do echo set CLASSPATH=%%CLASSPATH%%;%%j>> setcp.bat
27for %%j in ("%GSDL3SRCHOME%"\lib\jni\*.jar) do echo set CLASSPATH=%%CLASSPATH%%;%%j>> setcp.bat
28for %%j in ("%TOMCAT_HOME%"\common\endorsed\*.jar) do echo set CLASSPATH=%%CLASSPATH%%;%%j>> setcp.bat
29
30call setcp.bat
31del setcp.bat
32
33echo CLASSPATH: %CLASSPATH%
34
35::cd %GSDL3HOME%
36
37:findJava
38:: ---- Check Java SDK exists ----
39set JAVAPATH=
40
41:: Some users may set the above line manually
42if not "%JAVAPATH%" == "" goto testJava
43
44 :: If it is set, use the JAVA_HOME environment variable
45 if not "%JAVA_HOME%" == "" goto exit
46
47 :: Look in the registry for Java SDK installations
48 type nul > jdk.reg
49 regedit /E jdk.reg "HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Development Kit"
50 type jdk.reg > jdk.txt
51 del jdk.reg
52
53 winutil\findjava.exe jdk.txt | winutil\setvar.exe JAVAPATH > setjava.bat
54 del jdk.txt
55 call setjava.bat
56 del setjava.bat
57
58 :: If a suitable installation was found in the registry, check it
59 if not "%JAVAPATH%" == "" goto testJava
60
61:noJava
62 echo.
63 echo Failed to locate an appropriate version of Java. You must install a
64 echo Java Development Kit (version 1.4 or greater) before running the
65 echo Greenstone 3 Digital Library Software.
66 pause
67 goto exit
68
69:testJava
70set JAVA_HOME=%JAVAPATH%
71
72:exit
Note: See TracBrowser for help on using the repository browser.