create account

Step by Step Guide to setup Hive Engine Witness from scratch by bala41288

View this thread on: hive.blogpeakd.comecency.com
· @bala41288 · (edited)
$18.27
Step by Step Guide to setup Hive Engine Witness from scratch
Today I took up a task to set up a witness server for `neoxianminer` account. I thought it would be better to document the steps for myself to use in the future and make a post so that anyone who would like to get started can make use of this guide. There is already a [nice guide to setup Hive Engine Witness](https://hive.blog/engine/@rishi556/how-to-set-up-a-hive-engine-witness-step-by-step-guide) made by @rishi556. I would like to go a little more elaborate and cover some more details in this guide. This article is going to be lengthy so please bear with me. 

![image.png](https://images.hive.blog/DQmPjM3NFcjMsfnFs3QsUvArs3n89CaqMKbANpnbabCm1iT/image.png)

## Prerequisites

It is an assumption that the users who are trying to set up the witness server are familiar with the below topics:

- Connecting to a Linux server, either with a password or through SSH. 
- Basic troubleshooting
- Securing your server

## Server Requirements

The below specs are the bare minimum requirements for setting up the witness server. We tried with specs lower than this but we had issues during the test run. Especially during the setup where we will have to restore the database from a snapshot and it failed multiple times if specs are lower than this. 

### Minimum Requirements:

Linux (Any version should be okay)
2 GB
50 GB SSD
4 cores

I would like to personally recommend getting a server from Privex where we get the above specs for 10 $ a month. Privex (VPS-SE) 2G RAM, 35G SSD, 4 cores, Unmetered 100mbps with an additional extension to 50G storage. In this guide, I will be using Ubuntu 20.04.2 provisioned through Privex. 

**EDIT:** Initially the hard disk requirement was 35G SSD but is not sufficient anymore. Currently, a 130G SSD should be sufficient and it is also good to use Nvme to have it more efficient. (I would recommend contacting me or Hive Engine discord for the current requirement. There is a high possibility that the value displayed here can be outdated.) If you are using Privex as your service provider, you can write an email to Privex to get it increased. 

![image.png](https://images.hive.blog/DQmYDyZLSmHMDdTRBSrGmVAqDzRnVqs6cavpygAf3qLknrs/image.png)

One good thing about Privex servers is that we can pay using crypto and it also accepts Hive as a mode of payment. I haven't started using Privex yet but if you would like to order a server, you can use the below referral link of @reazuliqbal. 

https://www.privex.io/?r=reazuliqbal

---

### Step 1: Initial server setup

There are some basic utilities that need to be installed to make the server suitable. Below are the commands that can be used to set up these utilities. You can google each one of them to understand why they are required. 

```
sudo apt-get update -y 
sudo apt-get upgrade -y 
sudo apt install git -y 
sudo apt install screen -y 
sudo apt install ufw -y
sudo apt-get install -y fail2ban
```
I will cover the major things like nodejs and mongodb in separate steps.

---

### Step 2 : Installing Nodejs

Installing nodejs is the first step. We have to install Node 13+. I had version 12 running and I got an error message during my testnet setup. I then upgraded it to version 15. The error message would look like the below:

![image.png](https://images.hive.blog/DQmaqdR2s5pXnz3wiW8fPMrjHMZjJ9oQJ3FVsgD7unQzqp3/image.png)
(If the image is not clear, right-click and open in new tab to see it a little bigger.)

This [link](https://github.com/nodesource/distributions/blob/master/README.md) provides the instructions for installing nodejs on different Linux machines. In our case, we are using Ubuntu, and below are the commands. These commands will install both nodejs as well as npm. 

```
# Using Ubuntu
curl -sL https://deb.nodesource.com/setup_15.x | sudo -E bash -
sudo apt-get install -y nodejs

# Verify the version using the below commands
node -v
npm -v
```
---

### Step 2: Installing Mongodb

It is required to install the mongo server version 4.4. Below are the commands to install Mongodb. This will install all the packages that would be necessary. 
```
wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add - 
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list 
sudo apt-get update 
sudo apt-get install -y mongodb-org
```
The above commands would install the packages but don't start the service automatically. The below commands can be used: 

```
# Start the service
sudo systemctl start mongod.service
# Check the status of the service
sudo systemctl status mongod
# enable the MongoDB service to start up at boot
sudo systemctl enable mongod
# Check the connection status using the following command
mongo --eval 'db.runCommand({ connectionStatus: 1 })'
```

Securing the mongodb instance is very important. Especially if you are connecting to the instance from outside with a direct connection URI, it is important you have all the security in place. If your connection is always through an SSH tunnel, then it should be okay. [This article](https://www.digitalocean.com/community/tutorials/how-to-secure-mongodb-on-ubuntu-20-04) provides additional information about securing your mongodb instance. 

---

### Step 3: Enabling replication in Mongodb

This is the next important step for the higher availability of your node. [This article](https://www.mongodb.com/blog/post/backup-vs-replication-why-do-you-need-both) provides you more details on why it is good to enable replication. Below are the steps to enable replication:

We have to navigate to the below path and open it in our favorite editor. You can either use vim or nano. It is your choice. 

```
sudo nano /etc/mongod.conf
```
You will find a line `#replication:` commented out there. We have to uncomment that line by adding removing the `#` and add the following:

```
replication: 
  replSetName: "rs0"
```
Adding two space before `replSetName: "rs0"` is important. Once it is done, you can save the text editor with the command `Ctrl+O, then Enter, and then Ctrl+X`.

Now the mongod instance should be restarted. You can either restart it directly with the below command or stop it and start it again. 

```
sudo systemctl restart mongod
OR
sudo systemctl stop mongod
sudo systemctl start mongod
```
Now we will have to activate the replica set with the below commands:

```
mongo 
rs.initiate()
```
Once that is done, you will see the below. 

![image.png](https://images.hive.blog/DQmfNeTdmAmGLQWnww72nkiAmZM1bH2bWitJM5KyGzBhSFr/image.png)
(If the image is not clear, right-click and open in new tab to see it a little bigger.)

---

### Step 3: Creating a swapfile

This step is mandatory and exclusively for people who are running the witness server in bare minimum requirements with 2GB RAM mentioned at the start of the article. This step will not be required if you are going to have a bigger server with RAM of more than 4GB. You can skip this step and move to the next step. 

While doing the setup on testnet, we had an issue with mongodb import. 2 GB RAM was not enough for the import activity. But creating a swap file for 2GB the import issue was handled. Below are the basic commands and more instructions are available in [this article](https://linuxize.com/post/create-a-linux-swap-file/). 

```
sudo fallocate -l 2G /swapfile 
sudo chmod 600 /swapfile 
sudo mkswap /swapfile 
sudo swapon /swapfile
# Use this command to verify
sudo swapon --show
# This command will show the available free space along with the swapfile 
sudo free -h

```

Once the import is complete, this swapfile may not be required but there is no harm in retaining it. 

---

### Step 4: Getting the latest snapshot and importing it

This step is to download the latest snapshot of the mongodb and import it. Some people might have a question as to why a snapshot would be required. Someone asked a similar question to @eonwarped and look at the below conversation to know the answer. 

![image.png](https://images.hive.blog/DQmW3XVdtehAD8ndTw8J6mDFJPM6SWKnxD3BqAWg7PtZjy6/image.png)

At the time of writing this article below is the link to the latest official snapshot during the launch. 

[http://api2.hive-engine.com/hsc_20210203_b50993579.archive](http://api2.hive-engine.com/hsc_20210203_b50993579.archive)

In addition to the above, there is also another backup set maintained by @rishi556. He doesn't guarantee it would always be updated with the latest snapshot but you can check to see if you are lucky to find any latest snapshots there. 

https://cdn.rishipanthee.com/hiveengine/

In this example, I'm using the official snapshot from Hive Engine. Below are the commands. 

```
# Create a directory
mkdir backups
# Get the file
wget http://api2.hive-engine.com/hsc_20210203_b50993579.archive

```

In the above command, the file name should match with the file name from the snapshot you are trying to download. Based on your server's network speed and performance this activity would take some time. Wait patiently till the download is complete. 

After the download is 100 percent, the next step is to import the database into your mongodb server. Make sure you are staying in the same `backup` directory. But before doing that it is recommended to create a screen. The screen is a utility that helps in creating a session for the activity you do. By doing this, even if you get disconnected from the server, the activity that you initiated would still be active and you can get back to that activity after connecting again. This utility is now a part of the base Linux setup itself. If it is not found, you can install it manually. 

```
screen -S reload 
mongorestore --gzip --archive=hsc_20210203_b50993579.archive
```
If you are using the bare minimum specs, then it would take close to 2 hours or even more to complete importing. Of course, it also depends on your server's network speed as well. On a better server, this would take less than 10 to 15 mins to get imported. 

In the meantime, we can either wait or complete the other steps. I would say let's wait till the import is complete. If you get disconnected from the server. The below command will help you get back to your instance. 

```
screen -r reload
```

Once the import is complete and all good, you can use ctrl+D to disconnect from the screen instance. 

---

### Step 5: Checkout Hive Engine code

If you are in your backup directly, you might have to come back to the main directly with the command `cd ~` or `cd ..` and use the following commands. I usually create a directly called `apps` and have all my applications there instead of keeping it in the root directly. Whether to create it or not is your decision. 

```
mkdir apps
cd apps
git clone https://github.com/hive-engine/steemsmartcontracts.git 
cd steemsmartcontracts 
git checkout hive-engine

```
Though we have moved to Hive, this repository name is still referring to Steem. I guess there is no one to update this terminology in the repo. But that shouldn't be a big deal. Right now the branch I'm using is `hive-engine`. If you are checking this article at a later point in time, reach out to Hive-engine discord to check with other witnesses what would be the latest branch you should be checking out. 

We have to now install the dependencies with the help of the following command. Make sure you are inside the directory `steemsmartcontracts` before doing this. 

```
npm install
```
---

### Step 8: Configure the application

There are two files in which the configuration will need to be updated. 

`config.json` and `.env`

First, let's start with the config.json file. When you open the file with nano with the following command, 

```
nano config.json
```
In the above file, two things need to be updated. `"startHiveBlock":` should be set to `0` and `"witnessEnabled:"` should be set to `true`. After updating the file should like similar to below:

![image.png](https://images.hive.blog/DQmWvNFFetexkmpxcrgAJx1MhyoBJTv1Xw8oVLqVZ5a5Cpb/image.png)

You can also change the streamNodes to your favorable RPC nodes. If you have your own private node, then it would be better to stream faster. You can now save this file and exit. 

Next is to change the .env file. This is where we enter the witness account information and private key. But we may not have .env file in this folder. We have to first create one by copying .env.example

```
cp .env.example .env 
nano .env
```
There would be 3 fields to enter. First the active key of the account, the second would the account name and the third would be the IP address of the server. 

The next step would be to enable the ports with the following commands. 

```
sudo ufw allow ssh 
sudo ufw allow 5001 
sudo ufw enable
```

5001 is the witness port and it is important to enabling it for the other witnesses to connect to your witness. If you are going to make the RPC node public, you can also allow port 5000. 

If you are using AWS, then you have to enable the port outside the server in the network configuration. You can check and make changes accordingly. 

---

### Step 7: Install pm2 and start the app using pm2

Now we have the source code and we have already made the necessary changes to the configuration file. The application can be directly started with the node command. But if there are any server issues or if the server restarts by any chance, we will have to again manually run the application. 

Using pm2 will make things handy. This will help us run the application as a service. Pm2 also comes with other utilities to make it easier to manage the application. I will leave it to you guys to explore more about pm2 and understand. 

```
sudo npm i -g pm2
```
In the above command -g is important to deploy the application globally to make it available globally for other applications as well. 

Now that all the steps are done, we are almost in the final step to start the application. The following command can be used. 

```
pm2 start app.js --no-treekill --kill-timeout 10000 --no-autorestart --name engwit
```
Once the above command is executed you will be able to see below where the application is up and running. 

![image.png](https://images.hive.blog/DQmWUX7UcmEQBVHpBpZqLMAtHTjZceUAJVHVfpwHyhAJMHM/image.png)

You can start watching the logs to understand what is happening in the server. The below command can be used to check the logs.

```
pm2 logs engwit
```
The log should say something like the below and keep rolling. 

![image.png](https://images.hive.blog/DQmSJxDc77ELRZge5FFwpEquvzYsKbAnnYR7TD6ho2usNZS/image.png)

We have to now wait until the part where the log says `Hive blockchain is 0 blocks ahead`. That is when we are ready to register the witness. This can take some time to get to the latest block. If we have powerful nodes in the configuration, it shouldn't take a lot of time. The older the snapshot you have restored, the longer it takes to get to the head block. You can now just sit and relax and let it happen. You don't have to stay connected with the server until this happens. 

---

### Step 8: Register your witness

This is the final step you need to do to complete the witness setup. In the config file, we would have enabled the witness but we have to register the witness with the below command. 

```
node witness_action.js register
```
The above command should be executed from inside steemsmartcontracts directory. If you are not inside that, go `cd` inside the directory and execute the above command. 

With this all the steps are complete and you should be able to see your name displayed on this page. https://tribaldex.com/witnesses. Use that page to vote for the witness. There are a few other alternative sites where you can check your witness status and the number of votes received etc. 

https://primersion.com/he-witnesses
https://cdn.rishipanthee.com/enginewit.html

For you to start participating in the rounds, you will need a bare minimum witness vote with WORKERBEE. 

---

I hope I covered everything in this article. If you find something missing, please let me know. I can edit this article accordingly. 

If you consider this guide helpful and if you have WORKERBEE staked in your account, please consider voting me as a witness. I'm running my Hive-Engine witness with the account @kanibot. 

---

Posted with [STEMGeeks](https://stemgeeks.net)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 259 others
properties (23)
authorbala41288
permlinkstep-by-step-guide-to-setup-hive-engine-witness-from-scratch
categoryhive-163521
json_metadata{"tags":["hiveengine","witness","setup","guide","stem","neoxian","hive","palnet"],"users":["rishi556","reazuliqbal","eonwarped","rishi556","kanibot"],"image":["https://images.hive.blog/DQmPjM3NFcjMsfnFs3QsUvArs3n89CaqMKbANpnbabCm1iT/image.png","https://images.hive.blog/DQmYDyZLSmHMDdTRBSrGmVAqDzRnVqs6cavpygAf3qLknrs/image.png","https://images.hive.blog/DQmaqdR2s5pXnz3wiW8fPMrjHMZjJ9oQJ3FVsgD7unQzqp3/image.png","https://images.hive.blog/DQmfNeTdmAmGLQWnww72nkiAmZM1bH2bWitJM5KyGzBhSFr/image.png","https://images.hive.blog/DQmW3XVdtehAD8ndTw8J6mDFJPM6SWKnxD3BqAWg7PtZjy6/image.png","https://images.hive.blog/DQmWvNFFetexkmpxcrgAJx1MhyoBJTv1Xw8oVLqVZ5a5Cpb/image.png","https://images.hive.blog/DQmWUX7UcmEQBVHpBpZqLMAtHTjZceUAJVHVfpwHyhAJMHM/image.png","https://images.hive.blog/DQmSJxDc77ELRZge5FFwpEquvzYsKbAnnYR7TD6ho2usNZS/image.png"],"links":["https://hive.blog/engine/@rishi556/how-to-set-up-a-hive-engine-witness-step-by-step-guide","https://www.privex.io/?r=reazuliqbal","https://github.com/nodesource/distributions/blob/master/README.md","https://deb.nodesource.com/setup_15.x","https://www.mongodb.org/static/pgp/server-4.4.asc","https://repo.mongodb.org/apt/ubuntu","https://www.digitalocean.com/community/tutorials/how-to-secure-mongodb-on-ubuntu-20-04","https://www.mongodb.com/blog/post/backup-vs-replication-why-do-you-need-both","https://linuxize.com/post/create-a-linux-swap-file/","http://api2.hive-engine.com/hsc_20210203_b50993579.archive"],"app":"stemgeeks/0.1","format":"markdown","canonical_url":"https://stemgeeks.net/@bala41288/step-by-step-guide-to-setup-hive-engine-witness-from-scratch","thumbnails":["https://images.hive.blog/DQmPjM3NFcjMsfnFs3QsUvArs3n89CaqMKbANpnbabCm1iT/image.png","https://images.hive.blog/DQmYDyZLSmHMDdTRBSrGmVAqDzRnVqs6cavpygAf3qLknrs/image.png","https://images.hive.blog/DQmaqdR2s5pXnz3wiW8fPMrjHMZjJ9oQJ3FVsgD7unQzqp3/image.png","https://images.hive.blog/DQmfNeTdmAmGLQWnww72nkiAmZM1bH2bWitJM5KyGzBhSFr/image.png","https://images.hive.blog/DQmW3XVdtehAD8ndTw8J6mDFJPM6SWKnxD3BqAWg7PtZjy6/image.png","https://images.hive.blog/DQmWvNFFetexkmpxcrgAJx1MhyoBJTv1Xw8oVLqVZ5a5Cpb/image.png","https://images.hive.blog/DQmWUX7UcmEQBVHpBpZqLMAtHTjZceUAJVHVfpwHyhAJMHM/image.png","https://images.hive.blog/DQmSJxDc77ELRZge5FFwpEquvzYsKbAnnYR7TD6ho2usNZS/image.png"]}
created2021-02-05 12:19:03
last_update2022-02-09 07:20:00
depth0
children36
last_payout2021-02-12 12:19:03
cashout_time1969-12-31 23:59:59
total_payout_value9.428 HBD
curator_payout_value8.838 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16,376
author_reputation1,559,244,554,291,447
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,724,389
net_rshares53,725,316,495,252
author_curate_reward""
vote details (323)
@alokkumar121 ·
You explained steps in easy way so whoever is planning to setup HE witness can get help from the post. 
With the recent update Hive-engine is moving towards decentralization. Nice post
👍  , , ,
properties (23)
authoralokkumar121
permlinkqo4c7d
categoryhive-163521
json_metadata{"tags":["stem"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@alokkumar121/qo4c7d"}
created2021-02-06 17:50:18
last_update2021-02-06 17:50:18
depth1
children0
last_payout2021-02-13 17:50: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_length184
author_reputation2,489,690,910,720,182
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,746,033
net_rshares11,226,626,651
author_curate_reward""
vote details (4)
@beerlover ·
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @bala41288, here is a little bit of <code>BEER</code> from @pixresteemer for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
properties (22)
authorbeerlover
permlinkre-bala41288-step-by-step-guide-to-setup-hive-engine-witness-from-scratch-20210205t123347994z
categoryhive-163521
json_metadata{"app":"beerlover/2.0"}
created2021-02-05 12:33:48
last_update2021-02-05 12:33:48
depth1
children0
last_payout2021-02-12 12:33: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_length525
author_reputation25,851,316,436,857
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,724,526
net_rshares0
@bhattg ·
>For you to start participating in the rounds, you will need a bare minimum witness vote with WORKERBEE.

How much workerbee I need to do that 
properties (22)
authorbhattg
permlinkre-bala41288-202126t195151420z
categoryhive-163521
json_metadata{"tags":["hiveengine","witness","setup","guide","stem","neoxian","hive","palnet"],"app":"ecency/3.0.13-vision","format":"markdown+html"}
created2021-02-06 14:21:51
last_update2021-02-06 14:21:51
depth1
children1
last_payout2021-02-13 14:21: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_length144
author_reputation1,180,931,882,547,542
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,743,135
net_rshares0
@bala41288 ·
This is only for the witness. Any small vote will make them participate in the vote. It is just that their vote weight shouldn't be 0. 
properties (22)
authorbala41288
permlinkre-bhattg-2021210t233223333z
categoryhive-163521
json_metadata{"tags":["hiveengine","witness","setup","guide","stem","neoxian","hive","palnet"],"app":"ecency/3.0.13-vision","format":"markdown+html"}
created2021-02-10 18:02:24
last_update2021-02-10 18:02:24
depth2
children0
last_payout2021-02-17 18:02: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_length135
author_reputation1,559,244,554,291,447
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,810,665
net_rshares0
@customcog ·
Thank
 You
 So
 Much : )

I'm getting our VPS now.  Do you have a referral code?

> valid registered referral code or email address

I'd like to give back to you every way possible !!
👍  , , ,
properties (23)
authorcustomcog
permlinkqo2z0n
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2021-02-06 00:07:36
last_update2021-02-06 00:07:36
depth1
children3
last_payout2021-02-13 00: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_length183
author_reputation341,524,818,823
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,734,845
net_rshares10,941,244,141
author_curate_reward""
vote details (4)
@bala41288 ·
That's nice. I don't have mine but you can use Reazuliqbal's link that I have mentioned in the post. 

https://www.privex.io/?r=reazuliqbal
properties (22)
authorbala41288
permlinkqo3te2
categoryhive-163521
json_metadata{"tags":["stem"],"links":["https://www.privex.io/?r=reazuliqbal"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@bala41288/qo3te2"}
created2021-02-06 11:03:39
last_update2021-02-06 11:03:39
depth2
children2
last_payout2021-02-13 11:03: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_length139
author_reputation1,559,244,554,291,447
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,740,710
net_rshares0
@customcog ·
Thanks again for your help!!! : )

I won't boar you with the details but I had to go with OVH as the provider.

> See you on the other side
properties (22)
authorcustomcog
permlinkqo4xka
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2021-02-07 01:31:21
last_update2021-02-07 01:31:21
depth3
children1
last_payout2021-02-14 01:31: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_length139
author_reputation341,524,818,823
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,753,598
net_rshares0
@frankbacon · (edited)
$0.07
HIVE!D
for @customcog
https://media.giphy.com/media/bC8EUWeuy5OIx6o7ul/giphy.gif

https://youtu.be/BXBLYEeF5vs
👍  ,
properties (23)
authorfrankbacon
permlinkqo2l5d
categoryhive-163521
json_metadata{"users":["customcog"],"image":["https://media.giphy.com/media/bC8EUWeuy5OIx6o7ul/giphy.gif","https://img.youtube.com/vi/BXBLYEeF5vs/0.jpg"],"app":"hiveblog/0.1","links":["https://youtu.be/BXBLYEeF5vs"]}
created2021-02-05 19:07:57
last_update2021-02-05 23:48:06
depth1
children2
last_payout2021-02-12 19:07:57
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.034 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation36,630,927,301,955
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,731,469
net_rshares341,484,159,967
author_curate_reward""
vote details (2)
@bala41288 ·
Thanks. :) Cheers! !BEER
👍  
properties (23)
authorbala41288
permlinkqo3tfu
categoryhive-163521
json_metadata{"tags":["stem"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@bala41288/qo3tfu"}
created2021-02-06 11:04:45
last_update2021-02-06 11:04:45
depth2
children0
last_payout2021-02-13 11:04:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation1,559,244,554,291,447
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,740,723
net_rshares51,635,998,822
author_curate_reward""
vote details (1)
@beerlover ·
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @frankbacon, here is a little bit of <code>BEER</code> from @bala41288 for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
👍  
properties (23)
authorbeerlover
permlinkre-frankbacon-qo2l5d-20210206t110553993z
categoryhive-163521
json_metadata{"app":"beerlover/2.0"}
created2021-02-06 11:05:54
last_update2021-02-06 11:05:54
depth2
children0
last_payout2021-02-13 11:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length523
author_reputation25,851,316,436,857
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,740,735
net_rshares51,472,056,977
author_curate_reward""
vote details (1)
@franksgimp ·
I am SOOO PUMPED FOR THIS!!!!


![Time for @coingimp to take NOTE.jpg](https://images.hive.blog/DQmQkF1GcgCWdFx85bQpNNMCaFs5gBRaEvdpmLTcD5xHyrz/Time%20for%20@coingimp%20to%20take%20NOTE.jpg)
properties (22)
authorfranksgimp
permlinkqo551r
categoryhive-163521
json_metadata{"image":["https://images.hive.blog/DQmQkF1GcgCWdFx85bQpNNMCaFs5gBRaEvdpmLTcD5xHyrz/Time%20for%20@coingimp%20to%20take%20NOTE.jpg"],"app":"hiveblog/0.1"}
created2021-02-07 04:13:03
last_update2021-02-07 04:13:03
depth1
children0
last_payout2021-02-14 04:13: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_length190
author_reputation221,070,101,247
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,754,884
net_rshares0
@gangstalking ·
Electronic-terrorism, voice to skull and neuro monitoring on Hive and Steem. You can ignore this, but your going to wish you didnt soon. This is happening whether you believe it or not. https://ecency.com/fyrstikken/@fairandbalanced/i-am-the-only-motherfucker-on-the-internet-pointing-to-a-direct-source-for-voice-to-skull-electronic-terrorism
👎  
properties (23)
authorgangstalking
permlinkre-bala41288-step-by-step-guide-to-setup-hive-engine-witness-from-scratch-20220209t072007622z
categoryhive-163521
json_metadata{"app":"hive-bot/0.6.3"}
created2022-02-09 07:20:09
last_update2022-02-09 07:20:09
depth1
children0
last_payout2022-02-16 07:20: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_length343
author_reputation-67,597,107,868,724
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,292,345
net_rshares-2,765,097,533
author_curate_reward""
vote details (1)
@gothmzknight · (edited)
$0.09
Thanks for creating this post. I know you added to check with the Hive-Engine discord to get the latest requirements. I figured I'd add them to my reply in case anyone comes across this in the near future. I started with 80GB but that filled up during the snapshot restore. I upgraded to 160GB. My node is currently running & synced with around 35GB free. Also, the latest snapshots can be found at https://snap.primersion.com/   Anyone setting up a witness node or even interested in setting one up, definitely check out the Hive-Engine discord. They're a very welcoming/helpful group.
👍  
properties (23)
authorgothmzknight
permlinkr7hpmz
categoryhive-163521
json_metadata{"tags":["stem"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@gothmzknight/r7hpmz","links":["https://snap.primersion.com/"]}
created2022-02-18 07:47:27
last_update2022-02-18 23:16:03
depth1
children1
last_payout2022-02-25 07:47:27
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.044 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length586
author_reputation287,439,177,452
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,579,947
net_rshares86,698,166,054
author_curate_reward""
vote details (1)
@bala41288 ·
Cheers! Welcome to the witness club. 🙂
👍  
properties (23)
authorbala41288
permlinkre-gothmzknight-2022220t9191270z
categoryhive-163521
json_metadata{"tags":["hive-163521","stem"],"app":"ecency/3.0.25-mobile","format":"markdown+html"}
created2022-02-20 03:49:03
last_update2022-02-20 03:49:03
depth2
children0
last_payout2022-02-27 03:49: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_length38
author_reputation1,559,244,554,291,447
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,633,006
net_rshares1,239,425,086
author_curate_reward""
vote details (1)
@gungunkrishu ·
Nice and elaborative details on setting up the Hive-engine witness.. I read somewhere that Top 4 witnesses qualify for the BEE rewards.. is that right? Nice work overall. Cheers
👍  , , ,
properties (23)
authorgungunkrishu
permlinkqo276s
categoryhive-163521
json_metadata{"tags":["stem"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@gungunkrishu/qo276s"}
created2021-02-05 14:06:30
last_update2021-02-05 14:06:30
depth1
children2
last_payout2021-02-12 14:06: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_length177
author_reputation1,361,736,131,403,578
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,725,572
net_rshares11,026,277,040
author_curate_reward""
vote details (4)
@eturnerx ·
$0.03
Currently, all witness can earn some reward based, but it's not much for those not in the top six. Soon, this will be changed to the top 10 witnesses.
👍  , , , ,
properties (23)
authoreturnerx
permlinkre-gungunkrishu-202126t43544732z
categoryhive-163521
json_metadata{"tags":["ecency"],"app":"ecency/3.0.14-mobile","format":"markdown+html"}
created2021-02-05 15:35:48
last_update2021-02-05 15:35:48
depth2
children0
last_payout2021-02-12 15:35:48
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation103,695,946,143,660
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,726,721
net_rshares171,117,925,041
author_curate_reward""
vote details (5)
@rishi556 ·
Top 6 are guaranteed each round for now with everyone below that having a chance each round.
👍  , , ,
properties (23)
authorrishi556
permlinkre-gungunkrishu-qo2b70
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2021.01.3"}
created2021-02-05 15:33:00
last_update2021-02-05 15:33:00
depth2
children0
last_payout2021-02-12 15:33: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_length92
author_reputation134,528,170,600,561
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,726,675
net_rshares10,897,932,796
author_curate_reward""
vote details (4)
@pixresteemer ·
<center>![pixresteemer_incognito_angel_mini.png](https://files.peakd.com/file/peakd-hive/pixresteemer/8h7BBw1w-pixresteemer_incognito_angel_mini.png)</center><center>Bang, I did it again... I just rehived your post!</center><center>Week 43 of my [contest](/hive-179017/@pixresteemer/the-re-hive-contest-results-week-42-and-start-week-43) just started...you can now check the winners of the previous week!</center><center>!BEER</center><center><sub>7</sub></center>
properties (22)
authorpixresteemer
permlink20210205t123250929z
categoryhive-163521
json_metadata{"tags":["pixresteemer"],"app":"pixresteemer"}
created2021-02-05 12:32:51
last_update2021-02-05 12:32:51
depth1
children0
last_payout2021-02-12 12:32: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_length464
author_reputation121,331,286,283,930
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,724,518
net_rshares0
@poshbot ·
https://twitter.com/bala41288/status/1357748195690881025
properties (22)
authorposhbot
permlinkre-step-by-step-guide-to-setup-hive-engine-witness-from-scratch-20210205t174940z
categoryhive-163521
json_metadata"{"app": "beem/0.24.20"}"
created2021-02-05 17:49:39
last_update2021-02-05 17:49:39
depth1
children0
last_payout2021-02-12 17:49: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_length56
author_reputation5,554,335,374,496
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,729,486
net_rshares0
@rishi556 ·
> Linux (Any version should be okay)
2 GB
35 GB SSD
4 cores

These are a bit out of date, you won't be able to import the snapshot with 35 GB of storage.
properties (22)
authorrishi556
permlinkre-bala41288-qur5sp
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2021.06.2"}
created2021-06-15 16:58:03
last_update2021-06-15 16:58:03
depth1
children4
last_payout2021-06-22 16:58: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_length153
author_reputation134,528,170,600,561
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,350,013
net_rshares0
@bala41288 ·
I have added a small edit there already mentioning that a minimum of 50 GB is required now. 
properties (22)
authorbala41288
permlinkre-rishi556-2021615t222944210z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/3.0.18-mobile","format":"markdown+html"}
created2021-06-15 16:59:45
last_update2021-06-15 16:59:45
depth2
children2
last_payout2021-06-22 16: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_length92
author_reputation1,559,244,554,291,447
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,350,039
net_rshares0
@rishi556 ·
Oh nice, didn't see it. Also didn't realize this was from Feb when I made the comment haha.
properties (22)
authorrishi556
permlinkre-bala41288-qur5xc
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2021.06.2"}
created2021-06-15 17:00:51
last_update2021-06-15 17:00:51
depth3
children1
last_payout2021-06-22 17:00: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_length91
author_reputation134,528,170,600,561
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,350,060
net_rshares0
@bala41288 ·
I have now made the edit a little more clear to anyone reading it now. Thanks for the heads up. 👍
properties (22)
authorbala41288
permlinkre-rishi556-2021615t223322397z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/3.0.18-mobile","format":"markdown+html"}
created2021-06-15 17:03:24
last_update2021-06-15 17:03:24
depth2
children0
last_payout2021-06-22 17:03: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_length97
author_reputation1,559,244,554,291,447
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,350,113
net_rshares0
@rishi556 ·
$0.05
One change I'd say now, grab your archives from https://snap.primersion.com/ or my mirror version of it https://snap.rishipanthee.com/.
👍  ,
properties (23)
authorrishi556
permlinkre-bala41288-rfplvl
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.07.1"}
created2022-07-28 02:35:45
last_update2022-07-28 02:35:45
depth1
children0
last_payout2022-08-04 02:35:45
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation134,528,170,600,561
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id115,220,736
net_rshares61,033,369,199
author_curate_reward""
vote details (2)
@rollie1212 ·
One more nice guide! 
👍  , , ,
properties (23)
authorrollie1212
permlinkre-bala41288-qo2c3n
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2021.01.3"}
created2021-02-05 15:52:36
last_update2021-02-05 15:52:36
depth1
children1
last_payout2021-02-12 15:52: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_length21
author_reputation186,840,418,855,813
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,726,955
net_rshares11,029,095,712
author_curate_reward""
vote details (4)
@bala41288 ·
Thanks, buddy. Cheers!
properties (22)
authorbala41288
permlinkqo2c71
categoryhive-163521
json_metadata{"tags":["stem"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@bala41288/qo2c71"}
created2021-02-05 15:54:39
last_update2021-02-05 15:54:39
depth2
children0
last_payout2021-02-12 15:54: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_length22
author_reputation1,559,244,554,291,447
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,726,986
net_rshares0
@stresskiller ·
hmm stilll way to complex for the average user , 
but looking at : 
Minimum Requirements:

Linux (Any version should be okay)
2 GB
35 GB SSD
4 cores

that could be hosted on a Raspberry pi 4 that you can buy for €60,-  so why pay $10,- a month ?
👍  , , , , ,
properties (23)
authorstresskiller
permlinkqo2nmx
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2021-02-05 20:01:45
last_update2021-02-05 20:01:45
depth1
children3
last_payout2021-02-12 20:01: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_length245
author_reputation120,816,635,110,680
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,732,071
net_rshares53,111,334,356
author_curate_reward""
vote details (6)
@bala41288 ·
Yeah, that's also a good idea but I'm not sure if it would be fully comfortable to use a Raspberry pi 4. Especially I'm not sure about the Hard disk part. You can give it a try and share your findings. But interesting to explore. !BEER
properties (22)
authorbala41288
permlinkqo3twp
categoryhive-163521
json_metadata{"tags":["stem"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@bala41288/qo3twp"}
created2021-02-06 11:14:51
last_update2021-02-06 11:14:51
depth2
children1
last_payout2021-02-13 11:14: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_length235
author_reputation1,559,244,554,291,447
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,740,828
net_rshares0
@stresskiller ·
you can easily atach a sata ssd to the raspberry pi so that shouldn't really be an issue
properties (22)
authorstresskiller
permlinkqo44hi
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2021-02-06 15:03:21
last_update2021-02-06 15:03:21
depth3
children0
last_payout2021-02-13 15:03: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_length88
author_reputation120,816,635,110,680
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,743,701
net_rshares0
@beerlover ·
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @stresskiller, here is a little bit of <code>BEER</code> from @bala41288 for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
properties (22)
authorbeerlover
permlinkre-stresskiller-qo2nmx-20210206t111609026z
categoryhive-163521
json_metadata{"app":"beerlover/2.0"}
created2021-02-06 11:16:09
last_update2021-02-06 11:16:09
depth2
children0
last_payout2021-02-13 11:16: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_length525
author_reputation25,851,316,436,857
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,740,847
net_rshares0
@vcelier ·
Thank you for your instructions. Yesterday, I followed them to the letter with a small computer (8GB, 1TB, 4 cores, Ububtu 20.04) and I am now the 20th hive-enfine witness in Approved Weight.

If a 71 years old fool like me can follow these instructions, anybody can do it too.
properties (22)
authorvcelier
permlinkre-bala41288-qoa435
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2021.01.3"}
created2021-02-09 20:40:18
last_update2021-02-09 20:40:18
depth1
children3
last_payout2021-02-16 20:40: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_length277
author_reputation471,654,553,765,043
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,798,298
net_rshares0
@bala41288 ·
$0.04
Wow thanks for the complement. Welcome to the club. Looks like that's not a small specs. It is more than enough for a witness server. All the best. I already approved you as a witness. 🙂 !BEER  !wine
👍  
properties (23)
authorbala41288
permlinkre-vcelier-2021210t205944582z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/3.0.14-mobile","format":"markdown+html"}
created2021-02-10 15:29:45
last_update2021-02-10 15:29:45
depth2
children1
last_payout2021-02-17 15:29:45
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length199
author_reputation1,559,244,554,291,447
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,809,000
net_rshares191,833,388,059
author_curate_reward""
vote details (1)
@wine.bot ·
<center>
<sup>Congratulations, @bala41288 You Successfully Shared <b>0.100 WINE</b> With @vcelier.</sup>
<sup>You Earned <b>0.100 WINE</b> As Curation Reward.</sup>
<sup>You Utilized <b>1/1</b> Successful Calls.</sup>

<img src="https://images.hive.blog/DQmXvQUPiW9VDoz5KP6nB1sLDNCvTYPuUoxg7b1dn96Dd7q/image.png" alt="wine-greeting">

---
<sup>[WINE Current Market Price](https://hive-engine.com/?p=market&t=WINE) : <b>2.000 HIVE</b></sup>
</center>
properties (22)
authorwine.bot
permlink20210210t153003449z
categoryhive-163521
json_metadata{"tags":["wine","wineyard"],"app":"tan-bot/1.1","format":"markdown"}
created2021-02-10 15:30:03
last_update2021-02-10 15:30:03
depth3
children0
last_payout2021-02-17 15:30: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_length449
author_reputation9,194,423,000,248
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,809,003
net_rshares0
@beerlover ·
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @vcelier, here is a little bit of <code>BEER</code> from @bala41288 for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
properties (22)
authorbeerlover
permlinkre-vcelier-re-bala41288-qoa435-20210210t153054069z
categoryhive-163521
json_metadata{"app":"beerlover/2.0"}
created2021-02-10 15:30:54
last_update2021-02-10 15:30:54
depth2
children0
last_payout2021-02-17 15:30: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_length520
author_reputation25,851,316,436,857
root_title"Step by Step Guide to setup Hive Engine Witness from scratch"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,809,008
net_rshares0