Difference between revisions of "Start Scripts"

From BaseX Documentation
Jump to navigation Jump to search
Line 2: Line 2:
 
You might need to modify the path to the BaseX directory to get them running.
 
You might need to modify the path to the BaseX directory to get them running.
  
==BaseX GUI, Server, Client and Standalone==
+
==BaseX Main Package==
  
 
===Windows===
 
===Windows===
Line 44: Line 44:
  
 
==BaseX REST Server==
 
==BaseX REST Server==
 +
The script files for starting the [[JAX-RX API|JAX-RX]] Server can be found below.
 +
You might need to modify the path to the jar archive in the script:
  
 +
===Windows===
 +
 +
<pre class="brush:bash">
 +
@setlocal
 +
@echo off
 +
 +
REM Path to this script
 +
set PWD=%~dp0
 +
 +
REM Paths to distributed files or source directories
 +
set BASEX=%PWD%/basex-%BXVERSION%.jar
 +
set BASEXAPI=%PWD%/basex-api-%BXVERSION%.jar
 +
 +
REM Classpath
 +
set LIB=%PWD%/../lib
 +
set CP=%BASEX%;%BASEXAPI%;%LIB%/jax-rx-1.2.8.jar;%LIB%/jetty-6.1.25.jar;%LIB%/jetty-util-6.1.25.jar;
 +
set CP=%CP%;%LIB%/servlet-api-2.5-20081211.jar;%LIB%/jersey-server-1.4.jar;%LIB%/jersey-core-1.4.jar;%LIB%/asm-3.1.jar
 +
 +
REM Options for virtual machine
 +
set VM=-Xmx1g
 +
 +
REM Run JAX-RX server
 +
java -cp "%CP%;." %VM% org.basex.api.jaxrx.JaxRxServer %*
 +
</pre>
 +
 +
===Linux/Mac===
 +
 +
<pre class="brush:bash">
 +
#!/bin/bash
 +
 +
# Path to this script
 +
PWD=`dirname $0`
 +
 +
# Paths to distributed files or source directories
 +
BASEX=$PWD/basex.jar
 +
BASEXAPI=$PWD/basex-api.jar
 +
 +
# Classpath
 +
LIB=$PWD/../lib
 +
CP=$BASEX:$BASEXAPI:$LIB/jax-rx-1.2.8.jar:$LIB/jetty-6.1.25.jar:$LIB/jetty-util-6.1.25.jar:
 +
CP=$CP:$LIB/servlet-api-2.5-20081211.jar:$LIB/jersey-server-1.4.jar:$LIB/jersey-core-1.4.jar:$LIB/asm-3.1.jar
 +
 +
# Options for virtual machine
 +
VM=-Xmx1g
 +
 +
# Run JAX-RX server
 +
java -cp "$CP" $VM org.basex.api.jaxrx.JaxRxServer "$@"
 +
</pre>
 +
 +
[[Category:JAX-RX]]
 +
[[Category:Developer]]
 
[[Category:Beginner]]
 
[[Category:Beginner]]

Revision as of 00:16, 24 January 2011

The following start scripts, which are mentioned on the Startup page, are also included in the official releases. You might need to modify the path to the BaseX directory to get them running.

BaseX Main Package

Windows

@setlocal
@echo off

REM Path to this script
set PWD=%~dp0

REM Paths to distributed files or source directories
set BXPATH=basex.jar

REM Options for virtual machine
set VM=-Xmx1g

REM Run BaseX
java -cp "%BXPATH%" %VM% org.basex.XXX %*

Linux/Mac

#!/bin/bash

# Path to this script
PWD=`dirname $0`

# Paths to distributed files or source directories
BXPATH=basex.jar

# Options for virtual machine
VM=-Xmx1g

# Run BaseX
java -cp "$BXPATH" $VM org.basex.XXX "$@"

Note: Please replace 'XXX' with the mode you want to start, which is either BaseXServer, BaseXGUI, or BaseX.

BaseX REST Server

The script files for starting the JAX-RX Server can be found below. You might need to modify the path to the jar archive in the script:

Windows

@setlocal
@echo off

REM Path to this script
set PWD=%~dp0

REM Paths to distributed files or source directories
set BASEX=%PWD%/basex-%BXVERSION%.jar 
set BASEXAPI=%PWD%/basex-api-%BXVERSION%.jar

REM Classpath
set LIB=%PWD%/../lib
set CP=%BASEX%;%BASEXAPI%;%LIB%/jax-rx-1.2.8.jar;%LIB%/jetty-6.1.25.jar;%LIB%/jetty-util-6.1.25.jar;
set CP=%CP%;%LIB%/servlet-api-2.5-20081211.jar;%LIB%/jersey-server-1.4.jar;%LIB%/jersey-core-1.4.jar;%LIB%/asm-3.1.jar

REM Options for virtual machine
set VM=-Xmx1g

REM Run JAX-RX server
java -cp "%CP%;." %VM% org.basex.api.jaxrx.JaxRxServer %*

Linux/Mac

#!/bin/bash

# Path to this script
PWD=`dirname $0`

# Paths to distributed files or source directories
BASEX=$PWD/basex.jar
BASEXAPI=$PWD/basex-api.jar

# Classpath
LIB=$PWD/../lib
CP=$BASEX:$BASEXAPI:$LIB/jax-rx-1.2.8.jar:$LIB/jetty-6.1.25.jar:$LIB/jetty-util-6.1.25.jar:
CP=$CP:$LIB/servlet-api-2.5-20081211.jar:$LIB/jersey-server-1.4.jar:$LIB/jersey-core-1.4.jar:$LIB/asm-3.1.jar

# Options for virtual machine
VM=-Xmx1g

# Run JAX-RX server
java -cp "$CP" $VM org.basex.api.jaxrx.JaxRxServer "$@"