create account

Your guide to setting up a Witness Server (STEEM-in-a-box HF19) by someguy123

View this thread on: hive.blogpeakd.comecency.com
· @someguy123 · (edited)
$846.66
Your guide to setting up a Witness Server (STEEM-in-a-box HF19)
# NOTE: This article contains both upgrade instructions, AND install-from-fresh instructions.

This article is designed for those running a previous version of my Steem-in-a-box software, or for those looking to set up a new witness server. 

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

**NEW FEATURES**

new features include:

 - `dlblocks` (downloads blocks from @gtg's server, decompresses them into the right folder)
 - `install_docker` (downloads and installs docker. if not running as root, auto adds your current user to the docker group)
 - `remote_wallet` (runs cli_wallet against steemd.steemit.com)

<center>![](https://i.imgur.com/XOsLHJQ.png)</center>

UPGRADING FROM HF18
==================

If you have a previous installation of Steem-in-a-box, simply do the following:

Update your steem-in-a-box scripts:

```
git pull
```

Disable your witness, or change it to your backup key

```
./run.sh wallet

locked>> unlock "supersecurepassword"
unlocked>> update_witness "someguy123" "yoururl" "STM1111111111111111111111111111111114T1Anm" {"account_creation_fee":"0.200 STEEM","maximum_block_size":131072,"sbd_interest_rate":0} true
```

Now stop the witness server

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

Now, make sure you delete the /dev/shm files, as they will not be compatible with HF19 and need to be re-built

```
rm -rf /dev/shm/*
```

Finally, update your STEEM image, then start it with replay


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

You can now check the logs with ./run.sh logs and see that it's rescanning the blockchain. 

Once it's fully replayed, you can re-broadcast your witness :)

```
 update_witness "someguy123" "yoururl" "STM1abcdabcdabcdabcdabcdbdcabacbdcab" {"account_creation_fee":"0.200 STEEM","maximum_block_size":131072,"sbd_interest_rate":0} true
```


Installing a NEW witness
==================

To become a witness, you'll require a server with at LEAST 8GB of RAM, 100GB disk, and a fast, reliable network. I recommend @privex - they accept STEEM, are affordable, and [sell servers with a Zero Block Miss SLA](https://steemit.com/introduceyourself/@privex/we-are-privex-inc-we-accept-steem-protecting-your-privacy-in-the-cloud)

I personally use @privex for my own witness, as proof of their quality - I haven't missed a block since moving to them months ago, and I get almost 60 per day. (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, and 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

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

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

Next, we download **Steem-in-a-box**, created by myself.

```
git clone https://github.com/Someguy123/steem-docker.git
cd steem-docker
```

Now that it's downloaded, and we're in the right folder, we can install Docker.

```
./run.sh install_docker
```

NOTE: If you're running this without root, you'll need to log out and back in again after it's done. Remember to `cd steem-docker` after logging back in.


Now, we download the pre-compiled STEEM image from DockerHub:
```
./run.sh install
```

A new feature in the HF19 Steem-in-a-box, automatically downloads blocks from @gtg's server, extracts them, and puts them in the right folder. This will take a while, but will dramatically speed up your setup time.

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


### This next part is for witnesses, if you're wanting to run a seed, don't touch the config!

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

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



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.

Now, you need to decide on how much "shared memory" to give the server. Right now, 8GB is the bare minimum, however 12GB is recommended. DO NOT GIVE MORE SHARED MEMORY THAN YOU HAVE ACTUAL RAM AVAILABLE. e.g. if you have an 8GB VPS, only use 8G for your shared memory.

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

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

Open up the config file in your favourite text editor, `nano` is good for beginners:

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

You should not run a seed if you are a witness, so change

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

to

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

This disables the seed.

On a blank line, put the following:

```
witness = "YOUR NAME GOES HERE WITHOUT THE @ SIGN"
private-key = 5xxxxxxxxxxxxx
```

Put in your witness name, and your private key from earlier. Be aware the name needs quotes, while the private key doesn't. You use the private key (wif_priv_key) you generated earlier and put into notepad.

You will also need to adjust `shared-file-size` to whatever size you decided earlier for the "shared memory". There should already be a line with 12G, adjust that, if you need to do not make a new line for this.

```
shared-file-size = 8G
```

Save and close the file (if using nano, press CTRL-X, say yes to saving)



Next, we adjust the steem-in-a-box settings so that it's named correctly, and to disable port forwarding for seeds:

```
nano .env
```

The file will be blank. In the file put the following:

```
PORTS=
DOCKER_NAME=witness
```

Again, save and close the file with CTRL-X.

Now, we can start up the witness server

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

Check the logs with this command:

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

You should see something similar to this:


```
344773ms th_a       application.cpp:297           startup              ] Replaying blockchain on user request.
344774ms th_a       database.cpp:151              reindex              ] Reindexing Blockchain
344823ms th_a       block_log.cpp:130             open                 ] Log is nonempty
344823ms th_a       block_log.cpp:139             open                 ] Index is nonempty
344823ms th_a       database.cpp:159              reindex              ] Replaying blocks...
344834ms th_a       database.cpp:2571             show_free_memory     ] Free memory is now 11G
   0.77369%   100000 of 12925066   (12282M free)
```

If you see lots of red error messages, something went wrong. You can ask for help debugging it in the [witness channel on 
 STEEMIT.CHAT](https://steemit.chat/channel/witness).

If it appears to be working, leave it for an hour or so. Check the logs every 10 minutes  until you see something like this:

```
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
```

This means your witness is now fully synced. 

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, 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.200 STEEM","maximum_block_size":131072,"sbd_interest_rate":0} true
```

Assuming there are no big red messages, you're now a witness! :)

Go ahead, [vote for yourself](https://steemit.com/~witnesses) (and @someguy123).

### How do I know what rank I am?

Check SteemDB: https://steemdb.com/witnesses or steemd: https://steemd.com/witnesses

### What about a price feed?

As a witness, you're expected to run a price feed.

I recommend [Steemfeed-JS](https://steemit.com/witness-category/@someguy123/steemfeed-js-a-nodejs-price-feed-for-witneses), as it goes nicely with the docker set up.



---

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? Contact me on [STEEMIT.CHAT](https://steemit.chat/direct/someguy123), or just ask in the witness channel. I'm 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! Contact me on [STEEMIT.CHAT](https://steemit.chat/direct/someguy123) for more information.

Are you looking for a Graphics designer for your project? Logos, PSD mockups, banners? Check out @MaliceRed - he posts about his life as a Freelance Graphics Designer, and is looking for work.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 616 others
properties (23)
authorsomeguy123
permlinkyour-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19
categorysteem
json_metadata{"tags":["steem","steem-help","witness-category","tools","development"],"users":["gtg","privex","klye","someguy123","malicered"],"image":["https://i.imgur.com/XOsLHJQ.png","https://steemitimages.com/DQmTEmx1VqqpY32hrYhfLJG9eHatb61wZwZj5qXTuHKpD2h/image.png","https://steemitimages.com/DQmQNZW3frXDx7d4hZqJm4XTmMMRQY1XAQty2boDKVR9BAo/image.png","https://steemitimages.com/DQmZo5cyxYrFiaz6X82qhu17CsTTbrHqf53pLp3CHFdc6xb/image.png"],"links":["https://steemit.com/witness-category/@someguy123/seriously-what-is-a-witness-why-should-i-care-how-do-i-become-one-answer","https://steemit.com/introduceyourself/@privex/we-are-privex-inc-we-accept-steem-protecting-your-privacy-in-the-cloud","https://steemit.chat/channel/witness","https://steemit.com/witness-category/@klye/the-complete-noob-guide-to-steem-witness-setup","https://steemit.com/~witnesses","https://steemdb.com/witnesses","https://steemit.com/witness-category/@someguy123/steemfeed-js-a-nodejs-price-feed-for-witneses","https://steemit.chat/direct/someguy123"],"app":"steemit/0.1","format":"markdown"}
created2017-06-18 18:33:45
last_update2017-06-19 17:12:42
depth0
children110
last_payout2017-06-25 18:33:45
cashout_time1969-12-31 23:59:59
total_payout_value708.582 HBD
curator_payout_value138.077 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,727
author_reputation103,945,664,283,580
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,196,938
net_rshares42,485,710,623,246
author_curate_reward""
vote details (680)
@aguayojoshua ·
Hey, a quick question. **Who would you say should consider becoming a witness?** Anyone? Those with a lot of investment in the platform? Etc.

Thanks for sharing!
properties (22)
authoraguayojoshua
permlinkre-someguy123-2017618t164323230z
categorysteem
json_metadata{"tags":"steem","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-06-18 20:43:24
last_update2017-06-18 20:43:24
depth1
children1
last_payout2017-06-25 20:43: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_length162
author_reputation469,235,892,088
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,205,583
net_rshares0
@someguy123 ·
There are a variety of different backgrounds as witnesses.

Some are highly technical, e.g. @smooth, @abit, @gtg, myself etc. - those with history in development and system administration are more likely to be trusted by the other witness whales. A vote from @abit for example, could throw you up 10-20 ranks if you're low down, or 5-10 ranks if you're in the top 50.

Some people like @charlieshrem never even operated his own witness, he paid someone else to manage it, and he was #1 witness for a while. This shows even without a developer/sysadmin background, you can still make it to the top 20 if you know the right people.

A large part of your success as a witness depends on how much the community likes you. If you're well known and liked by the developers, the whales, and the normal users, then you're bound to have great success as a witness.

Sometimes, even if you're practically a famous Steemian, you'll still be stuck at a low rank. Example: @teamsteem is one of the most well known and loved Steemians, with posts constantly breaching $1000, and yet he's struggling to make it into the top 50 after running for months.

The only way to find out is to try it. Setup costs for a witness are low, and you can always stop if it's not working out for you.
👍  
properties (23)
authorsomeguy123
permlinkre-aguayojoshua-re-someguy123-2017618t164323230z-20170618t205709250z
categorysteem
json_metadata{"tags":["steem"],"users":["smooth","abit","gtg","charlieshrem","teamsteem"],"app":"steemit/0.1"}
created2017-06-18 20:57:09
last_update2017-06-18 20:57:09
depth2
children0
last_payout2017-06-25 20:57: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_length1,269
author_reputation103,945,664,283,580
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,206,519
net_rshares284,372,004
author_curate_reward""
vote details (1)
@alaaabujabal ·
Thanks for a very informative guide. I am just in the process of setting up a witness node, so this came at a perfect time... Still trying to figure out where to host it, so I will take a good look at @privex
👍  
properties (23)
authoralaaabujabal
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t205943570z
categorysteem
json_metadata{"tags":["steem"],"users":["privex"],"app":"steemit/0.1"}
created2017-06-18 20:59:45
last_update2017-06-18 20:59:45
depth1
children0
last_payout2017-06-25 20:59:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length208
author_reputation-497,989,290,390
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,206,696
net_rshares910,947,917
author_curate_reward""
vote details (1)
@amexperts ·
$0.10
Thanks for this. I have been wanting to set up a witness the last week but didnt really know where to start. I am going to try this locally first on my dev box and then if all goes well.. set up on a dedicated server. Looking forward to be able to give back to the steem community.
👍  
properties (23)
authoramexperts
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t173200719z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 17:32:00
last_update2017-06-19 17:32:00
depth1
children0
last_payout2017-06-26 17:32:00
cashout_time1969-12-31 23:59:59
total_payout_value0.102 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length281
author_reputation239,102,869,157
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,279,122
net_rshares5,421,091,827
author_curate_reward""
vote details (1)
@ansolas ·
https://steemit.chat/channel/witness is offline ?
properties (22)
authoransolas
permlinkpwsk9d
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.chat/channel/witness"],"app":"steemit/0.1"}
created2019-08-25 12:05:36
last_update2019-08-25 12:05:36
depth1
children0
last_payout2019-09-01 12: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_length49
author_reputation83,412,894,979
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,930,975
net_rshares0
@arcange ·
$0.06
You have been mentionned in my hit-parade of 2017.06.18
Congratulations @someguy123!
Your post was mentioned in my [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170618) in the following category:

* Pending payout - Ranked 3 with $ 1240,38
👍  ,
properties (23)
authorarcange
permlinkre-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t164518000z
categorysteem
json_metadata""
created2017-06-19 14:45:18
last_update2017-06-19 14:45:18
depth1
children0
last_payout2017-06-26 14:45:18
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation1,146,606,601,469,178
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,266,161
net_rshares3,357,484,410
author_curate_reward""
vote details (2)
@arckrai ·
I don't know much about this, but what are witnesses?
👍  
properties (23)
authorarckrai
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t190406577z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 19:04:06
last_update2017-06-18 19:04:06
depth1
children2
last_payout2017-06-25 19:04: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_length53
author_reputation16,610,122,450,873
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,199,064
net_rshares98,660,044
author_curate_reward""
vote details (1)
@rondonson ·
@arckrai witnesses are people who keep the steem blockchain going, its important to vote for them.
properties (22)
authorrondonson
permlinkre-arckrai-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t190858189z
categorysteem
json_metadata{"tags":["steem"],"users":["arckrai"],"app":"steemit/0.1"}
created2017-06-18 19:09:00
last_update2017-06-18 19:09:00
depth2
children0
last_payout2017-06-25 19:09: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_length98
author_reputation36,885,057,220,662
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,199,440
net_rshares0
@someguy123 ·
At the start of the post I wrote:

If you want to learn more about witnesses and what they do, check out my article here: https://steemit.com/witness-category/@someguy123/seriously-what-is-a-witness-why-should-i-care-how-do-i-become-one-answer
properties (22)
authorsomeguy123
permlinkre-arckrai-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t191034550z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/witness-category/@someguy123/seriously-what-is-a-witness-why-should-i-care-how-do-i-become-one-answer"],"app":"steemit/0.1"}
created2017-06-18 19:10:33
last_update2017-06-18 19:10:33
depth2
children0
last_payout2017-06-25 19:10: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_length243
author_reputation103,945,664,283,580
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,199,572
net_rshares0
@attoan.cmt ·
thank you very much, I will give it a try.

@quochuy thank you for your recommendation
properties (22)
authorattoan.cmt
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20180606t054722561z
categorysteem
json_metadata{"tags":["steem"],"users":["quochuy"],"app":"steemit/0.1"}
created2018-06-06 05:47:21
last_update2018-06-06 05:47:21
depth1
children0
last_payout2018-06-13 05:47: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_length86
author_reputation34,791,351,931,730
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,480,139
net_rshares0
@bardhylsllamniku ·
it looks really cool, thanks i'mma try it
properties (22)
authorbardhylsllamniku
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t020122741z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 02:01:21
last_update2017-06-19 02:01:21
depth1
children0
last_payout2017-06-26 02:01: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_length41
author_reputation233,649,568,173
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,223,555
net_rshares0
@camb ·
The first few steps wok fine for me but then I get some errors. I am root on a fresh ubuntu 16. can someone help?

After  ./run.sh install I am getting :

"Error response from daemon: No such image: someguy123/steem:latest
Installation completed. You may now configure or run the server"

After ./run.sh remote_wallet I am getting Unable to find image 'steem:latest' locally
docker: Error response from daemon: repository steem not found: does not exist or no pull access.
👍  
properties (23)
authorcamb
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170713t233810931z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-13 23:38:12
last_update2017-07-13 23:38:12
depth1
children1
last_payout2017-07-20 23:38: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_length472
author_reputation2,733,578,557,743
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,394,439
net_rshares712,898,410
author_curate_reward""
vote details (1)
@songcaoxian ·
Hey mate, do you solve the problem?
properties (22)
authorsongcaoxian
permlinkre-camb-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20180625t001817227z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-06-25 00:18:18
last_update2018-06-25 00:18:18
depth2
children0
last_payout2018-07-02 00:18: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_length35
author_reputation5,082,319,971
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,115,550
net_rshares0
@charles1 ·
Very good and helpful post, following you for more and thanks for sharing
properties (22)
authorcharles1
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t190126080z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 19:01:27
last_update2017-06-18 19:01:27
depth1
children0
last_payout2017-06-25 19:01: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_length73
author_reputation73,578,987,512,478
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,198,873
net_rshares0
@cloh76 ·
Thanks for the detailed post
properties (22)
authorcloh76
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t233659790z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 23:36:57
last_update2017-06-18 23:36:57
depth1
children0
last_payout2017-06-25 23:36: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_length28
author_reputation37,996,316,912,544
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,216,759
net_rshares0
@coar ·
$0.23
http://privex.io/ not work. What is this? Have you change your provider?
👍  
properties (23)
authorcoar
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170721t144827513z
categorysteem
json_metadata{"tags":["steem"],"links":["http://privex.io/"],"app":"steemit/0.1"}
created2017-07-21 14:48:30
last_update2017-07-21 14:48:30
depth1
children0
last_payout2017-07-28 14:48:30
cashout_time1969-12-31 23:59:59
total_payout_value0.227 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation4,231,602,317,552
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,202,753
net_rshares57,208,296,132
author_curate_reward""
vote details (1)
@crisgojar ·
Nice one, thanks for sharing @someguy123
properties (22)
authorcrisgojar
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t020558322z
categorysteem
json_metadata{"tags":["steem"],"users":["someguy123"],"app":"steemit/0.1"}
created2017-06-19 02:05:57
last_update2017-06-19 02:05:57
depth1
children0
last_payout2017-06-26 02:05: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_length40
author_reputation2,716,008,632,936
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,223,784
net_rshares0
@cryptodata ·
Thanks for the detailed instructions! Will definitely be using this
properties (22)
authorcryptodata
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t192514163z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 19:25:09
last_update2017-06-18 19:25:09
depth1
children0
last_payout2017-06-25 19:25: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_length67
author_reputation1,577,806,466,314
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,200,509
net_rshares0
@cryptodog ·
Great information @someguy123! Will greatly help somebody who wants to become a witness.
properties (22)
authorcryptodog
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t072429746z
categorysteem
json_metadata{"tags":["steem"],"users":["someguy123"],"app":"steemit/0.1"}
created2017-06-19 07:24:30
last_update2017-06-19 07:24:30
depth1
children0
last_payout2017-06-26 07:24: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_length88
author_reputation867,897,048,877
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,238,964
net_rshares0
@cryptohazard ·
a `-f` for the logs would be awesome ^^
properties (22)
authorcryptohazard
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170630t211441803z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-30 21:14:42
last_update2017-06-30 21:14:42
depth1
children2
last_payout2017-07-07 21:14: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_length39
author_reputation17,111,780,434,071
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,812,393
net_rshares0
@drakos · (edited)
$0.05
You can follow in realtime with: 
**docker logs --tail=30 --follow witness**
or
**docker logs --tail=30 --f witness**
(assuming your container's name is "witness", the default in @someguy123's installation)
👍  
properties (23)
authordrakos
permlinkre-cryptohazard-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170703t192613331z
categorysteem
json_metadata{"tags":["steem"],"users":["someguy123"],"app":"steemit/0.1"}
created2017-07-03 19:26:45
last_update2017-07-03 19:27:42
depth2
children1
last_payout2017-07-10 19:26:45
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation112,280,226,665,329
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,183,787
net_rshares7,835,939,774
author_curate_reward""
vote details (1)
@cryptohazard ·
Oh I figured out. I started to deal directly with the container itself after some time. Thanks anyway.
properties (22)
authorcryptohazard
permlinkre-drakos-re-cryptohazard-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170703t192847654z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-03 19:28:48
last_update2017-07-03 19:28:48
depth3
children0
last_payout2017-07-10 19:28: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_length102
author_reputation17,111,780,434,071
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,183,983
net_rshares0
@cryptosi ·
$0.12
That's one heck of a disclaimer! ;)
👍  
properties (23)
authorcryptosi
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t223131065z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 22:31:36
last_update2017-06-18 22:31:36
depth1
children0
last_payout2017-06-25 22:31:36
cashout_time1969-12-31 23:59:59
total_payout_value0.118 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation378,844,291,332
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,213,070
net_rshares6,096,114,292
author_curate_reward""
vote details (1)
@cryptouno ·
I am having an issue. I go through the whole install process then once the blockchain has been downloaded I go to open the wallet. When I try to open the wallet steem-docker tells me that the container does not exist. So I go ahead and build one and start it. I go to open the wallet again and container still no container found. It is the latest steem-docker from github.com What update am I missing? Please let me know. Thank you for your time.
properties (22)
authorcryptouno
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20180530t083614776z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-05-30 08:36:30
last_update2018-05-30 08:36:30
depth1
children0
last_payout2018-06-06 08:36: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_length446
author_reputation27,659,505,683,747
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,409,017
net_rshares0
@cubanhacker · (edited)
Update.... Setting up my own server, 14 GB memory does not cut it anymore, upgrading....
👍  
properties (23)
authorcubanhacker
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20180208t013047069z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-02-08 01:30:48
last_update2018-02-08 01:31:18
depth1
children0
last_payout2018-02-15 01:30: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_length88
author_reputation2,387,715,199
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,793,940
net_rshares2,137,935,518
author_curate_reward""
vote details (1)
@cybercodetwins ·
$1.10
upvoted because you mention this. Making it easier to know where to go to spend steem as well.
>I recommend @privex - they accept STEEM, are affordable,
👍  
properties (23)
authorcybercodetwins
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t195305753z
categorysteem
json_metadata{"tags":["steem"],"users":["privex"],"app":"steemit/0.1"}
created2017-06-18 19:53:06
last_update2017-06-18 19:53:06
depth1
children0
last_payout2017-06-25 19:53:06
cashout_time1969-12-31 23:59:59
total_payout_value0.830 HBD
curator_payout_value0.271 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length152
author_reputation2,098,733,764,293
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,202,250
net_rshares55,593,079,890
author_curate_reward""
vote details (1)
@decentralizd ·
$2.53
This is likely the next step for me as I spend every day on steem or working on something steem related.... thanks for the guide man! Bookmarked!
👍  ,
properties (23)
authordecentralizd
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t000220873z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 00:02:21
last_update2017-06-19 00:02:21
depth1
children0
last_payout2017-06-26 00:02:21
cashout_time1969-12-31 23:59:59
total_payout_value2.490 HBD
curator_payout_value0.044 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length145
author_reputation15,393,357,386,194
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,217,995
net_rshares128,713,254,332
author_curate_reward""
vote details (2)
@dickturpin ·
Hosting your own node or server on any network can be heaps of fun and pretty rewarding.
properties (22)
authordickturpin
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t132844576z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 13:28:45
last_update2017-06-19 13:28:45
depth1
children0
last_payout2017-06-26 13:28:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation42,232,535,301,129
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,260,434
net_rshares0
@dojoexle ·
Thank you for your information
properties (22)
authordojoexle
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t190640933z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 19:07:33
last_update2017-06-18 19:07:33
depth1
children0
last_payout2017-06-25 19:07: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_length30
author_reputation340,767,194,545
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,199,327
net_rshares0
@drakos · (edited)
THANKS for this post, I was discovering recently the witness aspect of Steem, and I was looking for information on how to set up a server. I will read this with great care.

How much monthly bandwidth does a witness require?

Ah you're the CEO of @privex? Nice.
properties (22)
authordrakos
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t191509077z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1","users":["privex"]}
created2017-06-18 19:16:00
last_update2017-06-18 19:22:09
depth1
children1
last_payout2017-06-25 19:16: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_length261
author_reputation112,280,226,665,329
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,199,964
net_rshares0
@someguy123 ·
For a witness, I'm not entirely sure. For a seed the bandwidth requirements are higher because you're distributing blocks.

Since I set up my witness a few months ago, here's what my network stats look like:

```          RX bytes:114048278566 (114.0 GB)  TX bytes:99253351124 (99.2 GB)```

So it could require 20-30GB a month, I really don't know.
properties (22)
authorsomeguy123
permlinkre-drakos-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t193313658z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 19:33:15
last_update2017-06-18 19:33:15
depth2
children0
last_payout2017-06-25 19:33: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_length348
author_reputation103,945,664,283,580
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,201,028
net_rshares0
@drakos · (edited)
$0.07
I had a problem when running the **seed**. I couldn't telnet to it from an external box. I tried to play with the firewall but that wasn't it, the culprit was in the run.sh script:

>PORTS="2001"
if [[ -f .env ]]; then
    source .env
fi

What's happening is, after PORT is set to 2001, it gets overridden by the value from the .env file. In this case, it's **empty** (as instructed in this post). 
```
PORTS=
DOCKER_NAME=witness
```
So when running the docker container, the resulting command that starts the docker is:
`docker run -v /dev/shm:/shm -v /home/user/steem-docker/data:/steem -d --name witness -t steem`

The fix is to set `PORTS=2001` in the .env file. And we end up with the proper command being executed, with an open port allowing public access to the seed node:
`docker run -p0.0.0.0:2001:2001 -v /dev/shm:/shm -v /home/user/steem-docker/data:/steem -d --name witness -t steem`
👍  
properties (23)
authordrakos
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170718t014401378z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-18 01:44:45
last_update2017-07-18 02:42:15
depth1
children3
last_payout2017-07-25 01:44:45
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length895
author_reputation112,280,226,665,329
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,828,746
net_rshares13,710,792,942
author_curate_reward""
vote details (1)
@someguy123 ·
That's the point. It's designed to be a witness.

All you have to do is just remove `PORTS=` from the .env file and it would work like normal, with the default port of 2001 being opened.
properties (22)
authorsomeguy123
permlinkre-drakos-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170718t112808496z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-18 11:28:09
last_update2017-07-18 11:28:09
depth2
children2
last_payout2017-07-25 11:28: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_length186
author_reputation103,945,664,283,580
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,864,452
net_rshares0
@slickk ·
I am using the "Your guide to setting up a Witness Server (STEEM-in-a-box HF19)" guide to set up my witness account and have run into the following issue: "DOCKER_NAME=witness File Name to Write: .envPORTS= " I am not sure what to put here based on the guide. Any help would be appreciated.
properties (22)
authorslickk
permlinkre-someguy123-re-drakos-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170915t150404130z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-09-15 15:04:03
last_update2017-09-15 15:04:03
depth3
children0
last_payout2017-09-22 15:04:03
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_length290
author_reputation5,500,960,319
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,975,814
net_rshares0
@yash0108 ·
Thanks so much for this post. I had good experiences using this service. I love reading the tips on how to maximize long term gains@yash0108
properties (22)
authoryash0108
permlinkre-someguy123-re-drakos-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170720t103921080z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-20 10:39:30
last_update2017-07-20 10:39:30
depth3
children0
last_payout2017-07-27 10:39: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_length140
author_reputation3,386,741,504,526
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,063,130
net_rshares0
@dreamrafa ·
Interesting info indeed!, always been curious about witness, probably not getting into that any time soon but in the future, maybe...
properties (22)
authordreamrafa
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t195836598z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 19:58:39
last_update2017-06-18 19:58:39
depth1
children0
last_payout2017-06-25 19:58: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_reputation178,378,192,142,151
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,202,646
net_rshares0
@emex ·
Thanks for the helpful article. I will try and set it up as being instructed. some how complicating but i know you will assist if i go wrong.
properties (22)
authoremex
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t075050525z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 07:50:54
last_update2017-06-19 07:50:54
depth1
children0
last_payout2017-06-26 07:50: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_length141
author_reputation62,409,656,030
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,240,298
net_rshares0
@evildido ·
Ho boy, Thx far all your works ! 
I have created my witness (for curiosity purpose) on another account.
In fact, 8Gb is not enough to replay the blockchain. 16 Gb is required.

Now, I would like to host my own instance of steemit.
properties (22)
authorevildido
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20171007t113546886z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-10-07 11:35:48
last_update2017-10-07 11:35:48
depth1
children0
last_payout2017-10-14 11:35: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_length230
author_reputation10,472,899,706,596
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,000,472
net_rshares0
@florio ·
How much bandwidth does running a witness consume?
properties (22)
authorflorio
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170622t190859715z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-22 19:08:57
last_update2017-06-22 19:08:57
depth1
children0
last_payout2017-06-29 19:08: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_length50
author_reputation1,869,899,466,847
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,668,720
net_rshares0
@flrgx ·
Love this guide. Ran it on my home server without a hitch. Unfortunately, on my VPS, I get the following. Will probably just change VPS.

Loading image from someguy123/steem
Using default tag: latest
Warning: failed to get default registry endpoint from daemon (Cannot connect to the Dock
er daemon at unix:///var/run/docker.sock. Is the docker daemon running?). Using system d
efault: https://index.docker.io/v1/
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon
 running?
Tagging as steem
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon
 running?
Installation completed. You may now configure or run the server

---

Feel free to hit me up @someguy123 if you want to look at the VPS image. Not expecting a fix, but you might be interested for bug fixing purposes.
properties (22)
authorflrgx
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20171024t112557295z
categorysteem
json_metadata{"tags":["steem"],"users":["someguy123"],"links":["https://index.docker.io/v1/"],"app":"steemit/0.1"}
created2017-10-24 11:25:57
last_update2017-10-24 11:25:57
depth1
children0
last_payout2017-10-31 11:25: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_length845
author_reputation8,918,022,219
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,447,262
net_rshares0
@flrgx ·
Love this guide. Ran it on my home server without a hitch. Unfortunately, on my VPS, I get the following. Will probably just change VPS.

Loading image from someguy123/steem
Using default tag: latest
Warning: failed to get default registry endpoint from daemon (Cannot connect to the Dock
er daemon at unix:///var/run/docker.sock. Is the docker daemon running?). Using system d
efault: https://index.docker.io/v1/
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon
running?
Tagging as steem
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon
running?
Installation completed. You may now configure or run the server
properties (22)
authorflrgx
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20171024t112628541z
categorysteem
json_metadata{"tags":["steem"],"links":["https://index.docker.io/v1/"],"app":"steemit/0.1"}
created2017-10-24 11:26:36
last_update2017-10-24 11:26:36
depth1
children0
last_payout2017-10-31 11:26: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_length690
author_reputation8,918,022,219
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,447,293
net_rshares0
@galactic123 ·
Cool! I would give it a try if I had a computer connected full time to the internet.
properties (22)
authorgalactic123
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t111925837z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 11:19:00
last_update2017-06-19 11:19:00
depth1
children0
last_payout2017-06-26 11:19: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_length84
author_reputation1,705,466,759,871
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,251,619
net_rshares0
@greatvideos ·
$1.10
Thank you for your help and support 
We surely need you 
Please follow @someguy123 he is great 
I am your new follower 
Best Regards Andrei
👍  
properties (23)
authorgreatvideos
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t185352111z
categorysteem
json_metadata{"tags":["steem"],"users":["someguy123"],"app":"steemit/0.1"}
created2017-06-18 18:53:39
last_update2017-06-18 18:53:39
depth1
children0
last_payout2017-06-25 18:53:39
cashout_time1969-12-31 23:59:59
total_payout_value0.828 HBD
curator_payout_value0.275 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation6,696,611,383,944
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,198,290
net_rshares55,593,079,890
author_curate_reward""
vote details (1)
@hatemmkh ·
that's great help from you
thank you very much
properties (22)
authorhatemmkh
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t023217895z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 02:32:24
last_update2017-06-19 02:32:24
depth1
children0
last_payout2017-06-26 02:32: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_length46
author_reputation2,271,435,165,267
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,225,175
net_rshares0
@heshamsharm ·
i am just new here in steemit , i liked you artilce and will consider it in my next steps , i voted and followed you 
thanks for sharing ! 👏🏻👏🏻👏🏻
properties (22)
authorheshamsharm
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170829t195359976z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-08-29 19:54:06
last_update2017-08-29 19:54:06
depth1
children0
last_payout2017-09-05 19:54: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_length145
author_reputation18,134,840
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,266,043
net_rshares0
@hicmaster ·
nice ..
i followed your steemit account because of your supportiveness in steemit community please help me raise my steem power thanks ..
properties (22)
authorhicmaster
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170620t013103407z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-20 01:31:06
last_update2017-06-20 01:31:06
depth1
children0
last_payout2017-06-27 01:31: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_length137
author_reputation1,110,638,428,576
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,310,556
net_rshares0
@infantbarry ·
Very good blog. Good to see I'm not the only one that is thinking about this. Not sure if I believe in the current crypto investment climate but I do believe in the blockchain.  I was researching a way to find more info about the current cryptocoins on the market.  Personally I always use:  https://www.coincheckup.com I'm using this site that gives in depth reports on every tradable cryto in the market.
👎  
properties (23)
authorinfantbarry
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170926t144925931z
categorysteem
json_metadata{"tags":["steem"],"links":["https://www.coincheckup.com"],"app":"steemit/0.1"}
created2017-09-26 14:49:30
last_update2017-09-26 14:49:30
depth1
children0
last_payout2017-10-03 14:49: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_length406
author_reputation-867,927,103,364
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,990,388
net_rshares-1,505,930,037
author_curate_reward""
vote details (1)
@isnochys ·
Hmm.. This error shows up when ./run.sh replay:
docker: Error response from daemon: cgroups: cannot found cgroup mount desti
ation: unknown.
properties (22)
authorisnochys
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20180131t074122336z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-01-31 07:41:24
last_update2018-01-31 07:41:24
depth1
children0
last_payout2018-02-07 07:41: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_length140
author_reputation48,490,072,901,013
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,790,603
net_rshares0
@jeff-kubitz ·
$0.53
Dear @someguy123 - I would like to be a witness.  I have some problems and so I would like to ask you if you think I could.
1) Do not have electricity all day
2) Have intermittent phone and internet
3) Am a Windows developer not linux
a) Although I know how to use Ming and such it is not my specialty nor is it my focus
4) Can people witness, get blocks without being a voted witness?  I thought you had to be a witness in order to get the blocks
5) Today, I am in the process of transferring steem and sbd to poloniex and instead of it being quick, as fast or faster than Bitcoin, it is past two hours now and the transfer is not complete.  That tells me there is not enough witnessess to handle the network
👍  
properties (23)
authorjeff-kubitz
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t190514571z
categorysteem
json_metadata{"tags":["steem"],"users":["someguy123"],"app":"steemit/0.1"}
created2017-06-19 19:05:15
last_update2017-06-19 19:05:15
depth1
children0
last_payout2017-06-26 19:05:15
cashout_time1969-12-31 23:59:59
total_payout_value0.525 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length709
author_reputation45,985,057,342,618
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,285,992
net_rshares27,866,700,577
author_curate_reward""
vote details (1)
@jerrybanfield ·
Finished!  Outstanding guide!
properties (22)
authorjerrybanfield
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170710t231753295z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-10 23:17:51
last_update2017-07-10 23:17:51
depth1
children0
last_payout2017-07-17 23:17:51
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_length29
author_reputation362,393,802,961,900
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,042,267
net_rshares0
@jj1985 ·
thanks the helpful guide!
properties (22)
authorjj1985
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170629t222920845z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-29 22:29:21
last_update2017-06-29 22:29:21
depth1
children0
last_payout2017-07-06 22:29: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_length25
author_reputation160,785,452
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,685,675
net_rshares0
@joe28 ·
$0.02
Thanks for sharing this one.
very helpful for us.
i have followed you mr.
i like your creation so much.
vry motivate me.
👍  ,
properties (23)
authorjoe28
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t003323860z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 00:32:21
last_update2017-06-19 00:32:21
depth1
children0
last_payout2017-06-26 00:32:21
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation3,952,928,185,623
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,219,438
net_rshares1,174,016,965
author_curate_reward""
vote details (2)
@jondahl ·
Very useful information. Keep posting the latest information ... I'm very happy if you want to resteem some of my articles ....
properties (22)
authorjondahl
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t122332778z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 12:23:45
last_update2017-06-19 12:23:45
depth1
children0
last_payout2017-06-26 12:23:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation6,555,195,237,163
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,255,737
net_rshares0
@kmaxkmax ·
Thanks for the information :)
👍  
properties (23)
authorkmaxkmax
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t205555852z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 20:55:54
last_update2017-06-18 20:55:54
depth1
children0
last_payout2017-06-25 20:55: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_length29
author_reputation161,894,604,996
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,206,435
net_rshares471,505,293
author_curate_reward""
vote details (1)
@kwakumax ·
$3.23
Very cool and would definitely try this when i get the gist of it all.
It looks confusing but i will get the understanding or maybe someone can help me do this faster?
👍  , , , , , , , , , , , , , ,
properties (23)
authorkwakumax
permlinkre-someguy123-2017618t214848125z
categorysteem
json_metadata{"tags":"steem","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-06-18 21:48:54
last_update2017-06-18 21:48:54
depth1
children0
last_payout2017-06-25 21:48:54
cashout_time1969-12-31 23:59:59
total_payout_value3.222 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length167
author_reputation30,435,185,048,559
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,210,075
net_rshares172,090,764,719
author_curate_reward""
vote details (15)
@marcusorlyius ·
How do I use docker to interact with the blockchain?
properties (22)
authormarcusorlyius
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170701t124155899z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-01 12:41:54
last_update2017-07-01 12:41:54
depth1
children0
last_payout2017-07-08 12:41: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_length52
author_reputation152,371,289,228
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,885,727
net_rshares0
@melea · (edited)
$1.10
Priceless your Job here, thanks for doing that! Upvote! /wave
👍  
properties (23)
authormelea
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t201958883z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 20:19:57
last_update2017-06-18 20:20:30
depth1
children0
last_payout2017-06-25 20:19:57
cashout_time1969-12-31 23:59:59
total_payout_value1.074 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation368,798,565,353
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,204,074
net_rshares55,593,079,890
author_curate_reward""
vote details (1)
@melea ·
Work for me, and your server just fly! thanks for your help btw!
properties (22)
authormelea
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170709t063604751z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-09 06:36:06
last_update2017-07-09 06:36:06
depth1
children0
last_payout2017-07-16 06:36: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_length64
author_reputation368,798,565,353
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,834,818
net_rshares0
@moorkedi ·
@someguy123  after new users guide not works this steps :

./run.sh remote_wallet
Create a key pair for your witness.

![](https://steemitimages.com/DQmRUEmkGKyRAkmMvQTM7nRHHimaejTuXqQTYjM6PSVjkev/image.png)
properties (22)
authormoorkedi
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20171026t135829957z
categorysteem
json_metadata{"tags":["steem"],"users":["someguy123"],"image":["https://steemitimages.com/DQmRUEmkGKyRAkmMvQTM7nRHHimaejTuXqQTYjM6PSVjkev/image.png"],"app":"steemit/0.1"}
created2017-10-26 13:58:36
last_update2017-10-26 13:58:36
depth1
children1
last_payout2017-11-02 13: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_length207
author_reputation4,354,280,945,178
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,618,477
net_rshares0
@moorkedi ·
Ok now complate problem is server . Nice guide . Vote for first turkish witness @moorkedi :)
properties (22)
authormoorkedi
permlinkre-moorkedi-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20171028t125529283z
categorysteem
json_metadata{"tags":["steem"],"users":["moorkedi"],"app":"steemit/0.1"}
created2017-10-28 12:55:30
last_update2017-10-28 12:55:30
depth2
children0
last_payout2017-11-04 12:55: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_length92
author_reputation4,354,280,945,178
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,778,367
net_rshares0
@moorkedi ·
@someguy123  after new users guide not works this steps :

./run.sh remote_wallet
Create a key pair for your witness.

![](https://steemitimages.com/DQmRUEmkGKyRAkmMvQTM7nRHHimaejTuXqQTYjM6PSVjkev/image.png)
👍  
properties (23)
authormoorkedi
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20171026t160841439z
categorysteem
json_metadata{"tags":["steem"],"users":["someguy123"],"image":["https://steemitimages.com/DQmRUEmkGKyRAkmMvQTM7nRHHimaejTuXqQTYjM6PSVjkev/image.png"],"app":"steemit/0.1"}
created2017-10-26 16:09:48
last_update2017-10-26 16:09:48
depth1
children1
last_payout2017-11-02 16:09: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_length207
author_reputation4,354,280,945,178
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,626,522
net_rshares0
author_curate_reward""
vote details (1)
@muhammadmuneeb ·
same problem here
properties (22)
authormuhammadmuneeb
permlinkre-moorkedi-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20171104t212253098z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-11-04 21:23:00
last_update2017-11-04 21:23:00
depth2
children0
last_payout2017-11-11 21:23: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_length17
author_reputation3,463,572,579,620
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,467,184
net_rshares0
@nazirkhyber ·
Is this the software like a  mining software or block chain?
properties (22)
authornazirkhyber
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t185520392z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 18:55:24
last_update2017-06-18 18:55:24
depth1
children2
last_payout2017-06-25 18:55: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_length60
author_reputation706,568,984,833
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,198,414
net_rshares0
@someguy123 ·
It's similar to mining, except instead of it being who has the most hash power, it's who has the most votes.
properties (22)
authorsomeguy123
permlinkre-nazirkhyber-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t221146693z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 22:11:45
last_update2017-06-18 22:11:45
depth2
children1
last_payout2017-06-25 22:11:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation103,945,664,283,580
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,211,699
net_rshares0
@nazirkhyber ·
Ok Thanx , now I got it...
properties (22)
authornazirkhyber
permlinkre-someguy123-re-nazirkhyber-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t121316971z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 12:13:18
last_update2017-06-19 12:13:18
depth3
children0
last_payout2017-06-26 12:13:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation706,568,984,833
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,255,025
net_rshares0
@nenad-ristic ·
$1.67
Thanks for a very informative guide. I am just in the process of setting up a witness node, so this came at a perfect time... Still trying to figure out where to host it, so I will take a good look at @privex
👍  ,
properties (23)
authornenad-ristic
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t194312492z
categorysteem
json_metadata{"tags":["steem"],"users":["privex"],"app":"steemit/0.1"}
created2017-06-18 19:43:12
last_update2017-06-18 19:43:12
depth1
children0
last_payout2017-06-25 19:43:12
cashout_time1969-12-31 23:59:59
total_payout_value1.502 HBD
curator_payout_value0.169 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length208
author_reputation19,114,875,412,544
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,201,678
net_rshares84,345,818,448
author_curate_reward""
vote details (2)
@nezaigor ·
Thank you for your good post. I understand little English and only understand what Google translates for me, but I liked this post.

I wish the team good luck. I hope that these changes will only improve the platform and there will be no reverse effect.
properties (22)
authornezaigor
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t051016327z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 05:10:15
last_update2017-06-19 05:10:15
depth1
children0
last_payout2017-06-26 05:10: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_length253
author_reputation1,792,493,947,203
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,232,719
net_rshares0
@nirado ·
Is there a way to run it on something else than ubuntu?
properties (22)
authornirado
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t190836637z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 19:08:36
last_update2017-06-18 19:08:36
depth1
children1
last_payout2017-06-25 19:08: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_length55
author_reputation246,132,000,528
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,199,403
net_rshares0
@someguy123 ·
Yep. But you'll need to install docker by hand. `install_docker` runs various apt commands.

Once you've installed docker, continue with the standard `./run.sh install`, editing config etc. and it should work as normal.
👍  
properties (23)
authorsomeguy123
permlinkre-nirado-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t191117267z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 19:11:18
last_update2017-06-18 19:11:18
depth2
children0
last_payout2017-06-25 19:11: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_length219
author_reputation103,945,664,283,580
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,199,621
net_rshares282,496,425
author_curate_reward""
vote details (1)
@nitza ·
Buen post
properties (22)
authornitza
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t024124161z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 02:41:24
last_update2017-06-19 02:41:24
depth1
children0
last_payout2017-06-26 02:41: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_length9
author_reputation463,207,562,178
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,225,595
net_rshares0
@oyamurty ·
great post, but im new here
properties (22)
authoroyamurty
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t194243559z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 19:42:45
last_update2017-06-19 19:42:45
depth1
children0
last_payout2017-06-26 19:42:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation182,454,997,317
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,288,417
net_rshares0
@photono ·
Forkelicious.
https://media.giphy.com/media/I5dGvdzCmPs9q/giphy.gif
👍  
properties (23)
authorphotono
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t010508484z
categorysteem
json_metadata{"tags":["steem"],"image":["https://media.giphy.com/media/I5dGvdzCmPs9q/giphy.gif"],"app":"steemit/0.1"}
created2017-06-19 01:05:09
last_update2017-06-19 01:05:09
depth1
children0
last_payout2017-06-26 01:05: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_length67
author_reputation5,753,415,125,009
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,220,820
net_rshares0
author_curate_reward""
vote details (1)
@renzoarg ·
>Cannot connect to the docker demon at unix:///var/run/docker.sock. is the docker daemon running?

I'm hating this OS
properties (22)
authorrenzoarg
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170622t183011474z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-22 18:30:09
last_update2017-06-22 18:30:09
depth1
children3
last_payout2017-06-29 18:30: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_length117
author_reputation62,960,081,117,872
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,664,359
net_rshares0
@drakos ·
I bet you're using something different than Ubuntu? If so (like on Fedora/Centos), you need to start the docker service first.
properties (22)
authordrakos
permlinkre-renzoarg-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170703t192833054z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-03 19:29:03
last_update2017-07-03 19:29:03
depth2
children2
last_payout2017-07-10 19:29:03
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_reputation112,280,226,665,329
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,184,007
net_rshares0
@renzoarg ·
Nope, Ubuntu 16
properties (22)
authorrenzoarg
permlinkre-drakos-re-renzoarg-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170703t194609554z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-03 19:46:09
last_update2017-07-03 19:46:09
depth3
children1
last_payout2017-07-10 19:46: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_length15
author_reputation62,960,081,117,872
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,185,576
net_rshares0
@rival ·
Thx I am gonne try this soon...
properties (22)
authorrival
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170930t190656352z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-09-30 19:07:00
last_update2017-09-30 19:07:00
depth1
children0
last_payout2017-10-07 19:07: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_length31
author_reputation56,474,966,976,297
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,404,242
net_rshares0
@rocking-dave ·
I'm really tempted to try and setup my own witness, just to see if I can actually get it done.
properties (22)
authorrocking-dave
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t213201571z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 21:32:03
last_update2017-06-18 21:32:03
depth1
children0
last_payout2017-06-25 21:32:03
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_reputation4,146,063,643,264
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,208,884
net_rshares0
@rondonson ·
$1.05
i was waiting for this :D awesome stuff man 

upgrading tonight!
👍  
properties (23)
authorrondonson
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t183543478z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 18:35:45
last_update2017-06-18 18:35:45
depth1
children0
last_payout2017-06-25 18:35:45
cashout_time1969-12-31 23:59:59
total_payout_value0.786 HBD
curator_payout_value0.260 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation36,885,057,220,662
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,197,068
net_rshares52,667,128,317
author_curate_reward""
vote details (1)
@roseville ·
Excellent work, Thanks for sharing someguy123. To speed up the sync process, I think we can skip the replay by saving and sharing the shared memory file. It will be 14G though and growing.
properties (22)
authorroseville
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170622t102523233z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-22 10:25:24
last_update2017-06-22 10:25:24
depth1
children0
last_payout2017-06-29 10:25: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_length188
author_reputation2,718,003,063,965
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,612,355
net_rshares0
@scharfsinn ·
Thank you for the good Guide, but i can no update_witness in the wallet. i receive always this message. somebody can help me?

10 assert_exception: Assert Exception
!ec: websocket send failed: invalid state
    {"msg":"invalid state"}
    th_a  websocket.cpp:164 send_message
properties (22)
authorscharfsinn
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170717t082813325z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-17 08:28:12
last_update2017-07-17 08:28:12
depth1
children2
last_payout2017-07-24 08:28: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_length275
author_reputation2,426,379,852
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,745,131
net_rshares0
@drakos ·
This happens because of the cli_wallet timeout. Exit the wallet (Ctrl-D) then restart it, but this time execute your commands quick, don't wait longer than a minute or you will timeout again.
👍  
properties (23)
authordrakos
permlinkre-scharfsinn-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170718t012939160z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-18 01:30:21
last_update2017-07-18 01:30:21
depth2
children1
last_payout2017-07-25 01:30: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_length191
author_reputation112,280,226,665,329
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,827,883
net_rshares757,210,418
author_curate_reward""
vote details (1)
@scharfsinn ·
thank you, that can be the Issue. 

I have needed really to much time to insert the update_witness command. If i insert the update-witness command over my terminal in the ssh connection, the inserted command always was changed or some code was missing, it need time to correct the command.

now have usesd the alternativ Guide to install a witness https://steemit.com/witness-category/@drakos/witness-tools-conductor-docker
properties (22)
authorscharfsinn
permlinkre-drakos-re-scharfsinn-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170718t085317072z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/witness-category/@drakos/witness-tools-conductor-docker"],"app":"steemit/0.1"}
created2017-07-18 08:53:18
last_update2017-07-18 08:53:18
depth3
children0
last_payout2017-07-25 08:53: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_length423
author_reputation2,426,379,852
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,854,314
net_rshares0
@serhanni ·
thank you very much for detailed guide. i will try
properties (22)
authorserhanni
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170622t204524417z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-22 20:45:27
last_update2017-06-22 20:45:27
depth1
children0
last_payout2017-06-29 20:45: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_length50
author_reputation397,792,464,409
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,678,853
net_rshares0
@siddartha ·
So it can be done only on linux systems, and not on Windows? LOL, sometimes when I think to become a witness, these technical details show me the right path of not to become a witness!!!!
properties (22)
authorsiddartha
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170902t071853955z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-09-02 07:18:48
last_update2017-09-02 07:18:48
depth1
children0
last_payout2017-09-09 07:18: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_length187
author_reputation20,119,068,914,330
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,624,054
net_rshares0
@sighmanjestah ·
$0.03
Although at this point in time I have no desire to be a witness, I appreciate the info contained in this post as it explains (at least to **My** ability to understand it) quite a few things about what's going on in the background to keep Steemit running.

This has brought quite a few questions that I'd like to pursue, so I appreciate the info on checking Steemit-chat witness channel.

Hopefully I won't be asking to many stupid questions.

---
SDG
👍  
properties (23)
authorsighmanjestah
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t220110101z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 22:01:12
last_update2017-06-18 22:01:12
depth1
children0
last_payout2017-06-25 22:01:12
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length450
author_reputation1,836,942,842,269
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,210,950
net_rshares1,680,173,947
author_curate_reward""
vote details (1)
@sisfs ·
$0.02
@remind.bot 3 hrs
👍  
properties (23)
authorsisfs
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20180627t204014621z
categorysteem
json_metadata{"tags":["steem"],"users":["remind.bot"],"app":"steemit/0.1"}
created2018-06-27 20:41:36
last_update2018-06-27 20:41:36
depth1
children0
last_payout2018-07-04 20:41:36
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation76,631,730,745
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id62,530,663
net_rshares9,181,683,663
author_curate_reward""
vote details (1)
@sneak · (edited)
We (Steemit) strongly recommend using the official docker images found at `steemit/steem` on Docker Hub.  They are compiled by us and we use them in production to run steemit.com.

Beyond that - great work @someguy123!
properties (22)
authorsneak
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t222648908z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1","users":["someguy123"]}
created2017-06-19 22:26:45
last_update2017-06-19 22:27:33
depth1
children0
last_payout2017-06-26 22:26:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length218
author_reputation28,694,344,106,492
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,299,866
net_rshares0
@songcaoxian ·
Hi @someguy123, I was recommended to follow your instruction to get through the setting up of witness node, it is perfect, but I get stucked, and need your help.

I got a question when I try to update/create my witness in network by running this code:  update_witness "YOURNAME" "https://steemit.com/witness-category/@YOURNAME/my-witness-thread" "STMxxxxxxx" {"account_creation_fee":"0.200 STEEM","maximum_block_size":131072,"sbd_interest_rate":0} true   

should I only change the part that represented by YOURNAME  and my key?
or I actually need to edit my own post, and the address of it is - https://steemit.com/witness-category/@YOURNAME/my-witness-thread
and the whole web link needs to be changed.

and the following information like account_creation_fee, maximum_block_size, sbd_interest_rate, should I fill up my own real situation or just use the value in the command I show?

It will be great if you can give my any hint about this!

Thanks,
songcaoxian
properties (22)
authorsongcaoxian
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20180623t123507501z
categorysteem
json_metadata{"tags":["steem"],"users":["someguy123"],"links":["https://steemit.com/witness-category/@YOURNAME/my-witness-thread"],"app":"steemit/0.1"}
created2018-06-23 12:35:12
last_update2018-06-23 12:35:12
depth1
children0
last_payout2018-06-30 12:35: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_length964
author_reputation5,082,319,971
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,905,055
net_rshares0
@tastytraveler ·
old but gold!
properties (22)
authortastytraveler
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20171210t104222053z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-12-10 10:42:21
last_update2017-12-10 10:42:21
depth1
children0
last_payout2017-12-17 10:42: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_length13
author_reputation71,016,771,712
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,980,449
net_rshares0
@teamhumble ·
$1.10
i really want bookmarking to come back to this. think i might take you up on a virtual server at some point!
👍  
properties (23)
authorteamhumble
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170618t190411687z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 18:59:30
last_update2017-06-18 18:59:30
depth1
children0
last_payout2017-06-25 18:59:30
cashout_time1969-12-31 23:59:59
total_payout_value0.828 HBD
curator_payout_value0.275 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation315,232,864,758,316
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,198,729
net_rshares55,593,079,890
author_curate_reward""
vote details (1)
@teamsteem ·
$0.98
Thank you for this updated version and thank you for everything @someguy123! Seriously! I wouldn't be where I am if it wasn't from you.
👍  ,
properties (23)
authorteamsteem
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170620t004202117z
categorysteem
json_metadata{"tags":["steem"],"users":["someguy123"],"app":"steemit/0.1"}
created2017-06-20 00:42:00
last_update2017-06-20 00:42:00
depth1
children0
last_payout2017-06-27 00:42:00
cashout_time1969-12-31 23:59:59
total_payout_value0.984 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation284,804,541,406,803
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,307,929
net_rshares52,900,807,554
author_curate_reward""
vote details (2)
@thecryptodrive ·
$1.92
You are doing great work on Steem brother witness @someguy123, teaching others is very noble, keep it up, Steem needs knowledge.
👍  , , , , , , , , ,
properties (23)
authorthecryptodrive
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t084533582z
categorysteem
json_metadata{"tags":["steem"],"users":["someguy123"],"app":"steemit/0.1"}
created2017-06-19 08:45:30
last_update2017-06-19 08:45:30
depth1
children0
last_payout2017-06-26 08:45:30
cashout_time1969-12-31 23:59:59
total_payout_value1.444 HBD
curator_payout_value0.472 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation103,594,115,164,820
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,242,952
net_rshares97,653,945,235
author_curate_reward""
vote details (10)
@totalgyan ·
Nice post.....I appreciate your efforts on this collection!!
How can I make followers on steemit community
properties (22)
authortotalgyan
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t143749710z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 14:38:12
last_update2017-06-19 14:38:12
depth1
children0
last_payout2017-06-26 14:38: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_length106
author_reputation-102,480,188,881
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,265,581
net_rshares0
@tzimis ·
very informative guide

http://www.your3dsource.com/images/excellentwork.gif
properties (22)
authortzimis
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t200405904z
categorysteem
json_metadata{"tags":["steem"],"image":["http://www.your3dsource.com/images/excellentwork.gif"],"app":"steemit/0.1"}
created2017-06-19 20:04:00
last_update2017-06-19 20:04:00
depth1
children0
last_payout2017-06-26 20:04: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_length76
author_reputation6,288,208,569,944
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,289,822
net_rshares0
@victorier ·
$3.23
<p>Nice sharing! But it just too complicated for me for those technical terms and command XD. And I think maybe someday I will be interested in doing so..but The first point is I need to be good enough XD. Anyway, thanks so much for your sharing! It give me some idea about it.</p>
👍  , , , , , , , , , , ,
properties (23)
authorvictorier
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-2017619t16177820z
categorysteem
json_metadata{"tags":"steem","app":"esteem/1.0.0","format":"markdown+html"}
created2017-06-19 08:17:09
last_update2017-06-19 08:17:09
depth1
children7
last_payout2017-06-26 08:17:09
cashout_time1969-12-31 23:59:59
total_payout_value3.228 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length281
author_reputation44,434,425,469,272
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,241,546
net_rshares164,350,093,899
author_curate_reward""
vote details (12)
@teamsteem ·
People using this Steem-in-box from scratch will have to update the run.sh file to make the wallet work. 

    remote_wallet() {
    docker run -v "$DATADIR":/steem --rm -it steem cli_wallet -s wss://wallet.steem.ws

Just make sure to use a seed that is working. The current file comes with a seed that doesn't work anymore. The one below and above work. 

wss://wallet.steem.ws
👍  
properties (23)
authorteamsteem
permlinkre-victorier-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-2017619t16177820z-20171025t211402385z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-10-25 21:14:03
last_update2017-10-25 21:14:03
depth2
children6
last_payout2017-11-01 21:14:03
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_length378
author_reputation284,804,541,406,803
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,563,064
net_rshares0
author_curate_reward""
vote details (1)
@doctorvee ·
Thank you for this amazing instruction I did it and finally got the Witness Wallet Working
Please, how do I monitor and keep the witness box running continuously,  I discovered it may have​ stopped the box when I updated the wallet. How do I confirm, when blocks are been created and maintained
properties (22)
authordoctorvee
permlinkre-teamsteem-re-victorier-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-2017619t16177820z-20180117t053840585z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-01-17 05:38:42
last_update2018-01-17 05:38:42
depth3
children2
last_payout2018-01-24 05:38: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_length294
author_reputation608,629,613,641
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,098,863
net_rshares0
@songcaoxian ·
hey teamsteem, I got a question when I try to update/create my witness in network by running this code:  update_witness "YOURNAME" "https://steemit.com/witness-category/@YOURNAME/my-witness-thread" "STMxxxxxxx" {"account_creation_fee":"0.200 STEEM","maximum_block_size":131072,"sbd_interest_rate":0} true   

should I only change the part that represented by YOURNAME  and my key?
or I actually need to edit my own post, and the address of it is - https://steemit.com/witness-category/@YOURNAME/my-witness-thread
and the whole web link needs to be changed.

and the following information like account_creation_fee, maximum_block_size, sbd_interest_rate, should I fill up my own real situation or just use the value in the command I show?

It will be great if you can give my any hint about this!

Thanks,
songcaoxian
👍  
properties (23)
authorsongcaoxian
permlinkre-teamsteem-re-victorier-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-2017619t16177820z-20180623t123101761z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/witness-category/@YOURNAME/my-witness-thread"],"app":"steemit/0.1"}
created2018-06-23 12:31:03
last_update2018-06-23 12:31:03
depth3
children1
last_payout2018-06-30 12:31:03
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_length816
author_reputation5,082,319,971
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,904,569
net_rshares121,862,916
author_curate_reward""
vote details (1)
@victorier ·
Cool! Do thanks for your update on it!
👍  
properties (23)
authorvictorier
permlinkre-teamsteem-re-victorier-re-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-2017619t16177820z-20171026t005745741z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-10-26 00:57:45
last_update2017-10-26 00:57:45
depth3
children0
last_payout2017-11-02 00:57:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation44,434,425,469,272
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,573,980
net_rshares0
author_curate_reward""
vote details (1)
@virtualcoin ·
Realy nice tutorial, but one thing is not clear to me: Why should I run a witness? Just to support the community or will I receive some kind of income for doing it?
properties (22)
authorvirtualcoin
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170626t005450392z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-26 00:54:51
last_update2017-06-26 00:54:51
depth1
children0
last_payout2017-07-03 00:54:51
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_length164
author_reputation128,507,421,622
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,115,674
net_rshares0
@williams858 ·
Hi! How much does this cost you per month to run and how much do you make back in SP? I am interested in doing this but trying to figure whether its worth investing my time to learn how to do it! I want to make the most out of steem and this is another option! Thanks for any replys!
properties (22)
authorwilliams858
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170721t181526663z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-21 18:15:30
last_update2017-07-21 18:15:30
depth1
children0
last_payout2017-07-28 18:15: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_length283
author_reputation4,622,493,754,804
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,223,559
net_rshares0
@xdark21 ·
God job men you are really got a posting and design your logo and post i really like steemit and i'm new here
👍  
properties (23)
authorxdark21
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t120702298z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 12:07:03
last_update2017-06-19 12:07:03
depth1
children0
last_payout2017-06-26 12:07:03
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_length109
author_reputation-11,506,922,188
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,254,634
net_rshares786,571,693
author_curate_reward""
vote details (1)
@xdark21 ·
$0.04
It is one of the popular pairs. If you want huge %, try a unpopular pair and be patient.
👍  ,
properties (23)
authorxdark21
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t120921672z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 12:09:24
last_update2017-06-19 12:09:24
depth1
children0
last_payout2017-06-26 12:09:24
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation-11,506,922,188
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,254,791
net_rshares2,158,299,651
author_curate_reward""
vote details (2)
@xdark21 ·
steemit hard fork in 1 day  what will happen
👍  
properties (23)
authorxdark21
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t143048777z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 14:30:51
last_update2017-06-19 14:30:51
depth1
children0
last_payout2017-06-26 14:30:51
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_reputation-11,506,922,188
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,264,930
net_rshares266,221,638
author_curate_reward""
vote details (1)
@xdark23 ·
Steemit will, give back the rewards to the people and not to the big Companies !
👍  
properties (23)
authorxdark23
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170619t120735364z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-19 12:07:36
last_update2017-06-19 12:07:36
depth1
children0
last_payout2017-06-26 12:07: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_length80
author_reputation91,405,120,287
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,254,669
net_rshares1,015,730,375
author_curate_reward""
vote details (1)
@yweilie ·
Great post! upvoted!
properties (22)
authoryweilie
permlinkre-someguy123-your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19-20170916t040438725z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-09-16 04:04:39
last_update2017-09-16 04:04:39
depth1
children0
last_payout2017-09-23 04:04: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_length20
author_reputation0
root_title"Your guide to setting up a Witness Server (STEEM-in-a-box HF19)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,022,841
net_rshares0