Difference between revisions of "Data directory"

From Bisq Wiki
Jump to navigation Jump to search
(transclude default data directory locations)
(add note about backing up data directory)
 
Line 1: Line 1:
 
The '''data directory''' is where all of Bisq's data files are stored.
 
The '''data directory''' is where all of Bisq's data files are stored.
 +
 +
It is crucial that you [[Backing_up_application_data|back up this directory]] regularly.
  
 
__TOC__
 
__TOC__

Latest revision as of 21:27, 8 April 2021

The data directory is where all of Bisq's data files are stored.

It is crucial that you back up this directory regularly.

Data directory structure

Notable items in the data directory:

  • bisq.log - main log file with most recent logs, often helpful for debugging. This file may contain private information, so it's usually not wise to post the whole thing publicly.
  • bisq.properties - place to store command-line options, so you don't have to specify them every time you run Bisq (where each option is on a new line in <option>=<value> format, e.g., dumpStatistics=true).
  • btc_mainnet/ - main data directory.
    • keys/ - keys for signing P2P messages as well as signing and aging payment accounts.
    • db/ - various user data and network data. It is strongly discouraged to edit any files in this directory.
    • tor/ - Tor state data. The hiddenservice/ folder within determines your onion address.
    • wallet/ - BTC and BSQ wallet files and rolling backups, as well as the bisq.spvchain file.

Default locations

Windows

Using PowerShell:

$home\AppData\Roaming\Bisq\

Using cmd:

%USERPROFILE%\AppData\Roaming\Bisq\

macOS

/Users/<username>/Library/Application Support/Bisq/

Linux

/home/<username>/.local/share/Bisq/

See also