Difference between revisions of "Startup"

From BaseX Documentation
Jump to navigation Jump to search
Line 18: Line 18:
 
*Starting the script <code>basexgui</code> / <code>basexgui.bat</code>
 
*Starting the script <code>basexgui</code> / <code>basexgui.bat</code>
  
Note: The BaseX GUI is just working on local databases. While you can always access
+
<b>Note:</b> The BaseX GUI is just working on local databases. While you can always access
 
local database from a BaseX server instance, you should avoid accessing databases
 
local database from a BaseX server instance, you should avoid accessing databases
 
concurrently with the GUI and the Server, esp. if updates are performed.
 
concurrently with the GUI and the Server, esp. if updates are performed.

Revision as of 00:04, 13 January 2011

Requirements

Java

A Runtime Environment of Java 1.6 (JRE) is needed to run BaseX. BaseX is platform-independant and should run on any platform that has a Java Virtual Machine available. BaseX has been tested on Windows (2000, XP, Vista, 7), Max OS X (10.x), Linux(SuSE xxx, Debian) and OpenBSD (4.x).

BaseX

Download the latest BaseX version for your operating system here. Run the Windows installer, or download the BaseX.zip archive to get all project components, including the start scripts. If you do not use the Windows installer, we recommend to add the bin directory, which contains all the start scripts, to your path environment; this way, you can run BaseX from every folder in the shell/terminal.

Starting the BaseX GUI

There are several methods for starting the GUI:

  • Double click on BaseX.jar
  • Execute command: java -cp BaseX.jar org.basex.BaseXGUI
  • Starting the script basexgui / basexgui.bat

Note: The BaseX GUI is just working on local databases. While you can always access local database from a BaseX server instance, you should avoid accessing databases concurrently with the GUI and the Server, esp. if updates are performed.

Starting the BaseX Server

There are several methods for starting the Server (get more information here):

  • Execute command: java -cp BaseX.jar org.basex.BaseXServer
  • Starting the script basexserver / basexserver.bat

Note: For using the databases concurrently (especially for write transactions) you have to use the BaseX Server. Please don't use any other BaseX mode with the databases from the BaseX Server while the server is on.

Starting the BaseX Client

There are several methods for starting the Client (get more information here):

  • Execute command: java -cp BaseX.jar org.basex.BaseXClient
  • Starting the script basexclient / basexclient.bat

A default admin user can be used to connect:

  • Username: admin
  • Password: admin

The password can be changed using the PASSWORD command.

See also the Server Tutorial section for more details.

Starting the BaseX Standalone

There are several methods for starting the Standalone mode (get more information here):

  • Execute command: java -cp BaseX.jar org.basex.BaseX
  • Starting the script basex / basex.bat

See also

Server Tutorial, GUI Tutorial, Standalone Tutorial, Getting Started