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

Last change on this file since 10943 was 10824, checked in by kjdon, 19 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
RevLine 
[6400]1@echo off
2
[6413]3if exist gs3-setup.bat goto start
[6400]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 ----
[10646]9cd | winutil\setvar.exe GSDL3SRCHOME > setgsdl3.bat
[6400]10call setgsdl3.bat
11del setgsdl3.bat
[10646]12echo GSDL3SRCHOME: %GSDL3SRCHOME%
13set GSDL3HOME=%GSDL3SRCHOME%\web
[6400]14echo GSDL3HOME: %GSDL3HOME%
15
[10646]16:: change if using external tomcat
[10824]17set TOMCAT_HOME=%GSDL3SRCHOME%\packages\tomcat
[10646]18
[6400]19:: ---- Set other important environment variables ----
20set GSDLOS=windows
[10646]21set PATH=%PATH%;%GSDL3SRCHOME%\bin;%GSDL3SRCHOME%\bin\script;%GSDL3SRCHOME%\lib\jni;%GSDL3SRCHOME%\packages\mysql\bin
[6400]22
23:: ---- Set the CLASSPATH environment variable ----
[10734]24set CLASSPATH=%GSDL3HOME%\WEB-INF\classes;%CLASSPATH%
[6400]25if exist setcp.bat del setcp.bat
[10734]26for %%j in ("%GSDL3HOME%"\WEB-INF\lib\*.jar) do echo set CLASSPATH=%%CLASSPATH%%;%%j>> setcp.bat
[10657]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
[10646]29
[6400]30call setcp.bat
31del setcp.bat
[10646]32
[6400]33echo CLASSPATH: %CLASSPATH%
34
[10646]35::cd %GSDL3HOME%
[6400]36
[6441]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
[6400]72:exit
Note: See TracBrowser for help on using the repository browser.