Difference between revisions of "Configuration"
| Line 1: | Line 1: | ||
| − | This | + | This page is part of the [[Getting Started]] Section. It gives some insight into the configuration of BaseX. |
| − | It gives some | ||
==Configuration Files== | ==Configuration Files== | ||
Revision as of 13:24, 31 March 2022
This page is part of the Getting Started Section. It gives some insight into the configuration of BaseX.
Configuration Files
BaseX maintains some configuration files, which are stored in the project’s Home Directory:
.basexcontains all options that are relevant for running the server or standalone versions of BaseX..basexguidefines all options relevant to the BaseX GUI..basexhistorycontains commands that have been typed in most recently.- An empty
.basexhomefile can be added to a directory to mark it as home directory.
Note that:
- Depending on your OS and configuration, files and folders with a '.' prefix may be hidden.
- In the Web Application context, options can be defined in the
web.xmlfile.
Home Directory
As BaseX is distributed in different flavors, and as it may be started from different locations, it dynamically determines its home directory:
- First, the Java system property
org.basex.pathis 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.basexor.basexhomefile is found in this directory. - If not, the application directory (the folder in which BaseX is located) is chosen if one of these two files is found in that directory.
- In all other cases, a
basexsubdirectory in the user home directory will be returned. The user home directory is retrieved via theHOMEenvironment variable, or (if unassigned) the Java system propertyuser.home.
If BaseX is used in an embedded environment (such as a servlet in a Web Application), it may not immediately be clear which directory was chosen. You can run the XQuery expression Q{org.basex.util.Prop}HOMEDIR() to find out.
Database Directory
Databases consists of several binary files. These are located in a directory named by the name of the database. The database root directory is named data.
The database path can be changed as follows:
- GUI: Choose Options → Preferences and choose a new database path.
- General: edit the
DBPATHoption in the.basexconfiguration file
Note: Existing databases will not automatically be moved to the new destination.
Log Files
Log files are stored in text format in a .logs sub-directory of the database folder (see Logging for more information).
Changelog
- Version 9.0
- Updated: Detection and configuration of home directory and subdirectories.
- Version 8.0
- Updated:
.basexpermis obsolete. Users are now stored inusers.xmlin the database directory (see User Management for more information).
- Version 7.7
- Updated: The
.basexhomefile marks a folder as home directory.