source: gs3-extensions/solr/trunk/src/gs3-setup.bat@ 35314

Last change on this file since 35314 was 35314, checked in by davidb, 3 years ago

Some refinement of the (echo) messages generated so the information presented in general doesn't sound quite so scary, when things are in fact still on track

File size: 4.0 KB
Line 
1@echo off
2pushd "%CD%"
3CD /D "%~dp0"
4
5set extdesc=the Solr Extension
6if "%GSDL3SRCHOME%" == "" echo Run the toplevel gs3-setup.bat before calling this script& goto End
7
8rem IF USING TOMCAT SERVER FOR SOLR
9:: If using tomcat, read the tomcat host and port from the toplevel GS3 build.properties
10:: http://en.kioskea.net/faq/1757-how-to-read-a-file-line-by-line
11:: The following reads build.properties line by line, tokenizing it around the = sign, then
12:: sets the SOLR_PORT and SOLR_HOST to the values of tomcat.port and tomcat.host properties
13
14set SOLR_PORT=8383
15set SOLR_HOST=127.0.0.1
16
17setlocal enabledelayedexpansion
18set FOUNDPROPS=
19:: The Solr servlet should only be locally accessible, thus restricting the protocol to http as
20:: https certificates can't be issued for localhost/127.0.0.1 (https://letsencrypt.org/docs/certificates-for-localhost/)
21:: This means we use the properties localhost.server.http (defaults to 127.0.0.1) and localhost.port.http
22:: to construct the solr servlet url, rather than properties tomcat.server and tomcat.port.https
23:: Loosely based on
24:: http://stackoverflow.com/questions/7708681/how-to-read-from-a-properties-file-using-batch-script
25:: for with usebackq option allows spaces in filepath to be protected with double quotes
26:: (backquotes will be used for executing the commands)
27:: See also https://stackoverflow.com/questions/5553040/batch-file-for-loop-with-spaces-in-dir-name
28:: for alternative suggestions useful in other instances
29FOR /F "usebackq tokens=1,2 delims==" %%G IN ("%GSDL3SRCHOME%\build.properties") DO (
30 if "%%G"=="localhost.server.http" set SOLR_HOST=%%H& set FOUNDPROPS=!FOUNDPROPS!found
31 if "%%G"=="localhost.port.http" set SOLR_PORT=%%H& set FOUNDPROPS=!FOUNDPROPS!found
32 :: break out of the loop as soon as both properties are found
33 if "!FOUNDPROPS!" == "foundfound" goto foundall
34)
35
36:foundall
37endlocal& set SOLR_HOST=%SOLR_HOST%& set SOLR_PORT=%SOLR_PORT%
38echo - Solr API accessed internally via: http://%SOLR_HOST%:%SOLR_PORT%/solr/
39rem echo Tomcat host: %SOLR_HOST%
40rem echo Tomcat port: %SOLR_PORT%
41
42
43rem rem IF USING JETTY SERVER FOR SOLR
44rem :: The port Jetty runs on:
45rem set SOLR_JETTY_PORT=8983
46
47rem :: The port Jetty listens on for a "stop" command
48rem set JETTY_STOP_PORT=8079
49
50if "%OS%" == "Windows_NT" goto WinNT
51if "%OS%" == "" goto Win95
52if "%GSDLLANG%" == "en" echo Setup failed - your PATH has not been set
53if "%GSDLLANG%" == "es" echo No se pudo realizar la configuraci¢n - no se ha establecido la RUTA.
54if "%GSDLLANG%" == "fr" echo Ech‚c de l'installation - votre variable PATH n'a pas ‚t‚ ajust‚e
55if "%GSDLLANG%" == "ru" echo “áâ ­®¢ª  ­¥ ã€ « áì - “’œ ­¥ ¡ë« ãáâ ­®¢«¥­
56goto End
57
58:WinNT
59set GEXT_SOLR=%CD%
60set PATH=%GEXT_SOLR%\bin\script;%PATH%
61set PATH=%GEXT_SOLR%\lib;%PATH%
62set GS_CP_SET=yes
63goto Success
64
65:Win95
66if "%1" == "SetEnv" goto Win95Env
67REM We'll invoke a second copy of the command processor to make
68REM sure there's enough environment space
69COMMAND /E:2048 /K %0 SetEnv
70goto End
71
72:Win95Env
73set GEXT_SOLR=%CD%
74set PATH="%GEXT_SOLR%\bin\script";"%PATH%"
75set PATH="%GEXT_SOLR%\lib";"%PATH%"
76set GS_CP_SET=yes
77goto Success
78
79:Success
80
81set fulldir=%~dp0
82
83:: strip off everything up to (and including) ext dir
84set extdir=%fulldir:*ext\=%
85
86:: remove trailing slash
87set extdir=%extdir:\=%
88
89setlocal enabledelayedexpansion
90if "x%GSDL3EXTS%" == "x" (
91 set GSDL3EXTS=!extdir!
92) else (
93 set GSDL3EXTS=!GSDL3EXTS!:!extdir!
94)
95endlocal & set GSDL3EXTS=%GSDL3EXTS%
96
97echo +Your environment is now setup for %extdesc%
98
99:: Back to delayed expansion to avoid problems with environment
100:: variables with brackets in them, such as "Program Files (x86)"
101
102rem ::echo ++Solr/Jetty server will run on port %SOLR_JETTY_PORT% (+ port %JETTY_STOP_PORT% for shutdown command)
103rem echo ++Solr will run off the tomcat server on port %SOLR_PORT%
104rem echo --This port value can be changed by editing tomcat.port in build.properties
105rem ::echo -- %0
106
107
108
109:End
110
111popd
Note: See TracBrowser for help on using the repository browser.