Backups
Bee Files
A full Bee node backup includes the kademlia-metrics,  keys,  localstore,  password,  stamperstore,  statestore, and password files. The node should be stopped before taking a backup and not restarted until restoring the node from the backup to prevent the node from getting out of sync with the network.
Key data from the keys directory allows access to Bee node's Gnosis account (provided that you have also made sure to back the password for your keys). If your keys and password are lost or stolen it could lead to the loss of all assets in that account. Furthermore the stamperstore contains postage stamp data, and postage stamps will not be recoverable if it is lost.
Don't forget - it's not a backup until you're sure the backup files work! Make sure to test restoring from backup files to prevent loss of assets due to data loss or corruption.
Package Manager Default Service File Locations
The default file locations for Bee nodes installed to run as a service through a package manager can all be found on GitHub in the Bee repo within the respective directories for each service manager within packaging directory.
The directory structure looks like this:
noah@NoahM16:~/bee/packaging$ tree -L 2
.
├── bee-get-addr
├── bee.service
├── bee.yaml
├── deb
│   ├── postinst
│   ├── postrm
│   ├── preinst
│   └── prerm
├── default
├── docker
│   ├── docker-compose.yml
│   ├── env
│   └── README.md
├── homebrew-amd64
│   ├── bee-get-addr
│   └── bee.yaml
├── homebrew-arm64
│   ├── bee-get-addr
│   └── bee.yaml
├── rpm
│   ├── post
│   ├── postun
│   ├── pre
│   └── preun
└── scoop
    └── bee.yaml
Binary package install
If you installed Bee using the automated shell script or by building Bee from source, your data directory will typically be located at:
/home/<user>/.bee
Docker Compose
When using Docker Compose configuration files to run a node, Docker will create a volume for Bee.
Use docker cp to retrieve the contents of these folders:
docker cp bee_bee_1:/home/bee/.bee/ bee
Data types
The data directory contains three directories. Its default location depends on the node install method and startup method used.
├── kademlia-metrics
│   └── ...
├── keys
│   ├── libp2p.key
│   ├── libp2p_v2.key
│   ├── pss.key
│   └── swarm.key
├── localstore
│   ├── indexstore
│   └── sharky
├── password
├── stamperstore
│   └── ...
└── statestore
│   └── ...
Keys
The keys directory contains three key files: libp2p.key,  libp2p_v2.key,  pss.key,  swarm.key,. These keys are generated during the Bee node's initialisation and are required for maintaining access to your node.
The swarm.key file allows access to Bee node's Gnosis Chain account. If the key is lost or stolen it could lead to the loss of all assets secured by that key.
To use swarm.key to manage the Gnosis account for a node through Metamask or other wallets, exportSwarmKeys can be used to convert swarm.key to a compatible format.
Statestore and Localstore.
The statestore retains data related to its operation, and the localstore contains chunks locally which are frequently requested, pinned in the node, or are in the node's neighborhood of responsibility.
As the data in statestore and localstore continually changes during normal operation of a node, when taking a backup the node should first be stopped and not re-connected to the Swarm network until restoring from the backup (otherwise the statestore and localstore files will get out of sync with the network). It is possible to restore using out of sync statestore and localstore files, however it may lead to data loss or unexpected behavior related to chunk uploads, postage stamps, and more.
Back-up your node data
Copy entire bee data folder to fully backup your node. This will do a full backup of kademlia-metrics,  keys,  localstore,  stamperstore, password, and statestore, files into a newly created /backup directory. Make sure to save the backup directory to a safe location.
mkdir backup
sudo cp -r /var/lib/bee/ backup
Back-up your password
Depending on your configuration method, your password may be located in a variety of different locations. If you use a .yaml file for your configuration, then it might be found directly under the password option, or it could be that the location of your password file is recorded by the password-file option. In either case, make sure to record the password or password file as a part of your backup.
The same holds true for the to other configuration methods. If you use environment variables for specifying your configuration options, your password itself will likely be specified in a .env file somewhere which contains either the password itself in the BEE_PASSWORD variable or the location of your password file in the BEE_PASSWORD_FILE variable.
The same again holds true for the command line flag method. Make sure you have the password you use with the --password command line flag or the password file specified by the --password-file flag saved in your backup.
Back-up blockchain keys only
If you only need to export your node's blockchain keys, you need to export the swarm.key UTC / JSON keystore file and the password file used to encrypt it. First create a directory for your keys and then copy your keys to that directory.
mkdir keystore
sudo cp -r /var/lib/bee/keys/swarm.key /var/lib/bee/password keystore    
Metamask Import
If you wish to import your blockchain account to a wallet such as Metamask, you can simply print out your keystore file and password and use those data to import into the wallet:
View key and password for wallet import
sudo cat /var/lib/bee/keys/swarm.key 
sudo cat /var/lib/bee/password
Note that swarm.key is in UTC / JSON keystores format and is encrypted by default by your password file inside the /bee directory. Make sure to export both the swarm.key file and the password file in order to secure your wallet. If you need your private key exported from the keystore file, you may use one of a variety of Ethereum wallets which support exporting private keys from UTC files (such as Metamask, however we offer no guarantees for any software, make sure you trust it completely before using it).
Get private key from keystore and password
To import to Metamask:
- View and copy your swarm.keyandpasswordas shown above
- Go to Metamask and click "Account 1" --> "Import Account"
- Choose the "Select Type" dropdown menu and choose "JSON file"
- Paste the password (Make sure to do this first)
- Upload exported JSON file
- Click "Import"
To export your private key:
- Go to Metamask and click "Account 1" to view the dropdown menu of all accounts
- Click the three dots next to the account you want to export
- Click "Account details"
- Click "Show private key"
- Enter your Metamask password (not your keystore password)
- Copy your private key to a safe location
Restore from backup
Before restoring, make sure to check for any old node data at /var/lib/bee from a previous node which has not yet been backed up, and back it up if needed.
- 
Install Bee. See install page for more info. 
- 
Delete /beefolder which was generated during installsudo rm -r /var/lib/bee
- 
Navigate to backup directory and copy files to data folder. sudo cp -r /<path-to-backup>/. /var/lib/bee
- 
Revert ownership of the data folder. sudo chown -R bee:bee /var/lib/bee
- 
Start beeservice and check logs to see if Bee node is running properly.sudo systemctl restart bee
 sudo journalctl --lines=100 --follow --unit bee