Starting Repository and Mashup Server (Dev Edition)
Fri, 01/08/2010 - 11:08
andybrucenet
Offline
Joined: 01/06/2010
Points: 20
Hi All,
Following instructions in manual I could not start the repository and mashup server for dev edition download. Problem was trivial--you need to be in the directory in order to start these items. So here are a couple batch files that may be of use to others. Both batch files should be in the Presto2.7.0 (or whatever version you have) folder that you extracted the download ZIP from.
01_start_repo.bat
<code>
@ECHO OFF
ECHO Starting Presto Repository
pushd "%~dp0"
CD prestorepository\hsqldb
server.bat
</code>
02_start_mashup.bat
<code>
@ECHO OFF
ECHO Starting Presto Mashup Server
pushd "%~dp0"
CD mashupserver
startPresto.bat
Hi All,
Following instructions in manual I could not start the repository and mashup server for dev edition download. Problem was trivial--you need to be in the directory in order to start these items. So here are a couple batch files that may be of use to others. Both batch files should be in the Presto2.7.0 (or whatever version you have) folder that you extracted the download ZIP from.
01_start_repo.bat
<code>
@ECHO OFF
ECHO Starting Presto Repository
pushd "%~dp0"
CD prestorepository\hsqldb
server.bat
</code>
02_start_mashup.bat
<code>
@ECHO OFF
ECHO Starting Presto Mashup Server
pushd "%~dp0"
CD mashupserver
startPresto.bat
</code>