### This article is a technical article intended for those administrating STEEM servers, including seed nodes, witnesses, and RPC nodes. In layman terms, this article is explaining a piece of software written by myself designed to assist others with setting up STEEM servers. <center></center> <center>Cardboard Box by Hay Kranen / Public Domain</center> Many people use my docker image, [Steem-in-a-box](https://steemit.com/steem/@someguy123/steem-in-a-box-deploy-a-new-seed-witness-or-rpc-server-with-a-one-liner) for deploying their STEEM servers, and it's changed a little since it was first introduced. Steem-in-a-box uses Docker to isolate the STEEM client, preventing version conflicts, and also allowing for binaries which work on any Linux distribution, since it runs within a compact Ubuntu16.04 docker container. **DISCLAIMER: Sysadmins, If you have any custom iptables rules, Docker can and WILL interfere with them. [Read about it here](https://fralef.me/docker-and-iptables.html)** In this article, I will explain 1. Installing Steem-in-a-box 2. Using it for a SEED 3. Using it for a Witness 4. Upgrading existing Steem-in-a-box installs # Installation Installation is the same as the original, except now we have a binary image. **Be aware that docker is a virtualisation technology, which means it's completely safe to run each command as root, since the container will be fully isolated from your system once it's running.** First, install docker if you don't already have it: ``` apt update && apt install curl git curl https://get.docker.com | sh ``` Now, download Steem-in-a-box from my Github: ``` git clone https://github.com/Someguy123/steem-docker.git cd steem-docker ``` The core of Steem-in-a-Box is `run.sh`. This is a *BASH* script which abstracts all of the docker magic, making it easy to deploy a docker-ized STEEM container, without needing to fully understand docker. Run the following command to download the latest copy of STEEM from my DockerHub: ``` ./run.sh install ``` Now you should have a ready-to-go Steem-in-a-box. Let's configure it # Configure for a seed A seed is a type of STEEM node which distributes blocks, and broadcasts transactions to other nodes on the network. It's similar to a *Bitcoin Full/Supernode*. Steem-in-a-box comes preconfigured as a seed, and will automatically attempt to expose PORT 2001 to the world. **Optional: Change the Steem-in-a-box seed port** If for some reason, you don't want to use 2001, you can change this. Edit the file `data/witness_node_data_dir/config.ini`, and change 2001 to some other port, let's say 2005 ``` p2p-endpoint = 0.0.0.0:2005 ``` You'll also need to create a file in the same directory as `run.sh`, called `.env`, this is a file used by Steem-in-a-box to determine custom settings for docker. Put the following in the file: ``` PORTS=2005 ``` This tells it to forward port 2005 from docker, to your public IP address. # Configure for a Witness A witness is a special type of STEEM node which produces blocks, similar to a *miner*. You can read more about what a witness does in my article: [Seriously, what is a STEEM witness? Why should I care? How do I become one? (Answer) ](https://steemit.com/witness-category/@someguy123/seriously-what-is-a-witness-why-should-i-care-how-do-i-become-one-answer) To start, create a file in the same directory as `run.sh`, called `.env`, this is a file used by Steem-in-a-box to determine custom settings for docker. Put the following in the file: ``` PORTS= DOCKER_NAME=witness ``` By leaving the PORTS blank, this prevents it attempting to forward any P2P ports. We also change the name of the docker container, this prevents confusion when you're managing both a seed and a witness, as the container will be correctly name "witness". By setting up a witness, I assume that you're aware of the security concerns, and basic procedures for running a witness, so I will explain them only lightly. Edit `data/witness_node_data_dir/config.ini`, disable the p2p-endpoint, and fill out your witness details. **By default I already disable account_history and all of the other plugins/apis not useful for witnesses/seeds** ``` # p2p-endpoint = witness = "someguy123" private-key = 5JiHZCzXmAhyezYrvSdBu8587YVPPvAnCp5Nx14tJPzGx6MDg4M ``` # Starting Steem-in-a-box Once you've configured Steem-in-a-box to your requirements, you may start the node with: ``` ./run.sh start ``` You can check the status of it with `./run.sh status`, and `./run.sh logs` You should see the node syncing in the logs. Once it's fully synced, you're ready to go! # Upgrading an existing Steem-in-a-box If you're running an older version of Steem-in-a-box, you'll need to pull in the latest changes. Back up your `config.ini` before doing this, as it may get damaged. ``` cd steem-docker git pull ``` Once you've pulled in the latest changes, you can then upgrade the docker image: ``` ./run.sh install ``` Once your docker image is upgraded, you will need to stop the existing node ``` ./run.sh stop ``` Destroy the original image, so that it may be replaced by the updated version of STEEM. The default container is called `seed`, regardless of whether it's a seed, witness or an rpc node. If you've got a customized `.env` file, or you've modified `run.sh`, take that into account. ``` docker rm seed ``` Now that you've cleaned up, you can start the system again: ``` ./run.sh start ``` Make sure it's syncing with ``` ./run.sh logs ``` Once it's done syncing, you can enter the wallet to confirm the version: ``` ./run.sh wallet new >>> about { "client_version": "v0.15.0", "steem_revision": "3379b5be8fa1567ece35beab1c8af1761d5d4e00", "steem_revision_age": "4 days ago", "fc_revision": "636d4530e3ac9e37040d43f1a1ff56caffb38166", "fc_revision_age": "33 days ago", "compile_date": "compiled on Nov 6 2016 at 02:33:51", "boost_version": "1.58", "openssl_version": "OpenSSL 1.0.2g 1 Mar 2016", "build": "linux 64-bit" } ``` If you see the updated version, this means you've successfully upgraded your STEEM node :) #### Steem-in-a-box is an open source project, released under the GNU AGPL 3.0, available at https://github.com/Someguy123/steem-docker #### Golos-in-a-box is also available, and works exactly the same, but for the GOLOS (голос) network, https://github.com/Someguy123/golos-docker --- 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. ---- ----
author | someguy123 |
---|---|
permlink | steem-in-a-box-ready-for-hf15-v0-15-0 |
category | steem |
json_metadata | {"tags":["steem","steem-help","witness-category","tools","development"],"links":["https://steemit.com/steem/@someguy123/steem-in-a-box-deploy-a-new-seed-witness-or-rpc-server-with-a-one-liner","https://fralef.me/docker-and-iptables.html","https://steemit.com/witness-category/@someguy123/seriously-what-is-a-witness-why-should-i-care-how-do-i-become-one-answer","https://github.com/Someguy123/steem-docker","https://github.com/Someguy123/golos-docker","https://steemit.com/~witnesses"],"app":"steemit/0.1","format":"markdown","image":["https://i.imgur.com/XOsLHJQ.png"]} |
created | 2016-11-07 01:39:48 |
last_update | 2016-11-07 01:42:18 |
depth | 0 |
children | 6 |
last_payout | 2016-12-08 14:57:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 64.812 HBD |
curator_payout_value | 7.339 HBD |
pending_payout_value | 0.000 HBD |
promoted | 10.000 HBD |
body_length | 6,626 |
author_reputation | 103,945,664,283,580 |
root_title | "Steem-in-a-Box - Ready for HF15 (v0.15.0)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,703,234 |
net_rshares | 99,339,064,087,173 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dantheman | 0 | 25,894,623,667,397 | 100% | ||
steempty | 0 | 7,741,082,165,351 | 100% | ||
smooth | 0 | 30,311,645,064,185 | 100% | ||
anonymous | 0 | 118,423,660,681 | 76% | ||
hello | 0 | 31,963,815,691 | 76% | ||
world | 0 | 12,007,585,250 | 76% | ||
fufubar1 | 0 | 17,461,501,667 | 76% | ||
xeldal | 0 | 8,043,369,186,414 | 100% | ||
enki | 0 | 5,460,531,445,711 | 100% | ||
wang | 0 | 1,151,524,732,210 | 76% | ||
boy | 0 | 6,925,508,827 | 100% | ||
xeroc | 0 | 42,076,620,947 | 76% | ||
bue-witness | 0 | 8,422,531,737 | 100% | ||
bunny | 0 | 1,398,195,453 | 100% | ||
bue | 0 | 129,527,077,579 | 100% | ||
mini | 0 | 3,708,326,720 | 100% | ||
moon | 0 | 474,201,407 | 100% | ||
joseph | 0 | 920,271,396,694 | 76% | ||
mineralwasser | 0 | 998,373,147 | 100% | ||
boombastic | 0 | 586,198,913,173 | 100% | ||
bingo-0 | 0 | 5,816,268,083 | 100% | ||
bingo-1 | 0 | 1,488,369,605 | 100% | ||
smooth.witness | 0 | 6,605,848,009,178 | 100% | ||
benjojo | 0 | 969,609,541,777 | 100% | ||
pairmike | 0 | 10,579,301,734 | 76% | ||
vip | 0 | 125,782,190,310 | 100% | ||
healthcare | 0 | 1,390,466,998 | 100% | ||
daniel.pan | 0 | 2,188,063,410 | 100% | ||
chitty | 0 | 0 | 100% | ||
helen.tan | 0 | 640,091,224 | 100% | ||
chryspano | 0 | 412,505,079,500 | 100% | ||
morning | 0 | 58,334,380,223 | 100% | ||
ervin-lemark | 0 | 10,898,782,586 | 100% | ||
leesunmoo | 0 | 920,439,918,171 | 100% | ||
kingscrown | 0 | 17,437,416,921 | 19% | ||
paco-steem | 0 | 549,122,104 | 100% | ||
spaninv | 0 | 5,895,160,064 | 100% | ||
teamsteem | 0 | 271,538,833,712 | 100% | ||
cryptoctopus | 0 | 446,124,300,864 | 100% | ||
steve-walschot | 0 | 27,847,958,421 | 76% | ||
klye | 0 | 98,251,150,654 | 100% | ||
jesusislord | 0 | 438,191,089 | 100% | ||
cryptofunk | 0 | 19,576,589,097 | 100% | ||
blakemiles84 | 0 | 25,900,027,703 | 76% | ||
dragonslayer109 | 0 | 221,669,484,118 | 100% | ||
thecryptofiend | 0 | 273,824,588,940 | 100% | ||
kanoptx | 0 | 55,933,900,096 | 100% | ||
coinbitgold | 0 | 144,897,407,095 | 100% | ||
taoteh1221 | 0 | 338,225,401,309 | 100% | ||
applecrisp | 0 | 6,661,080,628 | 100% | ||
stiletto | 0 | 400,283,771 | 100% | ||
thecryptodrive | 0 | 81,929,195,719 | 100% | ||
faddat | 0 | 126,730,911,100 | 100% | ||
bravenewcoin | 0 | 170,046,331,489 | 100% | ||
infovore | 0 | 776,649,513,697 | 100% | ||
michaelx | 0 | 2,576,070,254 | 76% | ||
grandpere | 0 | 20,797,357,274 | 100% | ||
albertogm | 0 | 4,311,480,677 | 76% | ||
christoryan | 0 | 8,028,863,159 | 100% | ||
christoph3 | 0 | 6,724,410,372 | 100% | ||
fyrstikken | 0 | 895,713,439,073 | 45% | ||
mrhankeh | 0 | 72,545,085 | 76% | ||
asmolokalo | 0 | 31,140,733,853 | 100% | ||
riscadox | 0 | 6,465,691,932 | 100% | ||
expanse | 0 | 5,104,928,459 | 100% | ||
elyaque | 0 | 45,713,292,161 | 100% | ||
r4fken | 0 | 21,118,412,693 | 100% | ||
rxhector | 0 | 2,105,932,565 | 100% | ||
picokernel | 0 | 99,002,308,996 | 100% | ||
bitshares101 | 0 | 14,418,241,791 | 100% | ||
onthewayout | 0 | 1,431,953,240 | 100% | ||
ausbitbank | 0 | 46,248,331,904 | 100% | ||
secom | 0 | 376,711,358,796 | 100% | ||
globeskeptic | 0 | 239,400,148 | 100% | ||
toxonaut | 0 | 30,323,319,360 | 100% | ||
snowden | 0 | 91,981,405 | 100% | ||
annieb | 0 | 2,790,363,955 | 100% | ||
thegoodguy | 0 | 4,718,221,067 | 100% | ||
aaseb | 0 | 15,550,136,908 | 100% | ||
senseiteekay | 0 | 31,058,673,518 | 100% | ||
karen13 | 0 | 2,482,360,172 | 40% | ||
jaycobbell | 0 | 11,248,453,173 | 100% | ||
raymondspeaks | 0 | 1,373,111,022 | 76% | ||
dmacshady | 0 | 2,919,917,626 | 100% | ||
allmonitors | 0 | 12,407,278,490 | 100% | ||
luisucv34 | 0 | 5,607,980,227 | 100% | ||
krystle | 0 | 14,009,719,477 | 100% | ||
arcange | 0 | 34,818,241,637 | 100% | ||
cryptojoy.com | 0 | 484,044,649 | 76% | ||
phenom | 0 | 15,122,450,671 | 100% | ||
blueorgy | 0 | 229,998,122,480 | 100% | ||
animus | 0 | 386,411,983 | 100% | ||
bitcoiner | 0 | 11,123,290,682 | 100% | ||
jl777 | 0 | 120,791,071,227 | 40% | ||
biternator | 0 | 344,396,494 | 100% | ||
webdeals | 0 | 13,563,532,878 | 100% | ||
proto | 0 | 9,395,876,216 | 40% | ||
ace108 | 0 | 3,005,692,043 | 24% | ||
remlaps | 0 | 5,561,673,565 | 100% | ||
monster-energy | 0 | 111,483,069 | 100% | ||
ap2002 | 0 | 91,378,861 | 100% | ||
steemdrive | 0 | 146,816,649,721 | 100% | ||
gomeravibz | 0 | 28,684,100,112 | 76% | ||
taker | 0 | 4,762,040,707 | 40% | ||
rawnetics | 0 | 20,494,942,360 | 100% | ||
allpunk | 0 | 1,315,136,593 | 100% | ||
brendio | 0 | 3,709,842,782 | 76% | ||
ullikume | 0 | 7,198,545,573 | 100% | ||
elena000 | 0 | 262,715,410 | 100% | ||
armen | 0 | 19,076,578,123 | 100% | ||
steemleak | 0 | 6,154,323,526 | 100% | ||
caminito | 0 | 16,071,055,013 | 100% | ||
joele | 0 | 185,678,802,227 | 100% | ||
future24 | 0 | 8,727,382,465 | 100% | ||
nonlinearone | 0 | 71,091,611,921 | 100% | ||
jrcornel | 0 | 118,221,577,495 | 100% | ||
vegascomic | 0 | 22,307,816,640 | 100% | ||
rmach | 0 | 5,461,988,157 | 100% | ||
nano2nd | 0 | 50,313,057 | 100% | ||
thewhitewolf | 0 | 2,147,705,687 | 100% | ||
ioc | 0 | 1,321,006,146,804 | 100% | ||
lamech-m | 0 | 3,205,457,104 | 100% | ||
cryptomental | 0 | 10,290,380,706 | 100% | ||
steevc | 0 | 13,004,827,654 | 100% | ||
mada | 0 | 41,083,813,093 | 100% | ||
levycore | 0 | 14,897,928,494 | 100% | ||
andrewawerdna | 0 | 30,201,394,312 | 100% | ||
bitchplease | 0 | 59,103,811 | 100% | ||
claudia | 0 | 3,130,785,888 | 100% | ||
someguy123 | 0 | 138,629,324,791 | 100% | ||
nulliusinverba | 0 | 1,603,331,455 | 76% | ||
runridefly | 0 | 8,067,342,122 | 100% | ||
davidjkelley | 0 | 2,425,622,072 | 100% | ||
canadian-coconut | 0 | 68,194,529,417 | 100% | ||
digital-wisdom | 0 | 18,715,552,281 | 100% | ||
ethical-ai | 0 | 4,125,981,858 | 100% | ||
dailybitcoinnews | 0 | 9,328,560,056 | 100% | ||
immortalfame | 0 | 13,422,908,743 | 100% | ||
jwaser | 0 | 8,344,497,484 | 100% | ||
debmund | 0 | 809,356,135 | 100% | ||
the-ego-is-you | 0 | 1,973,835,733 | 100% | ||
goose | 0 | 8,295,377,552 | 100% | ||
jsg | 0 | 102,552,718,988 | 100% | ||
ct-gurus | 0 | 123,029,571 | 76% | ||
tracemayer | 0 | 5,096,536,052 | 76% | ||
bitcoinparadise | 0 | 4,644,043,929 | 95% | ||
funnyman | 0 | 30,923,242,055 | 100% | ||
portuguesinha | 0 | 1,286,224,847 | 100% | ||
anomaly | 0 | 630,888,517 | 100% | ||
herpetologyguy | 0 | 37,861,414,400 | 100% | ||
drac59 | 0 | 759,009,938 | 100% | ||
strong-ai | 0 | 4,102,171,462 | 100% | ||
tygrathnuarin | 0 | 158,981,158 | 100% | ||
barrshaktilar | 0 | 160,909,500 | 100% | ||
minofenid | 0 | 160,755,952 | 100% | ||
siniceku | 0 | 2,463,909,597 | 100% | ||
ditarcanekiller | 0 | 157,455,773 | 100% | ||
bosjaya | 0 | 481,222,555 | 100% | ||
dhrms | 0 | 139,202,467 | 76% | ||
trifevilona | 0 | 139,674,990 | 100% | ||
elokat | 0 | 158,458,919 | 100% | ||
chazerrez | 0 | 151,588,197 | 100% | ||
shataxemanabor | 0 | 148,364,323 | 100% | ||
food-creator | 0 | 1,274,942,591 | 100% | ||
hudorshagami | 0 | 152,371,914 | 100% | ||
bleujay | 0 | 53,830,856,798 | 100% | ||
rishi556 | 0 | 602,756,658 | 100% | ||
denrecirez | 0 | 150,928,516 | 100% | ||
gifts | 0 | 52,488,265 | 100% | ||
mipob | 0 | 804,732,205 | 100% | ||
vannour | 0 | 5,523,425,474 | 100% | ||
coleretton | 0 | 150,428,821 | 100% | ||
marev | 0 | 152,847,337 | 100% | ||
leveretty | 0 | 143,773,068 | 100% | ||
laurareverria | 0 | 146,784,355 | 100% | ||
barals | 0 | 146,638,202 | 100% | ||
mereonnizi | 0 | 149,648,029 | 100% | ||
exploretraveler | 0 | 48,926,380,779 | 100% | ||
dgiors | 0 | 47,014,063,391 | 100% | ||
marialin | 0 | 2,949,536,100 | 100% | ||
steemsports | 0 | 525,122,840,092 | 100% | ||
asarez | 0 | 136,840,204 | 100% | ||
wesres | 0 | 145,807,221 | 100% | ||
salkree | 0 | 139,374,787 | 100% | ||
kagalkiso | 0 | 145,140,939 | 100% | ||
steemvest17 | 0 | 11,301,656,478 | 100% | ||
felhagara | 0 | 139,920,383 | 100% | ||
zaxar | 0 | 139,658,153 | 100% | ||
shadowness | 0 | 142,075,885 | 100% | ||
ianstrat | 0 | 877,035,906 | 100% | ||
kindermix | 0 | 143,630,575 | 100% | ||
dares | 0 | 137,892,934 | 100% | ||
newfermiones | 0 | 128,395,266 | 100% | ||
sochul | 0 | 1,078,062,174,247 | 100% | ||
mokluc | 0 | 14,571,141,254 | 100% | ||
ianboil | 0 | 625,067,938 | 76% | ||
mapesa | 0 | 10,237,819,692 | 100% | ||
dragosroua | 0 | 44,819,836,954 | 100% | ||
voterinterstpool | 0 | 130,416,019 | 95% | ||
raluca | 0 | 137,131,583 | 100% | ||
astrologybits | 0 | 434,334,968 | 100% | ||
xochicotta | 0 | 4,453,131,876 | 100% | ||
adelja | 0 | 334,711,602 | 100% | ||
jfesrom | 0 | 5,983,231,871 | 100% | ||
cih | 0 | 464,620,460 | 100% | ||
steempredict | 0 | 527,224,078 | 100% | ||
floridagypsy | 0 | 4,205,437,752 | 100% | ||
gutzofter | 0 | 593,066,473 | 100% | ||
godzilla | 0 | 552,613,256 | 100% | ||
vratnik | 0 | 668,824,844 | 100% | ||
iamthebeloved | 0 | 592,214,438 | 100% | ||
elijahgentry | 0 | 591,902,895 | 100% | ||
marto | 0 | 401,918,224 | 100% | ||
celsogoya | 0 | 721,143,519 | 100% | ||
collabornation | 0 | 516,872,049 | 100% | ||
sudipdasin | 0 | 586,275,667 | 100% | ||
josem11200 | 0 | 538,950,381 | 100% | ||
lindo | 0 | 51,440,517 | 76% | ||
antro735 | 0 | 55,508,048 | 100% |
Thanks, that is helpful. I'm playing with the idea of becoming a witness an this will save me a ton of time.
author | dragosroua |
---|---|
permlink | re-someguy123-steem-in-a-box-ready-for-hf15-v0-15-0-20161107t065524010z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-11-07 06:55:21 |
last_update | 2016-11-07 06:55:21 |
depth | 1 |
children | 0 |
last_payout | 2016-12-08 14:57:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 108 |
author_reputation | 372,798,229,806,288 |
root_title | "Steem-in-a-Box - Ready for HF15 (v0.15.0)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,704,498 |
net_rshares | 0 |
This post has been linked to from another place on Steem. - [The Daily Tribune: Most Undervalued Posts of Nov 07 - Part I](https://steemit.com/curation/@screenname/the-daily-tribune-most-undervalued-posts-of-nov-07---part-i) by @screenname Learn more about and upvote to support [**linkback bot v0.5**](https://steemit.com/steemit/@ontofractal/steem-linkback-bot-v0-5-the-reddit-awareness-release). Flag this comment if you don't want the bot to continue posting linkbacks for your posts. Built by @ontofractal
author | linkback-bot-v0 |
---|---|
permlink | re-someguy123-steem-in-a-box-ready-for-hf15-v0-15-0-linkbacks |
category | steem |
json_metadata | {} |
created | 2016-11-08 19:15:00 |
last_update | 2016-11-08 19:15:00 |
depth | 1 |
children | 0 |
last_payout | 2016-12-08 14:57:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 520 |
author_reputation | 1,915,954,976,722 |
root_title | "Steem-in-a-Box - Ready for HF15 (v0.15.0)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,724,164 |
net_rshares | 0 |
Just a quick question. How do we promote posts now? There used to be a button, but I don't see it now and there are currently only 2 promoted posts.
author | steevc |
---|---|
permlink | re-someguy123-steem-in-a-box-ready-for-hf15-v0-15-0-20161108t105002946z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-11-08 10:48:51 |
last_update | 2016-11-08 10:48:51 |
depth | 1 |
children | 2 |
last_payout | 2016-12-08 14:57:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 148 |
author_reputation | 1,407,070,025,801,033 |
root_title | "Steem-in-a-Box - Ready for HF15 (v0.15.0)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,720,727 |
net_rshares | 0 |
There's a bug, so they disabled the promotion feature for now. I promoted my post before the bug occurred. https://steemit.com/steemit/@steemitblog/promoted-posts-bug
author | someguy123 |
---|---|
permlink | re-steevc-re-someguy123-steem-in-a-box-ready-for-hf15-v0-15-0-20161108t113120519z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steemit/@steemitblog/promoted-posts-bug"]} |
created | 2016-11-08 11:31:21 |
last_update | 2016-11-08 11:31:21 |
depth | 2 |
children | 1 |
last_payout | 2016-12-08 14:57:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 167 |
author_reputation | 103,945,664,283,580 |
root_title | "Steem-in-a-Box - Ready for HF15 (v0.15.0)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,721,049 |
net_rshares | 0 |
Ah. Thanks
author | steevc |
---|---|
permlink | re-someguy123-re-steevc-re-someguy123-steem-in-a-box-ready-for-hf15-v0-15-0-20161108t114917020z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-11-08 11:48:06 |
last_update | 2016-11-08 11:48:06 |
depth | 3 |
children | 0 |
last_payout | 2016-12-08 14:57:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 1,407,070,025,801,033 |
root_title | "Steem-in-a-Box - Ready for HF15 (v0.15.0)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,721,187 |
net_rshares | 0 |
My Man! Wish I'd come to this thread long ago. Took a couple fixes to data/witness_node_data_dir/config.ini but it's up and running now. Let me know when/if you're on Steemit Chat, I have a question. Thanks again!
author | vegascomic |
---|---|
permlink | re-someguy123-steem-in-a-box-ready-for-hf15-v0-15-0-20161117t054218741z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-11-17 05:42:18 |
last_update | 2016-11-17 05:42:18 |
depth | 1 |
children | 0 |
last_payout | 2016-12-08 14:57:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 217 |
author_reputation | 37,110,678,013,541 |
root_title | "Steem-in-a-Box - Ready for HF15 (v0.15.0)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,785,707 |
net_rshares | 0 |