You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Next, create a `.env` file using the example file provided. This file will be responsible for storing configuration and secrets for our Bee and Bee Clef applications.
There are some important configuration parameters which must be set in order for our projects to work. To affect configuration in the `.env` file, we first remove the `#` at the beginning of the line and then change the value after `=` to our desired config.
@@ -284,6 +284,7 @@ Then configure your node, including your p2p port (usually 1634).
284
284
```yaml
285
285
nat-addr: "123.123.123.123:1634"
286
286
```
287
+
287
288
#### Debug API
288
289
289
290
For a new installation of Bee, the debug API endpoint is not yet exposed for security reasons. To enable the debug API endpoints, set `debug-api-enable` to `true` in your [configuration file](/docs/working-with-bee/configuration) and restart your Bee service.
Copy file name to clipboardExpand all lines: docs/installation/rasp-bee-ry-pi.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,8 +53,8 @@ We must install Bee Clef before Bee. To do so, open the browser (the 🌐 icon)
53
53
Click `Install > Bee Clef` and scroll down to find the installation commands for Bee Clef **ARM (Raspberry Pi) ARMv7**. These should look something like:
Click `copy` on the right hand side of the box containing the instructions, then go back to your terminal on your Raspberry Pi, right click with your mouse and paste in the commands. The first one will execute immediately because there is a 'newline' or 'enter' character.
@@ -131,7 +131,7 @@ Your output should looks something like this:
131
131
132
132
```bash
133
133
-rw-r--r-- 1 pi pi 3523 Mar 4 22:47 .bashrc
134
-
-rw-r--r-- 1 pi pi 10787806 Mar 23 08:18 bee_0.6.0_armv7.deb
134
+
-rw-r--r-- 1 pi pi 10787806 Mar 23 08:18 bee_0.6.2_armv7.deb
135
135
-rw-r--r-- 1 pi pi 10473282 Feb 24 18:00 bee-clef_0.4.12_armv7.deb
136
136
drwxr-xr-x 2 pi pi 4096 Mar 4 22:57 Bookshelf
137
137
```
@@ -141,7 +141,7 @@ For more information, you can use the `man` utility to read the manual. Type `ma
141
141
Now, let's use the `rm` programme to remove the clutter and delete the `.deb` files we no longer need.
142
142
143
143
```bash
144
-
rm bee_0.6.0_armv7.deb
144
+
rm bee_0.6.2_armv7.deb
145
145
```
146
146
147
147
The `rm` programme gives no output, so let's check it's dissapeared by checking the contents of the directory. This time we will also you the 'pipe' command, which passes the output of one command to the next, and the `grep` command which searches through the output and only prints lines that match the pattern.
Copy file name to clipboardExpand all lines: docs/working-with-bee/upgrade.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,13 +12,13 @@ Bee sure to [backup](/docs/working-with-bee/backups) your clef key material and
12
12
13
13
### Upgrading from 0.5.x Series to 0.6.x
14
14
15
-
Bee 0.6.0 contains a few breaking changes which mean a database migration must take place. We also intoduce [postage stamps](/docs/access-the-swarm/keep-your-data-alive) which must be attached to chunks of data so that they will be retained in the Swarm network.
15
+
Bee 0.6.2 contains a few breaking changes which mean a database migration must take place. We also intoduce [postage stamps](/docs/access-the-swarm/keep-your-data-alive) which must be attached to chunks of data so that they will be retained in the Swarm network.
16
16
17
17
:::info
18
18
Please take note that nodes which deployed their chequebook with bee v0.5.0 will have to be started with the --transaction TXHASH flag where TXHASH is any Ethereum transaction on goerli network sent from the bee node's Ethereum address. The hash of the chequebook deployment transaction can be used for this and can be looked up on etherscan. For nodes which first started with v0.5.1 or higher no action is necessary, as their chequebook deployment transaction will be automatically picked-up by the Bee node.
19
19
:::
20
20
21
-
As part of these changes, if you have any **locally pinned content**, this must be manually migrated to the new data structure expected by the network of 0.6.0 clients, see below for information on how to proceed.
21
+
As part of these changes, if you have any **locally pinned content**, this must be manually migrated to the new data structure expected by the network of 0.6.2 clients, see below for information on how to proceed.
22
22
23
23
If you *do not* have any locally pinned content, your migration will be automatic and your update will proceed as normal.
24
24
@@ -44,7 +44,7 @@ To update **without pinned content:**
44
44
4. Adjust your configuration. Several configuration parameters have changed in 0.6.x - If you wish to continue running as a full node, you must set the new `full-node` flag to `true`. check out the [configuration](/docs/working-with-bee/configuration) guide for more info on how to update your configuration.
45
45
5. Restart your node.
46
46
47
-
Your Bee should start up as normal, and begin to connect to other Bees that are running Bee 0.6.0 or later.
47
+
Your Bee should start up as normal, and begin to connect to other Bees that are running Bee 0.6.2 or later.
48
48
49
49
#### Manual Migration Procedure
50
50
@@ -56,7 +56,7 @@ Your Bee should start up as normal, and begin to connect to other Bees that are
56
56
6. Adjust your configuration. Several configuration parameters have changed in 0.6.x - If you wish to continue running as a full node, you must set the new `full-node` flag to `true`. check out the [configuration](/docs/working-with-bee/configuration) guide for more info on how to update your configuration.
57
57
7. Restart your node.
58
58
59
-
Your Bee should start up as normal, and begin to connect to other Bees that are running Bee 0.6.0 or later.
59
+
Your Bee should start up as normal, and begin to connect to other Bees that are running Bee 0.6.2 or later.
0 commit comments