create account

The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box) by someguy123

View this thread on: hive.blogpeakd.comecency.com
· @someguy123 · (edited)
$99.47
The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)
On September 25th 2018, if 17 of the top 20 witnesses (including the current 21st backup witness) are running HF20, the chain will officially hard fork, which will cause any witnesses not running HF20 to be unable to produce blocks. Other nodes such as seeds and RPC nodes may lose connectivity to the network.

As HF20 (v0.20.0) is now available, it's strongly recommended for all witnesses, seeds, and RPC nodes to update prior to the hardfork date (sep 25 2018).

<center>![](https://cdn.steemitimages.com/DQmYnW6uRhezd33jfWZu1RQ1nNyrAk8nHXvH6thHfyJS3L9/image.png)</center>

## What's new in Steem-in-a-box?

Many improvements have been made to Steem-in-a-box, including an [in depth README](https://github.com/someguy123/steem-docker) containing many configuration options for advanced users, such as:

 - `SHM_DIR` to place shared_memory somewhere other than /dev/shm
 - `DK_TAG` for installing alternative docker images (e.g. older versions, beta versions, custom builds).
 - `REMOTE_WS` for overriding the default remote_wallet server (steemd.privex.io)

Other additions:

 - The `logs` command now follows the log, no need to keep running it over and over again, or manually typing out the docker logs follow command.
 - An updated example config for appbase, including a sane default logging config, and seeds changed to the new p2p-seed-node format
 - Various small fixes

If you're running a previous version of Steem through steem-in-a-box, just CTRL-F/CMD-F for "Upgrading from previous versions".

# What's new in HF20?

Everything from the HF19 appbase releases, with some additions. Appbase is part of the hard fork, meaning all developers will need to make their applications appbase ready by September 25th 2018.

See [the official release notes](https://github.com/steemit/steem/releases/tag/v0.20.0) on Github.

# Disclaimer: HF20 may not be stable yet (as of 14 sep 2018). Please use caution if putting it onto a witness server.

# Fresh install

To become a witness, you'll require a server with at LEAST 64GB of RAM, 200GB disk, and a fast, reliable network. I recommend my company @privex - they accept STEEM (and other cryptos), are affordable, and [sell servers with a Zero Block Miss SLA](https://www.privex.io)

I personally use @privex for my own witness (a top 20) which is proof of their quality. (DISCLAIMER: I'm the CEO of Privex Inc. however you'll find plenty of people here on STEEM unaffiliated with us, praising our servers and network)

You're free to use any other server provider. I don't recommend trying to run a witness on your home internet, as it is likely not reliable enough for a witness.

Be aware that certain server providers have poor networks or hardware, which may cause missed blocks, so you may be hopping around a few until you can find one that's suitable for a witness node.

If you want to learn more about witnesses and what they do, check out my article: https://steemit.com/witness-category/@someguy123/seriously-what-is-a-witness-why-should-i-care-how-do-i-become-one-answer

### Shared memory note

As of today (Fri 14th September 2018), it's recommended for witnesses/seeds to have at least 64 gigabytes (GB) of RAM. This is because Steem stores information in a file called "shared_memory.bin" which is used similar to RAM. This file is around 44gb on HF20, and will grow over time, so 64gb will give you 10-15gb of room for this to grow.

### Install steem-docker and dependencies

First, we install some basic dependencies (assuming you're on Ubuntu/Debian).

```
sudo apt update
sudo apt install git curl wget
```

Next, we install steem-docker (a line starting with a # is a comment, you don't need to paste them)

```bash
git clone https://github.com/someguy123/steem-docker.git
cd steem-docker
# If you don't already have a docker installation, this will install it for you
./run.sh install_docker
```

After the install_docker command has finished, it's recommended to log out and back in again (e.g. close your SSH client and re-connect) to ensure that the shell correctly detects docker.

Then, you can download and install the latest witness/seed docker image

```
# This downloads/updates the low-memory docker image for Steem
./run.sh install
```

If you are a witness, you need to adjust the configuration as needed e.g. witness name, private key, logging config, turn off p2p-endpoint etc.

If you're running a seed, then don't worry about the config, it will just work and you can skip the signing key / config section

### Generating a signing key

For witnesses, you'll need to generate a signing key first. You can use the remote wallet for this.

Open the wallet using a public server with the following command:

```
./run.sh remote_wallet
```

**Note: you may receive an error such as "timeout" or "invalid http status". This is normal, it's usually due to a server in the Privex load balancer having temporary problems.**

**Just run the command again a few times until it connects (you'll see new>>> or locked>>>)**

Create a key pair for your witness. 

```
suggest_brain_key
```

<center>![](https://steemitimages.com/DQmTEmx1VqqpY32hrYhfLJG9eHatb61wZwZj5qXTuHKpD2h/image.png)</center>

You should get something similar to this:

```
  "wif_priv_key": "5xxxxxxxxxxxxxxxxxxx",
  "pub_key": "STMxxxxxxxxxxxxxxxxx"
```

**Put the keys in notepad or something similar for the moment so you don't lose them.**

Press CTRL-D to exit the wallet.

### Setting up your config

Now, to set your witness name and private key. You can use `nano` (a simple text editor on Linux) for this.

```
nano data/witness_node_data_dir/config.ini
```

If you are running a witness, you'll want to change one of the first lines in the file to disable the seed.

```
# Endpoint for P2P node to listen on
p2p-endpoint = 0.0.0.0:2001
```

Simply place a # (hash sign) at the start of the p2p-endpoint line. This will disable the seed. Example:

```
# Endpoint for P2P node to listen on
#p2p-endpoint = 0.0.0.0:2001
```

Now to add your witness settings. Scroll down the file (use the up/down arrows, or page up/down) until you see something like this:

```
# Percent of witnesses (0-99) that must be participating in order to produce blocks
required-participation = 33

# name of witness controlled by this node (e.g. initwitness )
# witness =

# name of miner and its private key (e.g. ["account","WIF PRIVATE KEY"] )
# miner =

# Number of threads to use for proof of work mining
# mining-threads =

# WIF PRIVATE KEY to be used by one or more witnesses or miners
# private-key =
```

You'll want to uncomment (remove the # from the start) the `witness =` line, and the `private-key =` line.

Grab your public/private key that you saved earlier into notepad (or other similar app).

Then, similar to below, add your witness' name in quotes, e.g. "someguy123" in front of the `witness =`, and your private key (without quotes) in front of the `private-key =` line. To save you time in the future, it can be useful to place your public signing key in a comment above your private key (see example)

Example:

```
# name of witness controlled by this node (e.g. initwitness )
witness = "someguy123"

# name of miner and its private key (e.g. ["account","WIF PRIVATE KEY"] )
# miner =

# Number of threads to use for proof of work mining
# mining-threads =

# WIF PRIVATE KEY to be used by one or more witnesses or miners
# STMxxxxxxxxxx
private-key = 5xxxxxxxxx
```

Now (assuming you're using nano) press CTRL-X, and press the y key when it asks if you would like to save.

### Environment settings

If you're already comfortable with Linux, and want to play around with settings for steem-docker you may want to consider setting up a .env file, see the [README for more information](https://github.com/someguy123/steem-docker) 

Otherwise, let's continue. The defaults are generally fine for most people.

### Setting up shared memory, swap settings, and downloading the blockchain

At this point you should have:

 - installed steem-in-a-box
 - installed docker (through the run.sh command)
 - downloaded and installed the steem docker container
 - set up your witness configuration

Your witness is almost ready. Just a few more small things.

You'll need to set the shared memory size (use sudo if not logged in as root). As of today (Sep 14th 2018), 64 gigabytes is recommended (64G). Please be aware that the shared memory size changes constantly. Ask in [the witness chatroom](https://steem.chat/channel/witness) if you're unsure.

```
sudo ./run.sh shm_size 64G
```

You'll also want to adjust your "swappiness". This is a setting which tells Linux how much it should use swap (virtual memory on your disk. very slow). You'll want to set this to 1, which means "don't use the swap unless it's absolutely necessary". This helps to prevent missed blocks due to excessive swapping despite plenty of free RAM.

```
# To persist on reboot, place 'vm.swappiness=1' in /etc/sysctl.conf
sudo sysctl -w vm.swappiness=1
```

Now that you've configured your server, it's recommended to download the block log, as replays can be faster than p2p download.

```
./run.sh dlblocks
```

### Almost ready!

Once this is done, you should be ready to start your server. The `replay` command will start `steemd` in docker, and begin replaying the blockchain which was downloaded to create a block index, and the shared_memory file. 

```
./run.sh replay
```

You can check the status with the `logs` command.

```
./run.sh logs
```

Assuming you did everything correctly, you should see something like this:

```
------------------------------------------------------

            STARTING STEEM NETWORK

------------------------------------------------------
initminer public key: STM8GC13uCZbP44HzMLV6zPZGwVQ8Nt4Kji8PapsPiNq1BK153XTX
chain id: 0000000000000000000000000000000000000000000000000000000000000000
blockchain version: 0.20.0
------------------------------------------------------
2393837ms main.cpp:121                  main                 ] Backtrace on segfault is enabled.
2393837ms chain_plugin.cpp:405          plugin_startup       ] Starting chain with shared_file_size: 53687091200 bytes
2393837ms chain_plugin.cpp:483          plugin_startup       ] Replaying blockchain on user request.
2393837ms database.cpp:185              reindex              ] Reindexing Blockchain
2396435ms block_log.cpp:142             open                 ] Log is nonempty
2396435ms block_log.cpp:151             open                 ] Index is nonempty
2396435ms database.cpp:193              reindex              ] Replaying blocks...
```

Please be aware that this can take many hours depending on your disk speed and CPU. In some cases it can take up to 24 hours.

You can press CTRL-C to exit the logs, or just leave it if you want to watch it replay.

### After you've replayed

Once you see something which looks like this, it means your server is now ready to go:

```
1299055ms th_a       application.cpp:507           handle_block         ] Got 14 transactions on block 12928269 by pharesim -- latency: 55 ms
1302427ms th_a       application.cpp:507           handle_block         ] Got 18 transactions on block 12928270 by xeldal -- latency: 426 ms
1305291ms th_a       application.cpp:507           handle_block         ] Got 26 transactions on block 12928271 by arhag -- latency: 291 ms
1308045ms th_a       application.cpp:507           handle_block         ] Got 20 transactions on block 12928272 by pfunk -- latency: 45 ms
1311092ms th_a       application.cpp:507           handle_block         ] Got 23 transactions on block 12928273 by bhuz -- latency: 92 ms
```

Go to your profile on Steemit, click Wallet, then Permissions. Next to "Active Key" you should see "Login to show". Click that button and log in. Then press "Show private key", to reveal it. Make sure it begins with a "5".

Copy the key.

Now open the wallet with:

```
./run.sh wallet
```

![](https://steemitimages.com/DQmZo5cyxYrFiaz6X82qhu17CsTTbrHqf53pLp3CHFdc6xb/image.png)
(Image courtesy of @klye, copied from [his old guide](https://steemit.com/witness-category/@klye/the-complete-noob-guide-to-steem-witness-setup))

Set a password, unlock the wallet with the same password, then import your ACTIVE private key from steemit (NOT the one in notepad):

```
set_password "mysupersecurepass"
unlock "mysupersecurepass"
import_key 5zzzzzzzzzzzz
```

Finally, we can update/create the witness on the network. Replace the STMxxxx key with the public key you saved earlier in notepad (or if you wrote it as a comment in your config file, you can open that and get it from there), and replace YOURNAME with your witness name on Steemit.

```
update_witness "YOURNAME" "https://steemit.com/witness-category/@YOURNAME/my-witness-thread" "STMxxxxxxx" {"account_creation_fee":"0.100 STEEM","maximum_block_size":65536,"sbd_interest_rate":0} true
```

# Congratulations, your witness should now be working, and you can begin getting votes and producing blocks

### Other useful information

You may want to persist the /dev/shm size (shared memory) across reboots. To do this, you can edit `/etc/fstab`, please be very careful, as any mistakes in this file will cause your system to become unbootable. (**if you are not comfortable with linux, please don't try this as you may break your server**).

Simply add this to the bottom of the file on a new line. Be sure not to damage any other lines in the file. Adjust "64G" to whatever size you would like /dev/shm to be.

```
tmpfs   /dev/shm         tmpfs   nodev,nosuid,size=64G          0  0
```

See [the README](https://github.com/someguy123/steem-docker) for more advanced options.

# Upgrading from previous versions

**Please be warned. Upgrading to HF20 will require a replay (even if you're on an appbase release). It's strongly recommended to do this on your backup server first, or change to your backup server during the upgrade.**

## Server Version Check

First, you'll want to check your server's version.

This is as simple as:

```
docker logs seed | grep "blockchain version"
```

(if you have renamed your docker container, you may need to change `seed` to `witness` etc.)

You should see something like:

```
blockchain version: 0.19.6
```

If your version is lower than 0.19.10, then you're not on appbase, and will have to re-make your config.

If you're already on appbase (anything higher than 0.19.10), you can skip the config update parts.


## Upgrade procedure

**Again, upgrading to HF20 will require a replay. Do this on your backup server, or disable your witness during the upgrade!**

First, update your steem-docker files (this will make sure you're on the master branch, and not the old appbase branch)

```
~/steem-docker $ git fetch
~/steem-docker $ git checkout master
~/steem-docker $ git pull
```

Move your old config out of the way. Appbase has a new config format, Steem-in-a-box will create a new example config for you.

```
mv data/witness_node_data_dir/config.ini data/witness_node_data_dir/config.ini.bak-sep2018
```

Download the HF20 docker image using this command. Assuming you've renamed your config file, this will also generate a new example config for you into config.ini.

```
./run.sh install
```

## Fixing your config

Now, you'll want to put your witness name and key back into the new config.

This command will quickly obtain your witness name and private key for copy pasting:

```
cat data/witness_node_data_dir/config.ini.bak-sep2018 | grep -E "^witness|private-key"
```

You'll see something like this:

```
~/steem-docker $ cat data/witness_node_data_dir/config.ini.bak-sep2018 | grep -E "^witness|private-key"
witness = "someguy123"
private-key = 5xxxxxxxxxxxxxxxxx
```

Open your new config:

```
nano data/witness_node_data_dir/config.ini
```

Comment out p2p-endpoint (put a #Β at the start of it) if this is for a witness. You don't want your witness node running a seed.

```
# p2p-endpoint = 0.0.0.0:2001
```

Place your witness name and private key somewhere in the middle of the file (near the "name of witness controlled" comment makes it easy to find), like this:


```
# Percent of witnesses (0-99) that must be participating in order to produce blocks
required-participation = 33

# name of witness controlled by this node (e.g. initwitness )
# witness =
witness = "someguy123"
private-key = 5xxxxxxxxxxxxxxxxx
```

For the shared memory settings at the top, I strongly recommend leaving it at 60G, as it will automatically expand (new appbase feature) when it needs to.

A server with 64gb RAM is still the recommended size for witnesses, however this may change over the next few weeks as the chain grows.

### Now for the slow part - replaying

When upgrading from prior versions to HF20, you'll need to replay.

To replay your witness, do the following (this will shutdown and remove the pre-appbase software, and start an appbase one in replay mode)

```
./run.sh stop
./run.sh replay
```

You can check the status of the replay with the logs command

```
./run.sh logs
```

Note: the command now automatically updates in realtime. to exit the logs press CTRL-C

If all is well, you'll see it replaying on v0.20.0 (or whatever version is out by the time you read this):

```
------------------------------------------------------

            STARTING STEEM NETWORK

------------------------------------------------------
initminer public key: STM8GC13uCZbP44HzMLV6zPZGwVQ8Nt4Kji8PapsPiNq1BK153XTX
chain id: 0000000000000000000000000000000000000000000000000000000000000000
blockchain version: 0.20.0
------------------------------------------------------
2393837ms main.cpp:121                  main                 ] Backtrace on segfault is enabled.
2393837ms chain_plugin.cpp:405          plugin_startup       ] Starting chain with shared_file_size: 53687091200 bytes
2393837ms chain_plugin.cpp:483          plugin_startup       ] Replaying blockchain on user request.
2393837ms database.cpp:185              reindex              ] Reindexing Blockchain
2396435ms block_log.cpp:142             open                 ] Log is nonempty
2396435ms block_log.cpp:151             open                 ] Index is nonempty
2396435ms database.cpp:193              reindex              ] Replaying blocks...
```

Once it's replayed (may take 3 or more hours), you'll see the standard "got x transactions on block y".


```
1668107ms p2p_plugin.cpp:210            handle_block         ] Got 54 transactions on block 25299003 by cervantes -- latency: 107 ms
1671090ms p2p_plugin.cpp:210            handle_block         ] Got 36 transactions on block 25299004 by blocktrades -- latency: 90 ms
1674098ms p2p_plugin.cpp:210            handle_block         ] Got 28 transactions on block 25299005 by roelandp -- latency: 98 ms
```

If you see this, you can now re-enable this server :)

You're successfully upgraded to 0.20.0 (or higher).

For future HF20 releases, it will now be as simple as `./run.sh install && ./run.sh restart`, but as always, be careful, always assume a replay may be needed. Test on your backup, or disable your witness before attempting to update. 

To see if I've released a new version of the docker image and haven't made a post yet, just check my docker hub: https://hub.docker.com/r/someguy123/steem/tags/

---

<center>![](https://i.giphy.com/media/l378lvuErndt84HII/giphy.gif)</center>

GIF Avatar by @stellabelle

---

Do you like what I'm doing for STEEM/Steemit?
----
[Vote for me to be a witness](https://steemit.com/~witnesses) - every vote counts. 
----
Don't forget to follow me for more like this.
----

---

Have you ever thought about being a witness yourself? Join the [witness channel](https://steemit.chat/channel/witness). We're happy to guide you! Join in shaping the STEEM economy.

Are you looking for a new server provider? My company @privex offers highly-reliable and affordable dedicated and virtual servers for STEEM, LTC, and BTC! Check out our website at https://www.privex.io

---
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 132 others
properties (23)
authorsomeguy123
permlinkthe-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box
categorywitness-category
json_metadata{"tags":["witness-category","witness-update","steem","dev","minnowsupport"],"users":["privex","klye","stellabelle"],"image":["https://cdn.steemitimages.com/DQmYnW6uRhezd33jfWZu1RQ1nNyrAk8nHXvH6thHfyJS3L9/image.png","https://steemitimages.com/DQmTEmx1VqqpY32hrYhfLJG9eHatb61wZwZj5qXTuHKpD2h/image.png","https://steemitimages.com/DQmZo5cyxYrFiaz6X82qhu17CsTTbrHqf53pLp3CHFdc6xb/image.png","https://i.giphy.com/media/l378lvuErndt84HII/giphy.gif"],"links":["https://github.com/someguy123/steem-docker","https://github.com/steemit/steem/releases/tag/v0.20.0","https://www.privex.io","https://steemit.com/witness-category/@someguy123/seriously-what-is-a-witness-why-should-i-care-how-do-i-become-one-answer","https://steem.chat/channel/witness","https://steemit.com/witness-category/@klye/the-complete-noob-guide-to-steem-witness-setup","https://hub.docker.com/r/someguy123/steem/tags/","https://steemit.com/~witnesses","https://steemit.chat/channel/witness"],"app":"steemit/0.1","format":"markdown"}
created2018-09-14 01:31:21
last_update2018-09-14 17:29:36
depth0
children30
last_payout2018-09-21 01:31:21
cashout_time1969-12-31 23:59:59
total_payout_value82.487 HBD
curator_payout_value16.980 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19,989
author_reputation103,945,664,283,580
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,229,450
net_rshares89,485,784,010,327
author_curate_reward""
vote details (196)
@ayogom ·
Dear, @someguy123

I would like to use your Docker to run the Witness node.
I have already purchased a server(8core, 96G, 1T SSD) and installed it according to your manual.
But there's a problem, and I haven't been able to solve it for three days.
**I want your help.**

My symptoms are, the container is not working. 
"Replay" is performed according to your manual and I enter "Logs", no message appears.
I could tell  that the Docker did not work using the command "docker ps -a"

**Can you help me?**
properties (22)
authorayogom
permlinkre-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180924t151355682z
categorywitness-category
json_metadata{"tags":["witness-category"],"community":"steempeak","app":"steempeak"}
created2018-09-24 15:13:57
last_update2018-09-24 15:13:57
depth1
children4
last_payout2018-10-01 15:13: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_length504
author_reputation74,209,287,963,096
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,136,373
net_rshares0
@bjornb ·
Hi @ayogom I'm stuck with the same problem. Did you manage to find a solution in the meantime?
properties (22)
authorbjornb
permlinkre-ayogom-re-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20181023t153948515z
categorywitness-category
json_metadata{"tags":["witness-category"],"users":["ayogom"],"app":"steemit/0.1"}
created2018-10-23 15:39:48
last_update2018-10-23 15:39:48
depth2
children3
last_payout2018-10-30 15:39: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_length94
author_reputation6,555,809,010,185
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,898,744
net_rshares0
@ayogom ·
$0.02
Of course, I've already started witness nodes. I have already become the 66th witness ^^
we can help you at https://steem.chat/channel/witness-support
πŸ‘  ,
properties (23)
authorayogom
permlinkre-bjornb-re-ayogom-re-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20181023t154930975z
categorywitness-category
json_metadata{"tags":["witness-category"],"links":["https://steem.chat/channel/witness-support"],"app":"steemit/0.1"}
created2018-10-23 15:49:33
last_update2018-10-23 15:49:33
depth3
children2
last_payout2018-10-30 15:49:33
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation74,209,287,963,096
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,899,302
net_rshares20,035,024,531
author_curate_reward""
vote details (2)
@chuimui ·
Super useful tutorial as always, thanks.
properties (22)
authorchuimui
permlinkre-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180918t041917765z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-09-18 04:19:18
last_update2018-09-18 04:19:18
depth1
children0
last_payout2018-09-25 04:19: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_length40
author_reputation97,887,120,448
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,547,025
net_rshares0
@d00k13 ·
Boom! I do plan to start down the witness path soon but I am curious about one thing, without being in top 20 does the rewards cover server rental costs?

Posted using [Partiko iOS](https://steemit.com/@partiko-ios)
properties (22)
authord00k13
permlinkd00k13-re-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180914t032731363z
categorywitness-category
json_metadata{"app":"partiko"}
created2018-09-14 03:27:30
last_update2018-09-14 03:27:30
depth1
children11
last_payout2018-09-21 03:27: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_length215
author_reputation473,475,468,733,980
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,236,215
net_rshares0
@fbslo ·
No. 
I'm at rank 140 and i get 1 Block per day. 

Posted using [Partiko Android](https://steemit.com/@partiko-android)
properties (22)
authorfbslo
permlinkfbslo-re-d00k13-d00k13-re-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180914t121611812z
categorywitness-category
json_metadata{"app":"partiko"}
created2018-09-14 12:16:12
last_update2018-09-14 12:16:12
depth2
children8
last_payout2018-09-21 12:16: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_length118
author_reputation163,373,705,640,602
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,269,471
net_rshares0
@d00k13 ·
How much STEEM does 1 block pay? I know under current prices this will not cover it but you know speculative thought it could work out long run.

Posted using [Partiko iOS](https://steemit.com/@partiko-ios)
properties (22)
authord00k13
permlinkd00k13-re-fbslo-fbslo-re-d00k13-d00k13-re-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180915t025009587z
categorywitness-category
json_metadata{"app":"partiko"}
created2018-09-15 02:50:09
last_update2018-09-15 02:50:09
depth3
children7
last_payout2018-09-22 02:50: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_length206
author_reputation473,475,468,733,980
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,325,824
net_rshares0
@yehey · (edited)
NO. You need to be at 70 ranks  or higher to break even with one Witness server to maintain.
πŸ‘  
properties (23)
authoryehey
permlinkre-d00k13-d00k13-re-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180914t044955431z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-09-14 04:49:57
last_update2018-09-14 05:04:12
depth2
children1
last_payout2018-09-21 04:49: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_length92
author_reputation22,184,787,552,504
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,241,243
net_rshares3,648,688,416
author_curate_reward""
vote details (1)
@d00k13 ·
Wow so do know the vote breakdown for that ranking? Does reputation of the vote holder matter?

Posted using [Partiko iOS](https://steemit.com/@partiko-ios)
properties (22)
authord00k13
permlinkd00k13-re-yehey-re-d00k13-d00k13-re-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180915t024854786z
categorywitness-category
json_metadata{"app":"partiko"}
created2018-09-15 02:48:54
last_update2018-09-15 02:48:54
depth3
children0
last_payout2018-09-22 02:48: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_length156
author_reputation473,475,468,733,980
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,325,763
net_rshares0
@elmetro ·
$0.10
@exnihilo.witness is on HF20.
Thank you dude.
πŸ‘  
properties (23)
authorelmetro
permlinkre-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180915t213944596z
categorywitness-category
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["witness-category"],"users":["exnihilo.witness"],"links":["/@exnihilo.witness"],"image":[]}
created2018-09-15 21:39:45
last_update2018-09-15 21:39:45
depth1
children0
last_payout2018-09-22 21:39:45
cashout_time1969-12-31 23:59:59
total_payout_value0.077 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation2,378,652,793,261
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,395,722
net_rshares88,466,211,058
author_curate_reward""
vote details (1)
@fulltimegeek ·
@someguy123, please look into my recent order with @privex ... I sent the correct amount+memo to you guys right away but your website still says my payment has expired ... 

memo: e4d2516a-8acc-449a-99ec-4621cdf3128d
properties (22)
authorfulltimegeek
permlinkre-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180918t235835311z
categorywitness-category
json_metadata{"tags":["witness-category"],"users":["someguy123","privex"],"app":"steemit/0.1"}
created2018-09-18 23:58:36
last_update2018-09-18 23:58:36
depth1
children0
last_payout2018-09-25 23:58: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_length216
author_reputation82,542,358,852,913
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,626,248
net_rshares0
@humanheart ·
Super useful tutorial as always, thanks.
properties (22)
authorhumanheart
permlinkre-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180914t084840056z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-09-14 08:48:39
last_update2018-09-14 08:48:39
depth1
children0
last_payout2018-09-21 08:48: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_length40
author_reputation655,146,364,664
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,255,748
net_rshares0
@krnel ·
$0.10
Way to go! Very quick on getting HF20 out for SiaB :) Thank you!

Also, I've been using privex for many months, it's a good service. Recommended.
πŸ‘  ,
properties (23)
authorkrnel
permlinkre-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180914t022243808z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-09-14 02:22:42
last_update2018-09-14 02:22:42
depth1
children0
last_payout2018-09-21 02:22:42
cashout_time1969-12-31 23:59:59
total_payout_value0.076 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length145
author_reputation1,343,547,270,297,082
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,232,437
net_rshares91,742,737,393
author_curate_reward""
vote details (2)
@krnel ·
The replay started for me, and had the logs showing with `docker logs --tail=30 -f witness` (after I changed the name of the container in run.sh), but then it stopped replaying at  `9.63746%   2500000 of 25940455`. Any idea why that is? I opened a github issue [here](https://github.com/Someguy123/steem-docker/issues/12).
properties (22)
authorkrnel
permlinkre-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180914t023308519z
categorywitness-category
json_metadata{"tags":["witness-category"],"links":["https://github.com/Someguy123/steem-docker/issues/12"],"app":"steemit/0.1"}
created2018-09-14 02:33:06
last_update2018-09-14 02:33:06
depth1
children0
last_payout2018-09-21 02:33: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_length322
author_reputation1,343,547,270,297,082
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,233,065
net_rshares0
@pinoy ·
fossbot voter comment
I upvoted your post.

Cheers to you.
@Pinoy

Posted using https://Steeming.com condenser site.
properties (22)
authorpinoy
permlinkre-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180914t020208454z
categorywitness-category
json_metadata{}
created2018-09-14 02:02:09
last_update2018-09-14 02:02:09
depth1
children0
last_payout2018-09-21 02:02: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_length99
author_reputation923,531,651,885
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,231,146
net_rshares0
@postpromoter ·
re-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180914t174655758z
You got a 4.26% upvote from @postpromoter courtesy of @someguy123!

Want to promote your posts too? Check out the [Steem Bot Tracker website](https://steembottracker.com) for more info. If you would like to support the development of @postpromoter and the bot tracker please [vote for @yabapmatt for witness!](https://v2.steemconnect.com/sign/account-witness-vote?witness=yabapmatt&approve=1)
properties (22)
authorpostpromoter
permlinkre-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180914t174655758z
categorywitness-category
json_metadata{"app":"postpromoter/2.1.0"}
created2018-09-14 17:46:54
last_update2018-09-14 17:46:54
depth1
children0
last_payout2018-09-21 17:46: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_length393
author_reputation12,722,616,650,811
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,296,033
net_rshares0
@profnuhu ·
Wao nice sharing. @someguy123 hope to see you #1 on witness !!!

Posted using [Partiko Android](https://steemit.com/@partiko-android)
properties (22)
authorprofnuhu
permlinkprofnuhu-re-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180914t101938593z
categorywitness-category
json_metadata{"app":"partiko"}
created2018-09-14 10:19:39
last_update2018-09-14 10:19:39
depth1
children0
last_payout2018-09-21 10:19: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_length133
author_reputation2,958,539,011,540
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,261,715
net_rshares0
@stellabelle ·
$0.10
Thanks for this. 

Posted using [Partiko iOS](https://steemit.com/@partiko-ios)
πŸ‘  
properties (23)
authorstellabelle
permlinkstellabelle-re-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180914t025741745z
categorywitness-category
json_metadata{"app":"partiko"}
created2018-09-14 02:57:42
last_update2018-09-14 02:57:42
depth1
children0
last_payout2018-09-21 02:57:42
cashout_time1969-12-31 23:59:59
total_payout_value0.075 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation516,061,669,130,124
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,234,447
net_rshares90,338,511,821
author_curate_reward""
vote details (1)
@tts ·
To listen to the audio version of this article click on the play image.
[![](https://s18.postimg.org/51o0kpijd/play200x46.png)](http://ec2-52-72-169-104.compute-1.amazonaws.com/someguy123__the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box.mp3)
Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvoting this reply.
properties (22)
authortts
permlinkre-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180914t014313
categorywitness-category
json_metadata""
created2018-09-14 01:43:15
last_update2018-09-14 01:43:15
depth1
children0
last_payout2018-09-21 01:43: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_length386
author_reputation-4,535,154,553,995
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,230,077
net_rshares0
@upme ·
re-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180914t182215054z
You got a 42.70% upvote from @upme thanks to @someguy123! Send at least 3 SBD or 3 STEEM to get upvote for next round. Delegate STEEM POWER and start earning 100% from your share, daily payouts ( no commission ). <br>  Quick delegation links: <a target="_blank:" href="https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=upme&vesting_shares=25%20SP">25SP</a> | <a target="_blank:" href="https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=upme&vesting_shares=50%20SP">50SP</a> | <a target="_blank:" href="https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=upme&vesting_shares=100%20SP">100SP</a> | <a target="_blank:" href="https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=upme&vesting_shares=250%20SP">250SP</a> | <a target="_blank:" href="https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=upme&vesting_shares=500%20SP">500SP</a> | <a target="_blank:" href="https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=upme&vesting_shares=1000%20SP">1000SP</a> | <a target="_blank:" href="https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=upme&vesting_shares=2000%20SP">2000SP</a> | <a target="_blank:" href="https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=upme&vesting_shares=5000%20SP">5000SP</a> | <a target="_blank:" href="https://steembottracker.com/delegation.html?delegatee=upme">Custom Amount</a>
properties (22)
authorupme
permlinkre-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180914t182215054z
categorywitness-category
json_metadata{"app":"postpromoter/2.1.0"}
created2018-09-14 18:22:15
last_update2018-09-14 18:22:15
depth1
children0
last_payout2018-09-21 18:22: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_length1,476
author_reputation584,696,346,293
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,298,484
net_rshares0
@windforce · (edited)
When i run the replay command, all i get in logs is:
DOCKER LOSS
Error grabbing logs: EOF

I see the witness container exists but isn't running... 

Any ideas? 
Thanks
properties (22)
authorwindforce
permlinkre-someguy123-the-easy-way-to-install-or-upgrade-to-hardfork-20-steem-in-a-box-20180918t185133013z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-09-18 18:51:33
last_update2018-09-18 19:13:15
depth1
children0
last_payout2018-09-25 18:51: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_length167
author_reputation530,761,505,749
root_title"The easy way to install or upgrade to Hardfork 20 (Steem-in-a-box)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,608,904
net_rshares0