create account

How to build and run a hive node - witness/seed/consensus and account history nodes by mahdiyari

View this thread on: hive.blogpeakd.comecency.com
· @mahdiyari · (edited)
$146.73
How to build and run a hive node - witness/seed/consensus and account history nodes
<center>
![hive-node-build.jpg](https://files.peakd.com/file/peakd-hive/mahdiyari/23vhTijKR5KkPV6ed3kJResajUvnSbCuX9GGUatFA1Sffbs7aJmbLdSvhxtD8mRoB8wdn.jpg)
</center>

This guide is for building on Ubuntu. It should work on Ubuntu 20. It is not recommended to go with older versions. It is recommended to start with a fresh install.

### System requirements

Consensus/witness/seed node:
- 1TB storage**
- 32GB RAM*

Account history node:
<sub>Note: This type of node will be deprecated and replaced by HAFAH after the hard fork 26. But will still work.</sub>
- 2TB storage**
- 32GB RAM*

*: The required RAM goes up over time
**: The required storage goes up over time

### Building
Install dependencies:
```
sudo apt-get update

sudo apt-get install git wget

sudo apt-get install \
    autoconf \
    automake \
    cmake \
    g++ \
    git \
    zlib1g-dev \
    libbz2-dev \
    libsnappy-dev \
    libssl-dev \
    libtool \
    make \
    pkg-config \
    doxygen \
    libncurses5-dev \
    libreadline-dev \
    perl \
    python3 \
    python3-jinja2

sudo apt-get install \
    libboost-chrono-dev \
    libboost-context-dev \
    libboost-coroutine-dev \
    libboost-date-time-dev \
    libboost-filesystem-dev \
    libboost-iostreams-dev \
    libboost-locale-dev \
    libboost-program-options-dev \
    libboost-serialization-dev \
    libboost-system-dev \
    libboost-test-dev \
    libboost-thread-dev
```
Clone the repository and select the version:
```
git clone https://gitlab.syncad.com/hive/hive
cd hive
git checkout v1.25.0
git submodule update --init --recursive
```
We selected the tag `v1.25.0`. You can checkout `master` for the latest version but it's not recommended for the witness nodes. Because witnesses vote for a hard fork by running the version of that hard fork.
This version will not work after hard fork 26.
```
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j$(nproc) hived
make -j$(nproc) cli_wallet
make install
```
<sub>In case the original repository is down, you can use the mirror at `https://gitlab.com/hiveblocks/hive`</sub>

### Data directory
Now you can make another folder as a data directory to hold block_log and the config file. I will use `/root/hive-data` directory.
```
cd /root
mkdir hive-data
hived -d /root/hive-data --dump-config
```
The above command will create the config file. We will edit that later depending on the type of node that we need.

It is highly recommended to download `block_log` to speed up the sync/replay time. The one I linked below is hosted by the great wizard @gtg (make sure to vote him as a witness).
```
cd /root/hive-data/blockchain
wget https://gtg.openhive.network/get/blockchain/block_log
```
After downloading the block_log, choose one of the configs from below and move on to the replay section.
***
### Seed node
The config file is located at `hive-data/config.ini`.
Edit the following parameters in the config file. Add them if they don't exist.
```
# Plugin(s) to enable, may be specified multiple times
plugin = witness condenser_api network_broadcast_api database_api block_api
# account_by_key is enabled by default - required to use 'get_witness' and 'get_account' in cli_wallet
plugin = account_by_key account_by_key_api
# required for creating and importing Hive 1.24+ State Snapshots
plugin = state_snapshot

shared-file-size = 30G
shared-file-dir = /dev/shm/
p2p-endpoint = 0.0.0.0:2001
```
The seed node will be open on port 2001.
Ready to replay the node.
***
### Account history node
The exact same config as the seed node but with additional config:
```
# open the port for RPC connections
webserver-http-endpoint = 127.0.0.1:8091

# edit depending on the load on the RPC node - 64-256 for high traffic
webserver-thread-pool-size = 2

# additional alongside the other plugins
plugin = account_history_rocksdb account_history_api

# The location of the rocksdb database for account history. By default it is $DATA_DIR/blockchain/account-history-rocksdb-storage
account-history-rocksdb-path = "blockchain/account-history-rocksdb-storage"

# optionally you can comment out this
#p2p-endpoint = 0.0.0.0:2001
```
Ready to replay the node.

***
### Witness node

To run cli_wallet in offline mode, you will need to build it from the `develop` branch instead of `v1.25.0` or `master`. Or just replay the node and then come back here and run the cli_wallet without -o.

Run cli_wallet in offline mode and generate a pair of keys.
```
cli_wallet -o # important notes are above
```
Then
```
suggest_brain_key
```
You should get a pair of keys like this.
```
{
  "brain_priv_key": "LOGIUM SPANNEL QUETCH LOOPIST NUTGALL LAMINAR PASMO SPRUE TEINDER ECHO WIVE AGREER LOON DIELIKE HIVE MERROW",
  "wif_priv_key": "5HqrGLNrHVuKUHCW5VopRykStsek9WA4tWWhtcx9zjnSUHg38kX",
  "pub_key": "STM8SqT7hHVyzuxkt6yVdUH6rzvCUDqAmaPLZx3UtSDTxPHRMNLFa"
}
```
Copy both the private and public keys. We will add the public key to our witness account's signing key. And the private key will be added to the config file only to sign the blocks that we produce.

The config file is located at `hive-data/config.ini`.
Edit the following parameters in the config file. Add them if they don't exist.
```
# witness account - with double quotes
witness= "username"
# witness account's signing private key - NO double quotes
private-key= 5HqrGLNrHVuKUHCW5VopRykStsek9WA4tWWhtcx9zjnSUHg38kX

# Plugin(s) to enable, may be specified multiple times
plugin = witness condenser_api network_broadcast_api database_api block_api
# account_by_key is enabled by default - required to use 'get_witness' and 'get_account' in cli_wallet
plugin = account_by_key account_by_key_api
# required for creating and importing Hive 1.24+ State Snapshots
plugin = state_snapshot

shared-file-size = 30G
shared-file-dir = /dev/shm/
# open the ports for cli_wallet connections
webserver-http-endpoint = 127.0.0.1:8091
webserver-ws-endpoint = 127.0.0.1:8090

# Remove the following if exists
#p2p-endpoint = 0.0.0.0:2001
```
Replace the `witness` and `private_key` values with your username and the private key generated by cli_wallet.
Ready to replay the node.

*** Come back here after replaying. The guide is available under this section.

After finishing the replay, you need to broadcast an operation on your witness account to add/edit the signing key on your account and enable production.
We can use cli_wallet to do so but there are open source witness tools that can do the same thing. cli_wallet will connect to the local node that we are running.

```
cli_wallet
# OR
cli_wallet -s ws://127.0.0.1:8090
```
Add a password, unlock, and import your `active private key`.
```
set_password "mypoassword"
unlock "mypassword"
import_key 5jxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
```
Edit the following operation before broadcasting:
```
update_witness "username" "https://hive.blog/witness-category/@username/my-witness-thread" "STMxxxxxxx" {"account_creation_fee":"3.000 HIVE","maximum_block_size":65536,"hbd_interest_rate":0} true
```
I think it is very clear what you need to edit. Your username, a link to post (or something similar), and signing public key (generated by cli_wallet).
Note: If you take too long inside cli_wallet, it might time out and not broadcast the operation.

After broadcasting, you can see the signing key at https://hiveblocks.com/@username under the "Authorities" tab on the left side.

Your witness information will be visible on the witnesses lists only after producing a block.
***

### tmux/screen
You will need screen or tmux to keep hived running. I prefer tmux.
```
sudo apt-get install tmux
```
A simple cheatsheet for tmux:
```
tmux # start a new session
tmux attach # open the recently created session
tmux ls # list all the active sessions
tmux attach -t <target> # attach to a certain session

# Commands while attached to a tmux session:
ctrl+b, d # detach from session
ctrl+d # end the session
```
### Replay
First, adjust the size for /dev/shm on your machine:
<sub>Note: This is where we hold the shared_memory.bin file. It is growing over time so keep an eye on it. /dev/shm is on RAM. You can edit the config file and choose another location for shared_memory on storage but it will greatly increase the time of replay.</sub>
```
sudo mount -o "remount,size=30G" /dev/shm
```

Depending on your CPU/RAM/storage speed, this will take a few hours. We open a tmux session by typing `tmux` and run the following command.
```
hived -d /root/hive-data --replay-blockchain
```
You can detach by `ctrl+b` then `d` and let it run in the background.
You can `tmux attach` to attach and see the progress. Remember to not press `ctrl+c` inside the session, as it will terminate the hived.

When the replay is done, you should see the newly produced blocks in your logs every 3 seconds.
```
2022-06-14T08:46:38.741642 p2p_plugin.cpp:187            handle_block         ] Got 47 transactions on block 65253208 by deathwing -- Block Time Offset: -258 ms
2022-06-14T08:46:41.789187 p2p_plugin.cpp:187            handle_block         ] Got 64 transactions on block 65253209 by pharesim -- Block Time Offset: -210 ms
2022-06-14T08:46:44.790889 p2p_plugin.cpp:187            handle_block         ] Got 56 transactions on block 65253210 by therealwolf -- Block Time Offset: -209 ms
2022-06-14T08:46:47.749655 p2p_plugin.cpp:187            handle_block         ] Got 58 transactions on block 65253211 by blocktrades -- Block Time Offset: -250 ms
2022-06-14T08:46:50.704510 p2p_plugin.cpp:187            handle_block         ] Got 70 transactions on block 65253212 by stoodkev -- Block Time Offset: -295 ms
2022-06-14T08:46:54.577980 p2p_plugin.cpp:187            handle_block         ] Got 49 transactions on block 65253213 by jesta -- Block Time Offset: 577 ms
```
***
### Start/Stop
After finishing the replay, you can just stop and start the node again.
`ctrl+c` one time to gracefully stop the node
`hived -d /root/hive-data` to start the node

### Notes

Note #1: If you reboot the system, you have to replay the node again. Because the `shared_memory.bin` file is located on the ram at `/dev/shm` and it will be removed on reboot. You can back up that file after gracefully closing the node before rebooting.

Note #2: If you close the hived node forcefully, most likely you will have to replay the node again. You might need to redownload the block_log file too.

Note #3: If your block_log file gets corrupted by forcefully closing the node or by a crash, instead of redownloading you can trim the end of the file by a few MB or GB and fix it using `wget -c https://gtg.openhive.network/get/blockchain/block_log`. This will only download the remaining end of the file.

Note #4: You need to stop/start the node after editing the config.ini file for changes to take effect.

Note #5: Make sure the time on your machine is in sync with an online source.

Note #6: It is recommended to not share the IP of your witness node.
***
And 3 cute kittens as bonus content.
<center>![cute-kittens.jpg](https://files.peakd.com/file/peakd-hive/mahdiyari/23uFTQiwv1EvaU8zFekrQPWrb5tDitR4n51cjR31K355adj1ndmtQzVrgyFKXo9n23XeT.jpg)</center>

I read all the comments. Ask your questions or add anything that I missed in the post.
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 722 others
πŸ‘Ž  ,
properties (23)
authormahdiyari
permlinkhow-to-build-and-run-a-hive-node-witnessseedconsensus-and-account-history-nodes
categoryhive-139531
json_metadata"{"app":"peakd/2022.05.9","format":"markdown","description":"A guide for building hived node on ubuntu from scratch. This guide covers witness, seed, and account history node.","tags":["witness-update","witness","consensus","seed","node","build"],"users":["gtg","username"],"image":["https://files.peakd.com/file/peakd-hive/mahdiyari/23vhTijKR5KkPV6ed3kJResajUvnSbCuX9GGUatFA1Sffbs7aJmbLdSvhxtD8mRoB8wdn.jpg","https://files.peakd.com/file/peakd-hive/mahdiyari/23uFTQiwv1EvaU8zFekrQPWrb5tDitR4n51cjR31K355adj1ndmtQzVrgyFKXo9n23XeT.jpg"]}"
created2022-06-14 10:03:21
last_update2022-06-25 22:12:06
depth0
children54
last_payout2022-06-21 10:03:21
cashout_time1969-12-31 23:59:59
total_payout_value73.434 HBD
curator_payout_value73.298 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11,217
author_reputation199,858,416,089,067
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,044,821
net_rshares306,926,370,690,397
author_curate_reward""
vote details (788)
@ackza ·
if you could go back in time to steem knowing what you know now, what would you have done with a bunch of steem witnesses? How would you have integrated them into various businesses?

and will we ever get bidbots on twitter if elon and cz buy steemit from justin sun lol ?
properties (22)
authorackza
permlinkrdhxrk
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-06-15 02:04:33
last_update2022-06-15 02:04:33
depth1
children0
last_payout2022-06-22 02:04:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length272
author_reputation287,776,574,693,472
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,064,394
net_rshares0
@borepstein ·
Thanks.
If I am trying to run a witness box - can I just use my own wallet (i.e., my account)?
properties (22)
authorborepstein
permlinkre-mahdiyari-recwv8
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.05.9"}
created2022-07-01 19:30:45
last_update2022-07-01 19:30:45
depth1
children2
last_payout2022-07-08 19:30:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length94
author_reputation344,312,488,177,834
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,487,847
net_rshares0
@mahdiyari ·
$0.04
Sure. Any account.
πŸ‘  
properties (23)
authormahdiyari
permlinkred01r
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-07-01 20:39:54
last_update2022-07-01 20:39:54
depth2
children1
last_payout2022-07-08 20:39:54
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation199,858,416,089,067
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,489,450
net_rshares74,757,750,399
author_curate_reward""
vote details (1)
@borepstein ·
Thanks.

So how do I make the tokens my node mines go to my account? And how do I monitor the whole mining process?
properties (22)
authorborepstein
permlinkre-mahdiyari-red8wh
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.05.9"}
created2022-07-01 23:50:42
last_update2022-07-01 23:50:42
depth3
children0
last_payout2022-07-08 23:50:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation344,312,488,177,834
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,493,437
net_rshares0
@brando28 ·
$0.03
Very well explained. Thank you!
πŸ‘  
properties (23)
authorbrando28
permlinkrdhj1f
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-06-14 20:46:27
last_update2022-06-14 20:46:27
depth1
children0
last_payout2022-06-21 20:46:27
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation162,378,852,843,972
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,058,584
net_rshares70,528,947,275
author_curate_reward""
vote details (1)
@dalz ·
$0.29
Tnx for this .... bookmarked for future endevours.
πŸ‘  , , ,
properties (23)
authordalz
permlinkrdgtms
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-06-14 11:37:45
last_update2022-06-14 11:37:45
depth1
children0
last_payout2022-06-21 11:37:45
cashout_time1969-12-31 23:59:59
total_payout_value0.146 HBD
curator_payout_value0.147 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation1,926,088,229,945,072
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,046,395
net_rshares614,511,976,872
author_curate_reward""
vote details (4)
@doombot75 ·
$0.09
Looks like a really detailed guide, book marked for future!
πŸ‘  , ,
properties (23)
authordoombot75
permlinkrdh5uj
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-06-14 16:01:30
last_update2022-06-14 16:01:30
depth1
children0
last_payout2022-06-21 16:01:30
cashout_time1969-12-31 23:59:59
total_payout_value0.045 HBD
curator_payout_value0.045 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation11,550,009,199,205
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,052,031
net_rshares192,145,806,945
author_curate_reward""
vote details (3)
@gratitudemine ·
I am in the dark talking about Ubuntu, this has opened my eyes to making further research. Thanks.
properties (22)
authorgratitudemine
permlinkrdiniv
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-06-15 11:23:06
last_update2022-06-15 11:23:06
depth1
children0
last_payout2022-06-22 11:23:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation648,545,667,159
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,072,837
net_rshares0
@gtg ·
$1.23
I'd avoid using root user (and /root dir), one can use a dedicated account for that.
Also, for witness node avoid adding plugins other than essential (i.e. no account_by_name, etc)
It's worth to note however, that a seed node can play a simple API role (broadcast transactions, handle cli_wallet, provide get_block to simple dApps, etc, etc.)
πŸ‘  , , , , ,
properties (23)
authorgtg
permlinkrdhcbs
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-06-14 18:21:48
last_update2022-06-14 18:21:48
depth1
children0
last_payout2022-06-21 18:21:48
cashout_time1969-12-31 23:59:59
total_payout_value0.615 HBD
curator_payout_value0.615 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length342
author_reputation461,806,510,899,194
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,055,355
net_rshares2,553,398,056,663
author_curate_reward""
vote details (6)
@hivebuzz ·
Congratulations @mahdiyari! You received a personal badge!

<table><tr><td>https://images.hive.blog/70x70/http://hivebuzz.me/badges/birthday-5.png</td><td>Happy Hive Birthday! You are on the Hive blockchain for 5 years!</td></tr></table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@mahdiyari) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>


**Check out the last post from @hivebuzz:**
<table><tr><td><a href="/hive-122221/@hivebuzz/pum-calendar"><img src="https://images.hive.blog/64x128/https://i.imgur.com/5lTSuY9.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-calendar">Hive Power Month - New Tracking Calendar</a></td></tr></table>

###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22199%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/199)!
πŸ‘Ž  
properties (23)
authorhivebuzz
permlinknotify-mahdiyari-20220614t101511
categoryhive-139531
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2022-06-14 10:15:12
last_update2022-06-14 10:15:12
depth1
children0
last_payout2022-06-21 10:15:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length899
author_reputation369,628,628,636,778
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,045,057
net_rshares-86,645,816,328
author_curate_reward""
vote details (1)
@hivebuzz ·
Congratulations @mahdiyari! Your post has been a top performer on the Hive blockchain and you have been rewarded with the following badge:

<table><tr><td><img src="https://images.hive.blog/60x60/http://hivebuzz.me/badges/toppayoutday.png"></td><td>Post with the highest payout of the day.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@mahdiyari) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Check out the last post from @hivebuzz:**
<table><tr><td><a href="/hive-122221/@hivebuzz/pum-calendar"><img src="https://images.hive.blog/64x128/https://i.imgur.com/5lTSuY9.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-calendar">Hive Power Month - New Tracking Calendar</a></td></tr></table>

###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22199%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/199)!
πŸ‘Ž  
properties (23)
authorhivebuzz
permlinknotify-mahdiyari-20220615t022755
categoryhive-139531
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2022-06-15 02:27:54
last_update2022-06-15 02:27:54
depth1
children0
last_payout2022-06-22 02:27:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,075
author_reputation369,628,628,636,778
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,064,722
net_rshares-86,782,457,939
author_curate_reward""
vote details (1)
@hivediver ·
$0.03
Ubuntu is a weird recommendation. 😁
πŸ‘  
properties (23)
authorhivediver
permlinkre-mahdiyari-rdhrzu
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.05.9"}
created2022-06-14 23:59:54
last_update2022-06-14 23:59:54
depth1
children4
last_payout2022-06-21 23:59:54
cashout_time1969-12-31 23:59:59
total_payout_value0.017 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation5,049,338,871,195
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,062,488
net_rshares73,436,658,073
author_curate_reward""
vote details (1)
@ackza · (edited)
imagine a hive witness node coming pre installed to a version of ubuntu

hive linux, many have talked about it ... but imagine ...

a cd rom to mine crypto
πŸ‘  
properties (23)
authorackza
permlinkrdhxv8
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-06-15 02:06:45
last_update2022-06-15 02:07:18
depth2
children1
last_payout2022-06-22 02:06:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation287,776,574,693,472
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,064,422
net_rshares3,958,172,189
author_curate_reward""
vote details (1)
@hivediver · (edited)
Does this count as well? 😁

![hive-node-in-a-box.png](https://files.peakd.com/file/peakd-hive/hivediver/23twAKSvKBm419uzC1SZ7peAgrRNrLxfbxiG47tjjd722ifLPncpfDKZR8eKKM28K1UNR.png)

---

I would prefer a pure "from boot to bash prompt" Arch Linux installation. Just my 2c.
properties (22)
authorhivediver
permlinkre-ackza-rdihm5
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.05.9"}
created2022-06-15 09:13:18
last_update2022-06-15 09:16:54
depth3
children0
last_payout2022-06-22 09:13:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length270
author_reputation5,049,338,871,195
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,070,703
net_rshares0
@solominer ·
It's the most common distro out there 
properties (22)
authorsolominer
permlinkre-hivediver-rdkskn
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.05.9"}
created2022-06-16 15:05:12
last_update2022-06-16 15:05:12
depth2
children1
last_payout2022-06-23 15:05:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation1,826,918,730,080,905
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,102,932
net_rshares0
@hivediver ·
Sure?

![2022.06.16.distrowatch.top20.distros.last.6.months.png](https://files.peakd.com/file/peakd-hive/hivediver/23tHZEJd4nirTjS6EXCDLcPVXnjVBTtGEfiwHRReFuAhfxk1u2du3ukgDuJTcUE7mqNLw.png)

(Source: distrowatch.com)

---

Someone had to take care of the former disappointed Windows users back then. Since its introduction, Ubuntu has been the Windows of the Linux world: centralized, poorly maintained, and marred with countless traps.

I don't consider it recommendable and I refuse at all costs to touch Ubuntu systems.

But no matter. As we all know, tastes are different. 😁
properties (22)
authorhivediver
permlinkre-solominer-rdkwx1
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.05.9"}
created2022-06-16 16:39:00
last_update2022-06-16 16:39:00
depth3
children0
last_payout2022-06-23 16:39:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length578
author_reputation5,049,338,871,195
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,104,933
net_rshares0
@igormuba ·
$0.16
Awesome, that is gonna help a lot of people.

The replay may take a few days, the first time I did it it was around one week. Keep that in mind, for anyone that does that for the first time, syncing is slow.
πŸ‘  , ,
properties (23)
authorigormuba
permlinkre-mahdiyari-rdh7hc
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.05.9"}
created2022-06-14 16:36:51
last_update2022-06-14 16:36:51
depth1
children3
last_payout2022-06-21 16:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.080 HBD
curator_payout_value0.081 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length207
author_reputation128,826,081,446,669
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,052,846
net_rshares338,140,506,552
author_curate_reward""
vote details (3)
@mahdiyari ·
$0.04
Max 10-12 hours on a typically fast SSD/nvme.
πŸ‘  ,
properties (23)
authormahdiyari
permlinkre-igormuba-rdhbpt
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.05.9"}
created2022-06-14 18:08:33
last_update2022-06-14 18:08:33
depth2
children2
last_payout2022-06-21 18:08:33
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation199,858,416,089,067
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,055,054
net_rshares76,463,431,511
author_curate_reward""
vote details (2)
@igormuba ·
With a pre downloaded snapshot I assume?
properties (22)
authorigormuba
permlinkre-mahdiyari-2022614t153246433z
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-06-14 18:32:48
last_update2022-06-14 18:32:48
depth3
children1
last_payout2022-06-21 18:32:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation128,826,081,446,669
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,055,591
net_rshares0
@iqbaladan ·
$0.16
Very clear and complete with troubleshoots, but definitely requires a very large resource, is this installed on an accessible server or in the cloud? Bookmarked.
πŸ‘  , ,
properties (23)
authoriqbaladan
permlinkrdh2tc
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-06-14 14:56:09
last_update2022-06-14 14:56:09
depth1
children0
last_payout2022-06-21 14:56:09
cashout_time1969-12-31 23:59:59
total_payout_value0.082 HBD
curator_payout_value0.081 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length161
author_reputation37,079,058,336,744
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,050,386
net_rshares341,175,301,378
author_curate_reward""
vote details (3)
@kizunasport ·
$0.17
Thanks for share. 

How if i install at digital ocean? or any recommended cheap vps? 
πŸ‘  , ,
properties (23)
authorkizunasport
permlinkre-mahdiyari-2022614t181012550z
categoryhive-139531
json_metadata{"tags":["witness-update","witness","consensus","seed","node","build"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-06-14 11:10:18
last_update2022-06-14 11:10:18
depth1
children12
last_payout2022-06-21 11:10:18
cashout_time1969-12-31 23:59:59
total_payout_value0.084 HBD
curator_payout_value0.084 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation3,136,131,530,812
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,045,961
net_rshares354,585,557,370
author_curate_reward""
vote details (3)
@themarkymark ·
You will not be able to get enough disk space with vps to handle a Hive node. 
πŸ‘  
πŸ‘Ž  , , , ,
properties (23)
authorthemarkymark
permlinkre-kizunasport-rdhmq8
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.05.9"}
created2022-06-14 22:06:09
last_update2022-06-14 22:06:09
depth2
children11
last_payout2022-06-21 22:06:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation1,774,102,110,989,337
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,060,544
net_rshares-442,163,309,843
author_curate_reward""
vote details (6)
@igormuba ·
Contabo has an under $40 VPS with 60GB of ram and 1.6TB of SSD
It is shared, but it is cheap enough to empower small witnesses
properties (22)
authorigormuba
permlinkre-themarkymark-2022621t172329244z
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-06-21 20:23:30
last_update2022-06-21 20:23:30
depth3
children0
last_payout2022-06-28 20:23:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation128,826,081,446,669
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,226,260
net_rshares0
@kizunasport ·
>1TB storage**

Wow its a big disk. 
Just have $10 at digital ocean.
πŸ˜ŠπŸ˜€
properties (22)
authorkizunasport
permlinkre-themarkymark-2022617t95859731z
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-06-17 02:59:00
last_update2022-06-17 02:59:00
depth3
children0
last_payout2022-06-24 02:59:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation3,136,131,530,812
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,115,436
net_rshares0
@mengao ·
$0.04
would this work?
https://members.hostnoc.com/store/performance-vps
πŸ‘  
properties (23)
authormengao
permlinkre-themarkymark-2022614t161922670z
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-06-14 23:19:24
last_update2022-06-14 23:19:24
depth3
children8
last_payout2022-06-21 23:19:24
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation113,719,634,772,507
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,061,877
net_rshares84,581,445,120
author_curate_reward""
vote details (1)
@koussbar ·
As usual this post is very informative and detailed, I added it to my bookmarks
properties (22)
authorkoussbar
permlinkre-mahdiyari-2022615t123239698z
categoryhive-139531
json_metadata{"tags":["witness-update","witness","consensus","seed","node","build"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-06-15 11:32:39
last_update2022-06-15 11:32:39
depth1
children0
last_payout2022-06-22 11:32:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation14,885,188,233,422
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,073,020
net_rshares0
@mypathtofire ·
$0.17
Very useful guide. Thanks for sharing.
πŸ‘  , , , , , , , ,
properties (23)
authormypathtofire
permlinkre-mahdiyari-2022614t122231286z
categoryhive-139531
json_metadata{"tags":["witness-update","witness","consensus","seed","node","build"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-06-14 10:22:30
last_update2022-06-14 10:22:30
depth1
children0
last_payout2022-06-21 10:22:30
cashout_time1969-12-31 23:59:59
total_payout_value0.084 HBD
curator_payout_value0.084 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation606,092,842,227,434
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,045,229
net_rshares357,477,444,402
author_curate_reward""
vote details (9)
@optout ·
$0.03
Thank you for this.
πŸ‘  
properties (23)
authoroptout
permlinkrdhiib
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-06-14 20:35:00
last_update2022-06-14 20:35:00
depth1
children0
last_payout2022-06-21 20:35:00
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation7,426,804,158,871
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,058,347
net_rshares71,968,520,088
author_curate_reward""
vote details (1)
@princekham ·
Thank you for sharing!

!LUV
properties (22)
authorprincekham
permlinkre-mahdiyari-2022616t72332755z
categoryhive-139531
json_metadata{"tags":["witness-update","witness","consensus","seed","node","build"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-06-16 00:53:36
last_update2022-06-16 00:53:36
depth1
children1
last_payout2022-06-23 00:53:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation124,227,390,083,966
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,088,892
net_rshares0
@luvshares ·
@mahdiyari, @princekham<sub>(1/4)</sub> sent you LUV. <a href="https://peakd.com/@luvshares/about" style="text-decoration:none"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKU7oyCXxGwYyudB42kJ7JtoZ63bdeHvm4icoT9xdGNxA4i4BwudGyPvTQrEwPd.gif"></a> <a href="https://tribaldex.com/wallet/" style="text-decoration:none">wallet</a> | <a href="https://hive-engine.com/trade/LUV" style="text-decoration:none">market</a> | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://ichthys.netlify.app" style="text-decoration:none">daily</a>
<br><center>&#9888; Starting June 16, LUV will allow 3 or fewer "!" commands in a reply. <a href="https://peakd.com/hive-159259/@crrdlx/three-commands" target="_blank">Details.</a></center>
properties (22)
authorluvshares
permlinkre-re-mahdiyari-2022616t72332755z-20220616t005447z
categoryhive-139531
json_metadata"{"app": "beem/0.24.26"}"
created2022-06-16 00:54:48
last_update2022-06-16 00:54:48
depth2
children0
last_payout2022-06-23 00:54:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length921
author_reputation5,651,102,754,153
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,088,908
net_rshares0
@smooth ·
$0.35
> If you reboot the system, you have to replay the node again. Because the shared_memory.bin file is located on the ram at /dev/shm and it will be removed on reboot

It's possible to make a script that moves the file between shm and regular storage when you start and stop the node.
πŸ‘  
properties (23)
authorsmooth
permlinkrdjsq9
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-06-16 02:10:57
last_update2022-06-16 02:10:57
depth1
children0
last_payout2022-06-23 02:10:57
cashout_time1969-12-31 23:59:59
total_payout_value0.176 HBD
curator_payout_value0.176 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length282
author_reputation253,602,537,834,068
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,090,062
net_rshares696,362,009,782
author_curate_reward""
vote details (1)
@solominer ·
Is there a way to run this in a low memory mode? Like using the swap on disk for memory instead of needing 32GB of RAM.
properties (22)
authorsolominer
permlinkre-mahdiyari-rdksak
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.05.9"}
created2022-06-16 14:59:09
last_update2022-06-16 14:59:09
depth1
children1
last_payout2022-06-23 14:59:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation1,826,918,730,080,905
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,102,798
net_rshares0
@mahdiyari · (edited)
$1.68
AFAIK you need +8GB of ram (including swap) for building the hived. Other than that, you should be able to put shared_memory on disk.
You should expect a super long replay time.
πŸ‘  
properties (23)
authormahdiyari
permlinkrdl3ru
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-06-16 19:07:27
last_update2022-06-16 19:08:51
depth2
children0
last_payout2022-06-23 19:07:27
cashout_time1969-12-31 23:59:59
total_payout_value0.840 HBD
curator_payout_value0.841 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation199,858,416,089,067
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,107,734
net_rshares3,259,390,478,316
author_curate_reward""
vote details (1)
@solominer · (edited)
@mahdiyari I am trying out your guide, though I seem to be hung up at the "Run cli_wallet in offline mode and generate a pair of keys" part. 

When I run `cli_wallet -o` it comes back with unrecognised option.

Below is the full error:

`cli_wallet -o
terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<boost::program_options::unknown_option> >'
  what():  unrecognised option '-o'
`
properties (22)
authorsolominer
permlinkre-mahdiyari-rdu3vc
categoryhive-139531
json_metadata{"tags":"hive-139531"}
created2022-06-21 15:47:36
last_update2022-06-21 15:48:57
depth1
children5
last_payout2022-06-28 15:47:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length461
author_reputation1,826,918,730,080,905
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,220,631
net_rshares0
@mahdiyari ·
$1.94
Can you run cli_wallet at all?
πŸ‘  
properties (23)
authormahdiyari
permlinkrdu8er
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-06-21 17:26:00
last_update2022-06-21 17:26:00
depth2
children4
last_payout2022-06-28 17:26:00
cashout_time1969-12-31 23:59:59
total_payout_value0.972 HBD
curator_payout_value0.972 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation199,858,416,089,067
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,222,848
net_rshares3,540,104,755,876
author_curate_reward""
vote details (1)
@solominer ·
when I run it without the -o switch I get this:


Logging RPC to file: logs/rpc/rpc.log
Starting a new wallet
2849297ms main.cpp:170                  main                 ] wdata.ws_server: ws://localhost:8090
0 exception: unspecified
Underlying Transport Error
    {"message":"Underlying Transport Error"}
    websocket.cpp:444 operator()

    {"uri":"ws://localhost:8090"}
    websocket.cpp:673 connect


properties (22)
authorsolominer
permlinkre-mahdiyari-rdw1i6
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.05.9"}
created2022-06-22 16:51:45
last_update2022-06-22 16:51:45
depth3
children3
last_payout2022-06-29 16:51:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length407
author_reputation1,826,918,730,080,905
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,246,905
net_rshares0
@themarkymark ·
$0.60
I’d recommend skipping ram and using disk for shared mem these days. Performance isn’t a big difference anymore and you can freely reboot. 

With recent optimizations using ram is less critical. 
πŸ‘  , ,
πŸ‘Ž  , , ,
properties (23)
authorthemarkymark
permlinkre-mahdiyari-rdhmpc
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.05.9"}
created2022-06-14 22:05:36
last_update2022-06-14 22:05:36
depth1
children2
last_payout2022-06-21 22:05:36
cashout_time1969-12-31 23:59:59
total_payout_value0.298 HBD
curator_payout_value0.298 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length195
author_reputation1,774,102,110,989,337
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,060,534
net_rshares1,236,257,739,367
author_curate_reward""
vote details (7)
@smooth · (edited)
It's a lot more wear on the SSD and I think replay still takes somewhat longer, but I admittedly haven't timed that recently. Still might be worth it for convenience.
properties (22)
authorsmooth
permlinkrdjstp
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-06-16 02:13:00
last_update2022-06-16 02:13:15
depth2
children1
last_payout2022-06-23 02:13:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length166
author_reputation253,602,537,834,068
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,090,095
net_rshares0
@themarkymark ·
> It's a lot more wear on the SSD

Nothing significant with modern ssd/nvme and you only replay what 2-3 times a year.  
properties (22)
authorthemarkymark
permlinkre-smooth-rdjsx1
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.05.9"}
created2022-06-16 02:15:00
last_update2022-06-16 02:15:00
depth3
children0
last_payout2022-06-23 02:15:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation1,774,102,110,989,337
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,090,135
net_rshares0
@tobetada ·
$0.16
fantastic guide!

@tipu curate
πŸ‘  ,
properties (23)
authortobetada
permlinkre-mahdiyari-rdgxnr
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2022.05.9"}
created2022-06-14 13:04:39
last_update2022-06-14 13:04:39
depth1
children2
last_payout2022-06-21 13:04:39
cashout_time1969-12-31 23:59:59
total_payout_value0.082 HBD
curator_payout_value0.082 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation597,301,191,547,360
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,048,021
net_rshares343,845,186,332
author_curate_reward""
vote details (2)
@tipu ·
<a href="https://tipu.online/hive_curator?tobetada" target="_blank">Upvoted  &#128076;</a> (Mana: 3/43) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
properties (22)
authortipu
permlinkre-re-mahdiyari-rdgxnr-20220614t130445z
categoryhive-139531
json_metadata"{"app": "beem/0.24.26"}"
created2022-06-14 13:04:45
last_update2022-06-14 13:04:45
depth2
children1
last_payout2022-06-21 13:04:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length215
author_reputation55,914,851,917,880
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,048,022
net_rshares0
@ackza ·
can you self hide comments? sorta like visual version of no payout?
properties (22)
authorackza
permlinkrdhxtu
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2022-06-15 02:05:54
last_update2022-06-15 02:05:54
depth3
children0
last_payout2022-06-22 02:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation287,776,574,693,472
root_title"How to build and run a hive node - witness/seed/consensus and account history nodes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,064,412
net_rshares0