Difference between revisions of "Configuration"

From BaseX Documentation
Jump to navigation Jump to search
Line 25: Line 25:
  
 
A database in BaseX consists of several files, which are all bundled in a folder with the database name.
 
A database in BaseX consists of several files, which are all bundled in a folder with the database name.
If you run the standalone JAR archive, all of these files are stored in a folder in the home directory,
+
If the user’s home directory has been chosen as base directory, the database folders will be stored in a
which is named {{Mono|BaseXData}}. If you use one of the complete distributions, this directory will be
+
{{Mono|BaseXData}} directory. Otherwise, the directory will be named {{Mono|datda}}.
named <code>data</code>, and reside in the application directory.
 
  
 
The database path can be changed as follows:
 
The database path can be changed as follows:
Line 33: Line 32:
 
* Server/Standalone: <code>[[Options#DBPATH|SET DBPATH [path]]]</code>
 
* Server/Standalone: <code>[[Options#DBPATH|SET DBPATH [path]]]</code>
  
Note: After having changed the database path, all existing databases have to be manually moved to the new location.
+
'''Note:''' Existing databases will not be automatically moved to the new destination.
  
 
==User and Log Files==
 
==User and Log Files==

Revision as of 02:20, 23 March 2012

This article is part of the Advanced User's Guide. It gives some more insight into the configuration of BaseX.

Configuration Files

BaseX maintains some configuration files, which are stored in the project’s Home Directory:

  • .basex contains all options that are relevant for running the server or standalone versions of BaseX.
  • .basexgui defines all options relevant to the BaseX GUI.
  • .basexperm contains user name, passwords, and permissions (see last paragraph).
  • .basexevents contains all existing events (see Events).
  • .basexhistory contains commands that have been typed in most recently.

Note that, depending on your OS and configuration, files and folders with a '.' prefix may be hidden.

Home Directory

As BaseX is distributed in different flavors, and may be started from different locations, it dynamically determines its home directory:

  • First, the system property "org.basex.path" is checked. If it contains a value, it is chosen as directory path.
  • If not, the current user directory (defined by the system property "user.dir") is chosen if the .basex configuration file is found in this directory.
  • Otherwise, the configuration file is searched in the application directory (the folder in which the project is located).
  • In all other cases, the user's home directory (defined in "user.home") is chosen.

Database Directory

A database in BaseX consists of several files, which are all bundled in a folder with the database name. If the user’s home directory has been chosen as base directory, the database folders will be stored in a BaseXData directory. Otherwise, the directory will be named datda.

The database path can be changed as follows:

  • GUI: Choose OptionsPreferences and choose a new database path.
  • Server/Standalone: SET DBPATH [path]

Note: Existing databases will not be automatically moved to the new destination.

User and Log Files

Global users, along with their passwords and permissions, are stored in the .basexperm file in the home directory. Local users and permissions are stored inside the database files. Log files are stored in text format in the home directory BaseXData/.logs (see Logging for more information).