create account

Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node. by gtg

View this thread on: hive.blogpeakd.comecency.com
· @gtg ·
$83.18
Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node.
The date of the next, 21st HardFork, has been set, and it is approaching quickly.

There's plenty of info around the web on how to build a Steem node from scratch.
I also wrote a guide some time ago: [Steem Pressure #3: Steem Node 101](/@gtg/steem-pressure-3-steem-node-101).
But the trouble is that such tutorials are getting old and obsolete.

My previous one was made for version 19 at its early development stages.
Now, we have version 21 released, so it is a good opportunity for an update.

<center>
https://www.youtube.com/watch?v=7IkI6yVvzHI<sup>Video created for [Steem Pressure](https://steemit.com/created/steem-pressure) series.</sup>
</center>


# Hardware
Nothing fancy.
Actually we will use something reasonably modest and cheap.

Meet the **`mirabelle`**:
**Intel Xeon CPU W3530 @2.80GHz**
**16GB DDR3 ECC 1333MHz RAM**
**2x 240GB SSD**

# Operating system
Ubuntu 18.04 LTS

Clean, basic server install.
No fancy tweaks or customizations.
`/home` is **RAID0** because we need speed and space.
In the case of a failure, we just use a new one.

# Let's Go
Few steps needs to be done as `root`:

###### Make sure that your system is up to date:

`apt update && apt upgrade`

###### Use `ntp` or `chrony` to keep your system clock in sync:

`apt install ntp`

###### Create an account for steem purposes:

`useradd -s /bin/bash -m steem`

###### Set appropriate values for open files limits needed by MIRA:

```
cat << 'EOF' >> /etc/security/limits.conf
steem soft nofile 65535 
steem hard nofile 65535
EOF
```

![limits-conf.gif](https://cdn.steemitimages.com/DQmNdB8P3krYeCKN7nSW5EPTU2JcSRxLbSFRPgYX1qyv8CW/limits-conf.gif)

###### Install packages needed for building Steem:
```
apt install \
  automake \
  build-essential \
  cmake \
  doxygen \
  libbz2-dev \
  libboost-date-time-dev \
  libboost-chrono-dev \
  libboost-context-dev \
  libboost-coroutine-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 \
  libreadline-dev \
  libsnappy-dev \
  libssl-dev \
  libtool \
  ncurses-dev
```

###### Now we continue as a user `steem`:

`su - steem`

###### Clone the steem repository:

`git clone https://github.com/steemit/steem`

###### Checkout the latest release:

`cd steem`
`git checkout v0.21.0`

###### Create build directory:

`mkdir ~/build`

###### Configure steem build:

`cd ~/build`
```
cmake -DCMAKE_BUILD_TYPE=Release \
  -DLOW_MEMORY_NODE=ON \
  -DCLEAR_VOTES=ON \
  -DSKIP_BY_TX_ID=OFF \
  -DENABLE_MIRA=ON \
  -DSTEEM_STATIC_BUILD=ON \
  ../steem
```

![git-checkout-cmake.gif](https://cdn.steemitimages.com/DQmer9Kr9r3TgxJZVmoKTx4xPHuf8pZh3iYimrKULfjCGSL/git-checkout-cmake.gif)

##### Build `steemd`:

`make -j4 steemd`

![build-steemd.gif](https://cdn.steemitimages.com/DQmUGjqx58Q68SYQAYi3aGZksXuy3LNbzUmzpUG9TTta238/build-steemd.gif)

###### Build `cli_wallet`:

`make -j4 cli_wallet`

###### Create local bin directory for convenience:

`mkdir ~/bin`

###### Copy `steemd` and `cli_wallet` binaries to local bin directory:

`cp -v ~/build/programs/steemd/steemd ~/bin`
`cp -v ~/build/programs/cli_wallet/cli_wallet ~/bin`

###### Congratulations!

`~/bin/steemd --version`

Now you have required binaries.
Time to configure and run your node.

###### Create proper directory tree:

`mkdir -pv ~/.steemd/blockchain`

###### Create minimalistic config file for consensus node:

```
cat << 'EOF' >> ~/.steemd/config.ini
plugin = witness
plugin = condenser_api network_broadcast_api block_api
webserver-http-endpoint = 127.0.0.1:8090
webserver-ws-endpoint = 127.0.0.1:8090
EOF
```

![config-ini.gif](https://cdn.steemitimages.com/DQmfJxAnAk2jvJMEoo3U3ivLDhie3vPvXxmSU8RfFLMrYcQ/config-ini.gif)

Yes, you really don't need more than that for a very basic node defaults are OK.

To speed up reaching the head block:
###### Download blocks from a trusted source:

```
wget https://gtg.steem.house/get/blockchain/block_log \
  -O ~/.steemd/blockchain/block_log
```

![block_log.gif](https://cdn.steemitimages.com/DQmU7ctGwLErG6D3dTXyFeRgGxes3zXqq9KEXP52bvT1645/block_log.gif)

###### Now run:
`~/bin/steemd --replay`
and have fun!

This configuration is expected to reach the head block within 72 hours.

# Footnotes:
- You might want to run above inside `screen`.
- Once it replays all the blocks from `block_log`, it will sync with Steem p2p network up to the head block and continue running.
- Next time start `steemd` without `--replay`. You need to do that only if your changes will affect the state (such as adding or re-configuring plugins).
- You might want to add `account_by_key` (for `cli_wallet`’s `list_my_accounts` feature) and `account_history` (to track your own account history) but in this guide I wanted to focus on a simplest case.
- You need to wait for replay to complete before you can use API endpoint.


# Previous episodes of Steem Pressure series

[Introducing: Steem Pressure #1](/@gtg/introducing-steem-pressure-1)
[Steem Pressure #2 - Toys for Boys and Girls](/@gtg/steem-pressure-2-toys-for-boys-and-girls)
[Steem Pressure #3 - Steem Node 101](/@gtg/steem-pressure-3-steem-node-101)
[Steem Pressure: The Movie ;-)](/@gtg/steem-pressure-the-movie)
[Steem Pressure #4 - Need for Speed](/@gtg/steem-pressure-4-need-for-speed)
[Steem Pressure #5 - Run, Block, Run!](/@gtg/steem-pressure-5-run-block-run)
[Steem Pressure #6 - MIRA: YMMV, RTFM, TLDR: LGTM](/@gtg/steem-pressure-6-mira-ymmv-rtfm-tldr-lgtm)
Stay tuned for next episodes of Steem Pressure :-)

---
<sup>
If you believe I can be of value to Steem, please vote for me ([**gtg**](/@gtg)) as a witness on [Steemit's Witnesses List](https://steemitwallet.com/~witnesses) or set ([**gtg**](/@gtg)) as a proxy that will vote for witnesses for you.
***Your vote does matter!***
You can contact me directly on [steem.chat](https://steem.chat), as [Gandalf](https://steem.chat/direct/gandalf)
</sup>
<center>
https://steemitimages.com/DQmSheuDfCHizk1xvHPcrFjQNKfBzgun9UXDxdEp6JJCum9/steem_wide.png
[Steem On](/)
</center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 404 others
👎  ,
properties (23)
authorgtg
permlinksteem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node
categorysteem-pressure
json_metadata{"tags":["steem-pressure","steem","dev","witness-category","palnet"],"image":["https://img.youtube.com/vi/7IkI6yVvzHI/0.jpg","https://cdn.steemitimages.com/DQmNdB8P3krYeCKN7nSW5EPTU2JcSRxLbSFRPgYX1qyv8CW/limits-conf.gif","https://cdn.steemitimages.com/DQmer9Kr9r3TgxJZVmoKTx4xPHuf8pZh3iYimrKULfjCGSL/git-checkout-cmake.gif","https://cdn.steemitimages.com/DQmUGjqx58Q68SYQAYi3aGZksXuy3LNbzUmzpUG9TTta238/build-steemd.gif","https://cdn.steemitimages.com/DQmfJxAnAk2jvJMEoo3U3ivLDhie3vPvXxmSU8RfFLMrYcQ/config-ini.gif","https://cdn.steemitimages.com/DQmU7ctGwLErG6D3dTXyFeRgGxes3zXqq9KEXP52bvT1645/block_log.gif","https://steemitimages.com/DQmSheuDfCHizk1xvHPcrFjQNKfBzgun9UXDxdEp6JJCum9/steem_wide.png"],"links":["/@gtg/steem-pressure-3-steem-node-101","https://www.youtube.com/watch?v=7IkI6yVvzHI","https://steemit.com/created/steem-pressure","/@gtg/introducing-steem-pressure-1","/@gtg/steem-pressure-2-toys-for-boys-and-girls","/@gtg/steem-pressure-the-movie","/@gtg/steem-pressure-4-need-for-speed","/@gtg/steem-pressure-5-run-block-run","/@gtg/steem-pressure-6-mira-ymmv-rtfm-tldr-lgtm","/@gtg","https://steemitwallet.com/~witnesses","https://steem.chat","https://steem.chat/direct/gandalf","/"],"app":"steemit/0.1","format":"markdown"}
created2019-08-15 21:36:03
last_update2019-08-15 21:36:03
depth0
children53
last_payout2019-08-22 21:36:03
cashout_time1969-12-31 23:59:59
total_payout_value63.538 HBD
curator_payout_value19.637 HBD
pending_payout_value0.000 HBD
promoted0.220 HBD
body_length6,102
author_reputation461,802,207,065,183
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,573,984
net_rshares251,736,241,949,793
author_curate_reward""
vote details (470)
@adedapo-glory ·
$0.01
Everybody is looking forward to the date and the kickstart of the 21 hardfork and I must say, majority people can't wait
👍  
properties (23)
authoradedapo-glory
permlinkre-gtg-pwbker
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steempeak/1.14.15"}
created2019-08-16 07:49:39
last_update2019-08-16 07:49:39
depth1
children2
last_payout2019-08-23 07:49:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation7,560,346,790,935
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries
0.
accountlikwid
weight10,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,588,345
net_rshares147,778,054,855
author_curate_reward""
vote details (1)
@gtg ·
True effects of HF21 will not be instant. It might take a month or two before people will adjust their habits.
properties (22)
authorgtg
permlinkpwbqn3
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-16 10:04:15
last_update2019-08-16 10:04:15
depth2
children0
last_payout2019-08-23 10:04:15
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_length110
author_reputation461,802,207,065,183
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,591,333
net_rshares0
@likwid ·
likwid-comment-1566546657056
This post earned a total payout of 0.041$ and 0.031$ worth of author reward which was liquified using @likwid. [To learn more.](https://steemit.com/steem/@likwid/announcing-likwid-the-reward-liquifier)

properties (22)
authorlikwid
permlinklikwid-comment-re-gtg-pwbker
categorysteem-pressure
json_metadata{"app":"likwid"}
created2019-08-23 07:50:57
last_update2019-08-23 07:50:57
depth2
children0
last_payout2019-08-30 07:50:57
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_length203
author_reputation36,087,507,440,149
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries
0.
accountsteemium.vote
weight10,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,853,032
net_rshares0
@ajks ·
Can I start one with dule core 8 gb ram and 500gb hard drive

Posted using [Partiko Android](https://partiko.app/referral/ajks)
properties (22)
authorajks
permlinkajks-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190816t141948380z
categorysteem-pressure
json_metadata{"app":"partiko","client":"android"}
created2019-08-16 14:19:48
last_update2019-08-16 14:19:48
depth1
children5
last_payout2019-08-23 14:19: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_length127
author_reputation80,793,116,826,740
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,598,644
net_rshares0
@gtg ·
All depends on details. 8GB RAM itself wouldn't be that bad but you will experience much higher replay times, especially when your drive is a platter drive, i.e. not SSD.
properties (22)
authorgtg
permlinkpwc5cm
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-16 15:22:00
last_update2019-08-16 15:22:00
depth2
children4
last_payout2019-08-23 15:22: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_length170
author_reputation461,802,207,065,183
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,600,482
net_rshares0
@netuoso ·
$0.10
Why do you think 8GB RAM would limit replay speed? When I was replaying my MIRA node, the RAM usage stayed below 3GB the entire time.

I used a platter HDD as well and my replay time was roughly 5 days.
👍  
properties (23)
authornetuoso
permlinkpwcm0o
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-16 21:22:00
last_update2019-08-16 21:22:00
depth3
children3
last_payout2019-08-23 21:22:00
cashout_time1969-12-31 23:59:59
total_payout_value0.075 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length202
author_reputation151,901,967,807,285
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,611,067
net_rshares299,965,368,276
author_curate_reward""
vote details (1)
@anthonyadavisii ·
If I set up a node in this fashion, would I be able to execute RPC calls against it using Beem? I specifically believe I need the reward API from previous discussions.

I would guess I would not be needing condenser in that case. My intent is to test the SFR bot at some point and explore a mechanism so reward flags different coming from downvote mana.


Any thoughts / guidance would be appreciated.

Posted using [Partiko Android](https://partiko.app/referral/anthonyadavisii)
👍  , ,
👎  ,
properties (23)
authoranthonyadavisii
permlinkanthonyadavisii-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190816t190137243z
categorysteem-pressure
json_metadata{"app":"partiko","client":"android"}
created2019-08-16 19:01:36
last_update2019-08-16 19:01:36
depth1
children3
last_payout2019-08-23 19:01: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_length479
author_reputation212,565,147,344,592
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,607,500
net_rshares38,104,444,595
author_curate_reward""
vote details (5)
@gtg ·
While you can use it to perform some calls, LOW_MEMORY_NODE might not be enough for you. Please note that `rewards_api` is for testing purpose only, and explicitly said that it's not meant for use in production.
properties (22)
authorgtg
permlinkpwcisp
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-16 20:12:27
last_update2019-08-16 20:12:27
depth2
children2
last_payout2019-08-23 20:12:27
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_length211
author_reputation461,802,207,065,183
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,609,446
net_rshares0
@anthonyadavisii ·
I may be getting the API needed confused in that case.

Our bot does approximate flag rshares to SBD conversions using methods of the Beem Steem class for it's voting.

Looks like the method uses get_sbd_per_rshares which calls get_reward_fund. That uses the database API if I am understanding correctly.

That should be fine, right?

Posted using [Partiko Android](https://partiko.app/referral/anthonyadavisii)
👍  
properties (23)
authoranthonyadavisii
permlinkanthonyadavisii-re-gtg-pwcisp-20190816t204547531z
categorysteem-pressure
json_metadata{"app":"partiko","client":"android"}
created2019-08-16 20:45:48
last_update2019-08-16 20:45:48
depth3
children1
last_payout2019-08-23 20:45: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_length411
author_reputation212,565,147,344,592
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,610,246
net_rshares5,343,532,197
author_curate_reward""
vote details (1)
@apshamilton ·
$0.17
Thanks. I’ve been looking for an updated Steem Node setup guide.  If I have a much more powerful machine with 128Gb RAM what can I add to make it a full node?

Posted using [Partiko iOS](https://partiko.app/referral/apshamilton)
👍  , , , , ,
properties (23)
authorapshamilton
permlinkapshamilton-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190816t032240338z
categorysteem-pressure
json_metadata{"app":"partiko","client":"ios"}
created2019-08-16 03:22:42
last_update2019-08-16 03:22:42
depth1
children1
last_payout2019-08-23 03:22:42
cashout_time1969-12-31 23:59:59
total_payout_value0.130 HBD
curator_payout_value0.041 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length228
author_reputation212,404,184,641,750
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,581,978
net_rshares519,360,245,686
author_curate_reward""
vote details (6)
@gtg ·
I wouldn't recommend using "full node" anymore, i.e. monolithic instance.
I would rather use fat node and low mem node of AH - your machine might be good for one of those. Adding Hivemind and Jussi there, will make it pretty nice set to satisfy full API needs.
properties (22)
authorgtg
permlinkpwbsvs
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-16 10:52:42
last_update2019-08-16 10:52:42
depth2
children0
last_payout2019-08-23 10:52: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_length260
author_reputation461,802,207,065,183
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,592,502
net_rshares0
@arcange ·
Congratulations @gtg!
Your post was mentioned in the [Steem Hit Parade](/hit-parade/@arcange/daily-hit-parade-20190815) in the following category:

* Pending payout - Ranked 3 with $ 80,84
properties (22)
authorarcange
permlinkre-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190815t180430000z
categorysteem-pressure
json_metadata""
created2019-08-16 16:05:36
last_update2019-08-16 16:05:36
depth1
children0
last_payout2019-08-23 16:05: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_length189
author_reputation1,146,611,356,767,317
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,601,914
net_rshares0
@beerlover ·
<div class='pull-right'>https://cdn.steemitimages.com/DQmYkG41gp3ErZYnX8pnHdDg1tMHmN73dsxDdxxQiijWZo6/beer%20into%20glass%20small.gif<p><sup>To view or trade <code>BEER</code> go to <a href='https://steem-engine.com/?p=market&t=BEER'>steem-engine.com</a>.</sup></p></div><center>  <img src='https://cdn.steemitimages.com/DQmY5cLULnVCSrQ5f8x6FaK5RL4CsGqtuCbGG1WZrW2fY9J/beertoken%20by%20beerlover.png' />  <p> Hey @gtg, here is your <code>BEER</code> token. Enjoy it!</p> Do you  already know our [BEER Crowdfunding](https://steemit.com/cryptocurrency/@beerlover/let-s-grow-and-update-the-beer-token-huge-crowndfunding-as-crowdsale)   </center>
👎  
properties (23)
authorbeerlover
permlinkre-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190816t064307z
categorysteem-pressure
json_metadata"{"app": "beem/0.20.23"}"
created2019-08-16 06:43:09
last_update2019-08-16 06:43:09
depth1
children0
last_payout2019-08-23 06:43: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_length643
author_reputation25,781,827,182,727
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,586,800
net_rshares-6,861,388,806
author_curate_reward""
vote details (1)
@blockchainstudio · (edited)
> Go fork yourself

lol
properties (22)
authorblockchainstudio
permlinkre-gtg-pwath3
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steempeak/1.14.15"}
created2019-08-15 22:07:54
last_update2019-08-15 22:08:12
depth1
children0
last_payout2019-08-22 22:07: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_length23
author_reputation178,988,499,015,921
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,574,788
net_rshares0
@cryptogecko ·
$0.24
So if a full-fledged system is to be made from the instructions you have given here, how much time would it take for it to be made available to the public and what about the security of the chain?
👍  ,
properties (23)
authorcryptogecko
permlinkpwbm7d
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-16 08:28:24
last_update2019-08-16 08:28:24
depth1
children3
last_payout2019-08-23 08:28:24
cashout_time1969-12-31 23:59:59
total_payout_value0.180 HBD
curator_payout_value0.060 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length196
author_reputation11,027,655,257,721
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,589,218
net_rshares714,113,193,194
author_curate_reward""
vote details (2)
@forykw ·
its not a standard thing...everyone will have its "crazy" things... I for example, would be more enterprise model... if I had the money to support it. Not that I could not do it with what I have (which I have done in the past)...

Everything depends... ask something more specific, and I might be able to shed some more light. If that's where you want to go.
properties (22)
authorforykw
permlinkre-cryptogecko-2019818t11929235z
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"esteem/2.2.0-surfer","format":"markdown+html","community":"esteem.app"}
created2019-08-17 13:19:30
last_update2019-08-17 13:19:30
depth2
children0
last_payout2019-08-24 13:19: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_length358
author_reputation93,000,233,999,224
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,631,598
net_rshares0
@gtg · (edited)
In this configuration node will not be available to the public in other means than just being a part of Steem p2p network. It's a consensus node. In this configuration it can serve you as a simple API node (with subset of supported API calls), you can use it for example to broadcast transactions to the network.

To turn it into a public seed node, you need to add:
`p2p-endpoint = 0.0.0.0:2001`
which will make it to listen on all interfaces on port 2001 (default p2p port for Steem)
and then let people know on a steem.chat's [#seed-nodes](https://steem.chat/channel/seed-nodes) channel that a new seed-node is in town ;-)
Static IP is required and some reliable hostname is obviously good to have.

It will take about 72 hours using that example hardware/software configuration to reach the head block.

When it finish replaying, its API endpoint will be available. You can use some proxy with SSL termination to make it available to the public too, but keep in mind that API is limited.

Such node might improve distribution of the system but it doesn't play the same role as in PoW networks.
properties (22)
authorgtg
permlinkpwbs7w
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"links":["https://steem.chat/channel/seed-nodes"],"app":"steemit/0.1"}
created2019-08-16 10:38:21
last_update2019-08-16 10:42:57
depth2
children1
last_payout2019-08-23 10:38:21
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,097
author_reputation461,802,207,065,183
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,592,187
net_rshares0
@forykw · (edited)
Hoping this to change a bit on the next SMT model...
properties (22)
authorforykw
permlinkre-gtg-2019818t12023867z
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"esteem/2.2.0-surfer","format":"markdown+html","community":"esteem.app"}
created2019-08-17 13:20:24
last_update2019-08-17 13:20:39
depth3
children0
last_payout2019-08-24 13:20:24
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_length52
author_reputation93,000,233,999,224
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,631,627
net_rshares0
@distantsignal ·
$0.05
Thank you for this!  I swear I’m gonna do this someday!  

Posted using [Partiko iOS](https://partiko.app/referral/distantsignal)
👍  
properties (23)
authordistantsignal
permlinkdistantsignal-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190816t003224380z
categorysteem-pressure
json_metadata{"app":"partiko","client":"ios"}
created2019-08-16 00:32:24
last_update2019-08-16 00:32:24
depth1
children0
last_payout2019-08-23 00:32:24
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation32,496,313,953,302
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,578,297
net_rshares148,114,808,351
author_curate_reward""
vote details (1)
@donald.porter ·
$0.05
Perfect timing 👨🏾‍🚀👍🏽

can get @reggaesteem node up asap 

🍻!BEER

Posted using [Partiko iOS](https://partiko.app/referral/donald.porter)
👍  
properties (23)
authordonald.porter
permlinkdonald-porter-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190816t064256073z
categorysteem-pressure
json_metadata{"app":"partiko","client":"ios"}
created2019-08-16 06:42:57
last_update2019-08-16 06:42:57
depth1
children1
last_payout2019-08-23 06:42:57
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length137
author_reputation49,170,706,460,625
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,586,797
net_rshares148,137,157,402
author_curate_reward""
vote details (1)
@gtg ·
It's good to start with a public seed node and try to keep it up and running.
To make your seed node available to general public you will need to add:
`p2p-endpoint = 0.0.0.0:2001`
and let people know on a steem.chat's [#seed-nodes](https://steem.chat/channel/seed-nodes) channel that a new seed-node is in town ;-)
Static IP is required and some reliable hostname is preferred. 
(above is true for public **seed node**)
properties (22)
authorgtg
permlinkpwbrkz
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"links":["https://steem.chat/channel/seed-nodes"],"app":"steemit/0.1"}
created2019-08-16 10:24:36
last_update2019-08-16 10:24:36
depth2
children0
last_payout2019-08-23 10:24: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_length420
author_reputation461,802,207,065,183
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,591,800
net_rshares0
@drakos ·
$0.05
1333MHz RAM 😲
👍  , ,
properties (23)
authordrakos
permlinkpwatha
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-15 22:08:00
last_update2019-08-15 22:08:00
depth1
children2
last_payout2019-08-22 22:08:00
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation112,280,226,665,329
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,574,791
net_rshares150,577,240,453
author_curate_reward""
vote details (3)
@gtg ·
> something reasonably modest and cheap

:-)
properties (22)
authorgtg
permlinkpwbrnt
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-16 10:26:18
last_update2019-08-16 10:26:18
depth2
children1
last_payout2019-08-23 10:26: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_length44
author_reputation461,802,207,065,183
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,591,849
net_rshares0
@forykw ·
very! indeed.... I could get tons of it... but I would not have power enough to support it.
properties (22)
authorforykw
permlinkre-gtg-2019818t12138278z
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"esteem/2.2.0-surfer","format":"markdown+html","community":"esteem.app"}
created2019-08-17 13:21:39
last_update2019-08-17 13:21:39
depth3
children0
last_payout2019-08-24 13:21: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_length91
author_reputation93,000,233,999,224
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,631,656
net_rshares0
@enjoykarma ·
$0.05
..sounds like being possible also for me (one day..)..thx..up..follow you..
👍  
properties (23)
authorenjoykarma
permlinkpwaxug
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-15 23:42:18
last_update2019-08-15 23:42:18
depth1
children0
last_payout2019-08-22 23:42:18
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation7,215,770,466,128
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,577,138
net_rshares148,090,476,590
author_curate_reward""
vote details (1)
@forykw · (edited)
$0.04
I would use a hybrid RAID0 NVMe with RAID5/6 disks... but not recommended on Ubuntu... CentOS or RedHAT 100% ok! =) Tested. With snapshots backups daily and MANY recovery tests ...
👍  
properties (23)
authorforykw
permlinkre-gtg-2019818t11244581z
categorysteem-pressure
json_metadata{"tags":["steem-pressure","steem","dev","witness-category","palnet"],"app":"esteem/2.2.0-surfer","format":"markdown+html","community":"esteem.app"}
created2019-08-17 13:12:45
last_update2019-08-17 13:14:18
depth1
children2
last_payout2019-08-24 13:12:45
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length180
author_reputation93,000,233,999,224
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,631,452
net_rshares141,595,412,515
author_curate_reward""
vote details (1)
@gtg ·
Doesn't make much sense when it comes to simple consensus node.
That one is just cheap and simple.
What exactly is not recommended on Ubuntu, and why?
properties (22)
authorgtg
permlinkpwdykf
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-17 14:50:39
last_update2019-08-17 14:50:39
depth2
children1
last_payout2019-08-24 14:50: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_length150
author_reputation461,802,207,065,183
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,634,205
net_rshares0
@forykw · (edited)
cached LVM filesystems... to be specific! Lots of bugs! Especially on converts and recovery situations... and if you don't use extX filesystems even worse...
properties (22)
authorforykw
permlinkre-gtg-2019818t25453740z
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"esteem/2.2.0-surfer","format":"markdown+html","community":"esteem.app"}
created2019-08-17 14:54:54
last_update2019-08-17 14:57:48
depth3
children0
last_payout2019-08-24 14:54: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_length157
author_reputation93,000,233,999,224
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,634,330
net_rshares0
@furion ·
$0.72
I would be interested to see benchmarks on the new AMD Epyc chips...
👍  
properties (23)
authorfurion
permlinkpwgnpk
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-19 01:48:57
last_update2019-08-19 01:48:57
depth1
children4
last_payout2019-08-26 01:48:57
cashout_time1969-12-31 23:59:59
total_payout_value0.722 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation116,503,940,714,958
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,684,712
net_rshares2,826,792,477,309
author_curate_reward""
vote details (1)
@gtg ·
Unfortunately I don't have such hardware available. Ideally it will be same disks, similar RAM setup, and just a difference with CPU/MB vs some high performance Intel setup.

PS
Please take a look at your node, it's missing blocks and it will continue as there's no longer witness shutdown vop in place due to 51% escalation issue, so the only way currently to disable it, is operator nullifying signing key.
👍  
properties (23)
authorgtg
permlinkpwgzym
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-19 06:13:33
last_update2019-08-19 06:13:33
depth2
children3
last_payout2019-08-26 06:13: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_length408
author_reputation461,802,207,065,183
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,690,715
net_rshares0
author_curate_reward""
vote details (1)
@furion ·
$0.35
Oh, I didn't know that. I'll shut it down.
👍  
properties (23)
authorfurion
permlinkpwweju
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-27 13:52:42
last_update2019-08-27 13:52:42
depth3
children2
last_payout2019-09-03 13:52:42
cashout_time1969-12-31 23:59:59
total_payout_value0.350 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation116,503,940,714,958
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,010,062
net_rshares2,828,098,382,931
author_curate_reward""
vote details (1)
@gtg · (edited)
$1.09
For the record:
Replayed `35538728` blocks in `75h:51m:36s`
Then it had to catch up `98913` blocks that were generated in the meantime.
That took another `31m:45s`
So in total it took `76h:23m:21s`

Also:
`steem@mirabelle:~/.steemd/blockchain$ du -csh *`

```
215G    block_log
273M    block_log.index
269M    rocksdb_account_authority_object
14M     rocksdb_account_history_object
14M     rocksdb_account_metadata_object
406M    rocksdb_account_object
32M     rocksdb_account_recovery_request_object
27M     rocksdb_block_summary_object
25M     rocksdb_change_recovery_account_request_object
14M     rocksdb_comment_content_object
20G     rocksdb_comment_object
263M    rocksdb_comment_vote_object
53M     rocksdb_convert_request_object
18M     rocksdb_decline_voting_rights_request_object
31M     rocksdb_dynamic_global_property_object
21M     rocksdb_escrow_object
24M     rocksdb_feed_history_object
13M     rocksdb_hardfork_property_object
75M     rocksdb_limit_order_object
19M     rocksdb_liquidity_reward_balance_object
17M     rocksdb_operation_object
39M     rocksdb_owner_authority_history_object
14M     rocksdb_pending_optional_action_object
14M     rocksdb_pending_required_action_object
27M     rocksdb_proposal_object
17M     rocksdb_proposal_vote_object
84M     rocksdb_rc_account_object
14M     rocksdb_rc_pool_object
11M     rocksdb_rc_resource_param_object
24M     rocksdb_reward_fund_object
70M     rocksdb_savings_withdraw_object
24M     rocksdb_transaction_object
47M     rocksdb_vesting_delegation_expiration_object
85M     rocksdb_vesting_delegation_object
35M     rocksdb_withdraw_vesting_route_object
14M     rocksdb_witness_custom_op_object
6.9G    rocksdb_witness_object
24M     rocksdb_witness_schedule_object
83M     rocksdb_witness_vote_object
244G    total
```
👍  , , ,
properties (23)
authorgtg
permlinkpwei1t
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-17 21:51:30
last_update2019-08-18 20:29:18
depth1
children0
last_payout2019-08-24 21:51:30
cashout_time1969-12-31 23:59:59
total_payout_value0.930 HBD
curator_payout_value0.161 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,793
author_reputation461,802,207,065,183
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,645,227
net_rshares3,654,855,998,305
author_curate_reward""
vote details (4)
@guiltyparties ·
I've been re-forking myself for over a week now, hoping to finish it up one century soon.
👍  
👎  
properties (23)
authorguiltyparties
permlinkpwd2r1
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-17 03:21:42
last_update2019-08-17 03:21:42
depth1
children0
last_payout2019-08-24 03:21: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_length89
author_reputation261,203,126,670,124
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,618,381
net_rshares-259,482,882,398
author_curate_reward""
vote details (2)
@isnochys ·
Max open files on my node is 5mil.
Still the mira replay crashes at 5%.
Too many open files. 
0.21.9 did run smoothly though:(
properties (22)
authorisnochys
permlinkpx3d6f
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-31 08:06:18
last_update2019-08-31 08:06:18
depth1
children2
last_payout2019-09-07 08:06: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_length126
author_reputation48,458,921,588,264
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,132,896
net_rshares0
@gtg ·
Could you please show some logs / configs?
Either here or on Steem.Chat
(and please be patient)
properties (22)
authorgtg
permlinkpx3jwm
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-31 10:31:36
last_update2019-08-31 10:31:36
depth2
children1
last_payout2019-09-07 10:31: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_length95
author_reputation461,802,207,065,183
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,135,905
net_rshares0
@isnochys ·
Did upgrade ulimit - n 65536
And doing currently a block log download and replay. 
8 hours to go. 
We will see.. 

I am now 4 days in, without a working witness node, I think I am patient. :)
properties (22)
authorisnochys
permlinkpx3kfi
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-31 10:42:57
last_update2019-08-31 10:42:57
depth3
children0
last_payout2019-09-07 10:42:57
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_length191
author_reputation48,458,921,588,264
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,136,123
net_rshares0
@javiersebastian ·
$0.05
Thanks. I would love to set a node someday. Maybe today? ;)
👍  
properties (23)
authorjaviersebastian
permlinkre-gtg-pwasfn
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steempeak/1.14.15"}
created2019-08-15 21:45:24
last_update2019-08-15 21:45:24
depth1
children0
last_payout2019-08-22 21:45:24
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation16,944,522,773,682
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,574,212
net_rshares148,043,719,865
author_curate_reward""
vote details (1)
@kharma.scribbles ·
$0.05
What the heck is the purpose for a witness proxy?

Off-topic yes, but maybe an idea for you to do a witness episode?

Anyways, this was an awesome and super easy step-by step! Thanks!
👍  
properties (23)
authorkharma.scribbles
permlinkre-gtg-pwb5l1
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steempeak/1.14.15"}
created2019-08-16 02:29:30
last_update2019-08-16 02:29:30
depth1
children2
last_payout2019-08-23 02:29:30
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation4,988,835,934,532
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,580,946
net_rshares148,035,958,720
author_curate_reward""
vote details (1)
@gtg ·
Witness proxy is an account that you chose to vote for witnesses on your behalf.
It's meant for people that don't pay that much of attention to what's going on with witnesses and are comfortable trusting their witness proxy to make those choices for them.
So if you set someone to be  your witness proxy, whenever they decide to approve or unapprove some witness, your votes will be exactly the same.
👍  
properties (23)
authorgtg
permlinkpwbraj
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-16 10:18:21
last_update2019-08-16 10:18:21
depth2
children1
last_payout2019-08-23 10:18:21
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_length400
author_reputation461,802,207,065,183
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,591,670
net_rshares614,713,341
author_curate_reward""
vote details (1)
@kharma.scribbles ·
Great explanation!  I love that you included a use case, thank you!
properties (22)
authorkharma.scribbles
permlinkre-gtg-pwbt5q
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steempeak/1.14.15"}
created2019-08-16 10:58:42
last_update2019-08-16 10:58:42
depth3
children0
last_payout2019-08-23 10:58: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_length67
author_reputation4,988,835,934,532
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,592,611
net_rshares0
@paulag ·
$0.05
Nice to see a new steem pressure post. I wonder how many new witnesses there will be and how many will stop over the next year.

Posted using [Partiko Android](https://partiko.app/referral/paulag)
👍  
properties (23)
authorpaulag
permlinkpaulag-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190816t180755899z
categorysteem-pressure
json_metadata{"app":"partiko","client":"android"}
created2019-08-16 18:07:57
last_update2019-08-16 18:07:57
depth1
children0
last_payout2019-08-23 18:07:57
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length196
author_reputation274,264,287,951,003
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,606,003
net_rshares141,452,111,927
author_curate_reward""
vote details (1)
@schlafhacking ·
$0.05
Amazing howto, amazing title. Forking myself in the next days. ☕️😃

Posted using [Partiko iOS](https://partiko.app/referral/schlafhacking)
👍  
properties (23)
authorschlafhacking
permlinkschlafhacking-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190815t230856168z
categorysteem-pressure
json_metadata{"app":"partiko","client":"ios"}
created2019-08-15 23:08:57
last_update2019-08-15 23:08:57
depth1
children0
last_payout2019-08-22 23:08:57
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation15,067,517,752,330
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,576,312
net_rshares148,065,013,286
author_curate_reward""
vote details (1)
@solominer ·
$0.07
@gtg great to see guides coming out to set up MIRA. Loving the console animations.

Posted using [Partiko Android](https://partiko.app/referral/solominer)
👍  ,
properties (23)
authorsolominer
permlinksolominer-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190820t093632694z
categorysteem-pressure
json_metadata{"app":"partiko","client":"android"}
created2019-08-20 09:36:33
last_update2019-08-20 09:36:33
depth1
children0
last_payout2019-08-27 09:36:33
cashout_time1969-12-31 23:59:59
total_payout_value0.054 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation1,824,789,967,019,646
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,735,873
net_rshares215,109,565,678
author_curate_reward""
vote details (2)
@steem2100 ·
Looking forward for an updated Steem Node setup guide !!!!!!
👍  
👎  
properties (23)
authorsteem2100
permlinkpwbv81
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-16 11:43:18
last_update2019-08-16 11:43:18
depth1
children1
last_payout2019-08-23 11:43: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_length60
author_reputation86,129,611,382
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,593,868
net_rshares-13,230,023,465
author_curate_reward""
vote details (2)
@gtg ·
Maybe you should look backward then? ;-) That's the guide you are looking for.
properties (22)
authorgtg
permlinkpwbwfx
categorysteem-pressure
json_metadata{"tags":["steem-pressure"],"app":"steemit/0.1"}
created2019-08-16 12:09:33
last_update2019-08-16 12:09:33
depth2
children0
last_payout2019-08-23 12:09: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_length78
author_reputation461,802,207,065,183
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,594,583
net_rshares0
@verifyme ·
@gtg You have received a 100% upvote from @intro.bot because this post did not use any bidbots and you have not used bidbots in the last 30 days!

Upvoting this comment will help keep this service running.
properties (22)
authorverifyme
permlinkre-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-gtg-verifyme-randomvote
categorysteem-pressure
json_metadata{"tags":["verifyme","random-upvote"],"users":["gtg","intro.bot"],"app":"null/null","format":"markdown"}
created2019-08-17 12:29:09
last_update2019-08-17 12:29:09
depth1
children0
last_payout2019-08-24 12:29: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_length207
author_reputation-705,247,747,464
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,630,335
net_rshares0
@witnessnews ·
This post has been resteemed by @witnessnews.  

**Follow @witnessnews** to keep up with active witness updates.
properties (22)
authorwitnessnews
permlinkre-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190815t213620z
categorysteem-pressure
json_metadata"{"app": "beem/0.20.22"}"
created2019-08-15 21:36:21
last_update2019-08-15 21:36:21
depth1
children0
last_payout2019-08-22 21:36:21
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_length112
author_reputation-327,653,346,252
root_title"Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,573,998
net_rshares0