Building and Maintaining a PAI Coin Full Node

The full release of the PAI Coin Node is here! Please use this repository when building and maintaining you own PAI Coin Full Node: https://github.com/projectpai/paicoin/releases

Be sure to read the last section “Updating to the latest PAI Coin Core version” to make sure your node is compatible with the upcoming hybrid fork.

Hosting a PAI Coin full node is one of the best things you can do to support Project PAI. It’s simple and affordable to do, and it helps to ensure good network performance and reliability for PAI Coin. This document outlines how to properly build and maintain a PAI Coin full node.

Table of Contents

1. What is a full node?

2. Obtain a computer or server to act as a node

  • Cloud computing
  • Self-hosting

3. Install PAI Coin Core

  • Installing dependencies and configuring your build
  • Compiling binaries

4. Configure the node

  • Configuring PAI Coin Core
  • Configuring networking

5. Launch PAI Coin Core

  • Running paicoind
  • Testing connectivity to the node

6. Maintain the node

  • Ensuring sufficient disk space
  • Updating to the latest PAI Coin Core version

What is a full node?

A full node is a server which stores a complete replica of the PAI Blockchain. A full node does not necessarily stake or mine, although it can. Its main purpose is to communicate with other peers in the network to forward pending transactions and provide redundancy. The addition of full nodes to the PAI Coin P2P network increases the decentralization, reliability, and efficiency of PAI Coin. This guide outlines how to properly setup and maintain a non-staking, non-mining full node. While you won’t earn PAI Coin for hosting this type of full node, it is generally very affordable to maintain and is one of the best things you can do to support the PAI Blockchain.

Obtain a computer or server to act as a node

The first step to running your own PAI Coin node is acquiring a device to use. For your node to best serve its purpose, it should be online 24/7, so it’s not ideal to choose a personal device like a laptop or home computer that you use for other things.

Cloud computing

In today’s age of cloud computing, the most obvious solution is to rent a remote server—often called an “instance”—from a cloud computing service provider. Depending on the provider you choose, a sufficiently powerful instance for running a PAI Coin full node can be obtained for $5-$10 per month. Here are some providers we recommend:

Provider Based In Instance Type Monthly Cost Notes Link
Amazon Web Services (AWS) USA t2.micro $8.50 -AWS is widely used, very reliable-Offers 1 year free https://aws.amazon.com
DigitalOcean USA Basic (Smallest) $5 -Console is very easy to use https://digitalocean.com
Alibaba Cloud China ecs.t5-lc1m1.small $6.40 -Mainland China regions available-Offers 1 year free https://alibabacloud.com

Self-hosting

If you prefer not to use a cloud computing platform, you also have the option to self-host a PAI Coin node. This would require you to dedicate a physical computer or server that you own to running PAI Coin Core and keeping it online 24/7 with public accessibility. Self-hosting is beyond the scope of this tutorial.

Install PAI Coin Core

Once the computer you’ve chosen to use for your node is up and running, you’ll need to install the latest version of PAI Coin Core. Currently, the best way to do that is by building the software from source. In order to do so, connect to your node via ssh and execute the following commands. These instructions assume you are using Ubuntu 18.04 or later and that you are logged in as a user with sudo (root) access.

First, clone the public PAI Coin repository.

git clone https://github.com/projectpai/paicoin.git

Installing dependencies and configuring your build

Next, install some dependencies.

sudo apt update
sudo apt-get install build-essential libtool autotools-dev automake pkg-config 
libssl-dev libevent-dev bsdmainutils python3 libboost-all-dev

If you are using an Alibaba Cloud server, install the following additional dependencies.

sudo apt install openssl libssl-dev libevent-dev

Generate the configuration script.

cd paicoin
./autogen.sh

Set the build parameters.

./configure --disable-tests --disable-wallet CXXFLAGS="--param ggc-min-expand=1 --param ggc-min-heapsize=32768"

If you are using a server with more than 1.5 GB of RAM, you can exclude the CXXFLAGS. You can also exclude the flag --disable-tests to build and run unit tests, but this will cause the installation to take longer.

./configure --disable-wallet

If you wish to enable the wallet, you will need to install additional dependencies. Please refer to doc/build-unix.md in the paicoin repository for more information. A wallet is not necessary to run a full node.

When you see the following output, you have successfully configured the build.

Options used to compile and link:
with wallet = no
with gui / qt = no
with zmq = no
with test = no
with bench = yes
with upnp = auto
use asm = yes
debug enabled = no
werror = no
target os = linux
build os =

CC = gcc
CFLAGS = -g -O2
CPPFLAGS = -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS
CXX = g++ -std=c++11
CXXFLAGS = --param ggc-min-expand=1 --param ggc-min-heapsize=32768
LDFLAGS =
ARFLAGS = cr

Compiling binaries

Now, all you need to do is compile the binaries. Just run:

make

Once you see the following output, your installation is complete!

make[2]: Leaving directory '/home/ubuntu/paicoin/src'
make[1]: Leaving directory '/home/ubuntu/paicoin/src'
Making all in doc/man
make[1]: Entering directory '/home/ubuntu/paicoin/doc/man'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/ubuntu/paicoin/doc/man'
make[1]: Entering directory '/home/ubuntu/paicoin'
make[1]: Nothing to be done for 'all-am'.
make[1]: Leaving directory '/home/ubuntu/paicoin'

Configure the node

With PAI Coin Core installed, you still need to do a few more configuration steps to run it as a full node that other peers can connect to.

Configuring PAI Coin Core

To configure PAI Coin Core before starting paicoind, follow these instructions.

mkdir ~/.paicoin

Then, in the ~/.paicoin directory, create a plain text file titled paicoin.conf which contains the following.

daemon=1
txindex=1
reindex=1
testnet=0

Configuring networking

You need to make sure that other peers can connect to your node. To do this, make port 8567 accessible from any IP address. This can be done by creating a Security Group (AWS, Alibaba Cloud) or Firewall (Digital Ocean) with the appropriate rule and attaching it to the instance (AWS, Alibaba Cloud) or droplet (Digital Ocean) that is running PAI Coin Core.

Launch PAI Coin Core

Running paicoind

With PAI Coin Core installed and the software and instance fully configured, we’re ready to start the PAI Coin Daemon (paicoind). In ~/paicoin/src run the following command.

./paicoind

You will see:

PAI Coin server starting

Your node will begin to download a copy of the blockchain locally. To monitor the progress, you can run the following command.

tail -f ~/.paicoin/debug.log

When you see an output like this, the blockchain has fully synced and your node is running.

2020-09-21 17:52:16 receive version message: /Turing:0.16.1/: version 70015, blocks=152506, us=188.166.183.62:57020, peer=10

Testing connectivity to the node

The simplest way to test that your node is accessible to other peers in the network is through PAI Up Mobile. In PAI Up, go to Menu 🡪 Preferences 🡪 PAI Coin Settings 🡪 PAI Coin Nodes 🡪 Switch to Manual Mode, then enter the IP address of your full node and click OK. If PAI Up successfully connects, then your full node is operating correctly.

A screenshot of a cell phone Description automatically generated

Maintain the node

Ensuring sufficient disk space

The PAI Blockchain will continue to grow in size over time, so you should routinely check that the node has enough disk space. You can check the status of your node by running the following command in ~/paicoin/src:

./paicoin-cli getblockchaininfo

To see a list of other possible commands, run paicoin-cli help.

Updating to the latest PAI Coin Core version

You should regularly update your PAI Coin full node to use the latest software version. To update, execute the following commands in the paicoin directory.

First, stop the full node from running.

cd src
paicoin-cli stop
cd ..

Next, pull the latest software version of the code and tags.

git fetch --tags
git pull

Next, checkout the tagged version of the latest code. All of the tags are available here: https://github.com/projectpai/paicoin/tags

For example, to checkout 2.3.1, simply do the following:

git checkout 2.3.1

Finally, proceed with the following commands to build the new version.

make clean
make

Once the build completes, you can restart your full node by executing ./paicoind in paicoin/src.

Get the full PDF documentation below:
Building and Maintaining a PAI Coin Full Node V2.pdf (138.5 KB)

PAI 周报 📰 - 2022年12月21日: PAI 技术进展
PAI News 📰 - December 21, 2022: Tech Updates
PAI 周报 📰 - 2022年12月14日: PAI 技术进展
PAI News 📰 - December 14, 2022: Tech Updates
PAI 周报 📰 - 2022年12月07日: PAI 技术进展
PAI News 📰 - December 7, 2022: Tech Updates
PAI 周报 📰 - 2022年11月30日: PAI 技术进展
PAI News 📰 - November 30, 2022: Tech Updates
PAI 周报 📰 - 2022年11月23日: PAI 技术进展
PAI News 📰 - November 23, 2022: Tech Updates
PAI 周报 📰 - 2022年11月16日: PAI 技术进展
PAI News 📰 - November 16, 2022: Tech Updates
PAI News 📰 - November 09, 2022: Tech Updates
PAI 周报 📰 - 2022年11月09日: PAI 技术进展
PAI 周报 📰 - 2022年11月02日: PAI 技术进展
PAI News 📰 - November 02, 2022: Tech Updates
PAI 周报 📰 - 2022年10月26日: PAI 技术进展
PAI News 📰 - October 26, 2022: Tech Updates
PAI 周报 📰 - 2022年10月19日: PAI 技术进展
PAI 周报 📰 - 2022年10月12日: PAI 技术进展
PAI 周报 📰 - 2022年10月05日: PAI 技术进展
PAI 周报 📰 - 2022年09月28日: PAI 技术进展
PAI News 📰 - October 19, 2022: Tech Updates
PAI News 📰 - October 12, 2022: Tech Updates
PAI News 📰 - October 5, 2022: Tech Updates
PAI News 📰 - September 28, 2022: Tech Updates
PAI 周报 📰 - 2022年09月21日: PAI 技术进展
PAI News 📰 - September 21, 2022: Tech Updates
PAI 周报 📰 - 2022年09月14日: PAI 技术进展
PAI News 📰 - September 14, 2022: Tech Updates
PAI 周报 📰 - 2022年09月07日: PAI 技术进展
PAI News 📰 - September 7, 2022: Tech Updates
PAI 周报 📰 - 2022年08月31日: PAI 技术进展
PAI News 📰 - August 31, 2022: Tech Updates
PAI 周报 📰 - 2022年08月24日: PAI 技术进展
PAI News 📰 - August 24, 2022: Tech Updates
PAI 周报 📰 - 2022年08月17日: PAI 技术进展
PAI News 📰 - August 17, 2022: Tech Updates
PAI 周报 📰 - 2022年08月10日: PAI 技术进展
PAI News 📰 - August 10, 2022: Tech Updates
PAI 周报 📰 - 2022年08月03日: PAI 技术进展
PAI News 📰 - August 3, 2022: Tech Updates
PAI News 📰 - July 27, 2022: Tech Updates
PAI 周报 📰 - 2022年07月27日: PAI 技术进展
PAI 周报 📰 - 2022年07月20日: PAI 技术进展
PAI News 📰 - July 20, 2022: Tech Updates
PAI 周报 📰 - 2022年07月13日: PAI 技术进展
PAI News 📰 - July 13, 2022: Tech Updates
PAI 周报 📰 - 2022年07月06日: PAI 技术进展
PAI News 📰 - June 29, 2022: Tech Updates
PAI 周报 📰 - 2022年06月29日: PAI 技术进展
PAI 周报 📰 - 2022年06月22日: PAI 技术进展
PAI News 📰 - June 22, 2022: Tech Updates
PAI 周报 📰 - 2022年06月15日: PAI 技术进展
PAI News 📰 - June 15, 2022: Tech Updates
PAI 周报 📰 - 2022年06月08日: PAI 技术进展
PAI News 📰 - June 8, 2022: Tech Updates
PAI 周报 📰 - 2022年06月01日: PAI 技术进展
PAI News 📰 - June 1, 2022: Tech Updates
PAI 周报 📰 - 2022年05月25日: PAI 技术进展
PAI News 📰 - May 25th 2022: Tech Updates
PAI News 📰 - May 18th 2022: Tech Updates
PAI 周报 📰 - 2022年05月18日: PAI 技术进展*
PAI 周报 📰 - 2022年05月11日: PAI 技术进展*
PAI News 📰 - May 11th 2022: Tech Updates
PAI 周报 📰 - 2022年05月04日: PAI 技术进展
PAI News 📰 - May 4th 2022: Tech Updates
PAI News 📰 - April 27th 2022: Tech Updates
PAI 周报 📰 - 2022年04月27日: PAI 技术进展
PAI 周报 📰 - 2022年04月20日: PAI 技术进展
PAI News 📰 - April 20th 2022: Tech Updates
PAI 周报 📰 - 2022年04月13日: PAI 技术进展
PAI News 📰 - April 13th 2022: Tech Updates
PAI 周报 📰 - 2022年04月06日: PAI 技术进展
PAI News 📰 - April 6th 2022: Tech Updates
PAI 周报 📰 - 2022年03月30日: PAI 技术进展
PAI News 📰 - March 30, 2022: Tech Updates
PAI 周报 📰 - 2022年03月23日: PAI 技术进展
PAI News 📰 - March 23, 2022: Tech Updates
PAI 周报 📰 - 2022年03月16日: PAI 技术进展
PAI News 📰 - March 16, 2022: Tech Updates
PAI 周报 📰 - 2022年03月09日: PAI 技术进展
PAI News 📰 - March 09, 2022: Tech Updates
PAI 周报 📰 - 2022年03月02日: PAI 技术进展
PAI News 📰 - March 02, 2022: Tech Updates
PAI 周报 📰 - 2022年02月23日: PAI 技术进展
PAI News 📰 - February 23, 2021: Tech Updates
PAI 周报 📰 - 2022年02月16日: PAI 技术进展
PAI News 📰 - February 16, 2021: Tech Updates
PAI News 📰 - February 09, 2021: Tech Updates
PAI 周报 📰 - 2022年02月09日: PAI 技术进展
PAI 周报 📰 - 2022年02月02日: PAI 技术进展
PAI News 📰 - February 02, 2021: Tech Updates
PAI 周报 📰 - 2022年01月26日: PAI 技术进展
PAI News 📰 - January 26, 2021: Tech Updates
PAI 周报 📰 - 2022年01月19日: PAI 技术进展
PAI News 📰 - January 19, 2021: Tech Updates
PAI 周报 📰 - 2022年01月12日: PAI 技术进展
PAI News 📰 - January 12, 2021: Tech Updates
PAI 周报 📰 - 2022年01月05日: PAI 技术进展
PAI News 📰 - January 05, 2021: Tech Updates
PAI 周报 📰 - 2021年12月29日: PAI 技术进展
PAI News 📰 - December 29, 2021: Tech Updates
PAI News 📰 - December 22, 2021: Tech Updates
PAI 周报 📰 - 2021年12月22日: PAI 技术进展
PAI 周报 📰 - 2021年12月15日: PAI 技术进展
PAI News 📰 - December 15, 2021: Tech Updates
PAI 周报 📰 - 2021年12月08日: PAI 技术进展
PAI News 📰 - December 08, 2021: Tech Updates
PAI新着情報 📰 - 2021年12月01日
PAI 周报 📰 - 2021年12月01日: PAI 技术进展
PAI News 📰 - December 01, 2021: Tech Updates
PAI新着情報 📰 - 2021年11月24日
PAI 周报 📰 - 2021年11月24日: PAI 技术进展
PAI News 📰 - November 24, 2021: Tech Updates
PAI 周报 📰 - 2021年11月17日: PAI 技术进展
PAI News 📰 - November 17, 2021: Tech Updates
PAI新着情報 📰 - 2021年11月17日
PAI新着情報 📰 - 2021年11月10日
PAI 周报 📰 - 2021年11月10日: PAI 技术进展
PAI News 📰 - November 10, 2021: Tech Updates
PAI新着情報 📰 - 2021年11月04日
PAI 周报 📰 - 2021年11月03日: PAI 技术进展
PAI News 📰 - November 03, 2021: Tech Updates
PAI新着情報 📰 - 2021年10月28日
PAI 周报 📰 - 2021年10月28日: PAI 技术进展
PAI News 📰 - October 28, 2021: Tech Updates
PAI新着情報 📰 - 2021年10月20日
PAI 周报 📰 - 2021年10月20日: PAI 技术进展
PAI News 📰 - October 20, 2021: Tech Updates
PAI新着情報 📰 - 2021年10月11日
PAI 周报 📰 - 2021年10月11日
PAI News 📰 - October 11, 2021
PAI新着情報 📰 - 2021年10月04日
PAI周报📰-2021年10月04日
PAI News 📰 - October 4, 2021
PAI新着情報 📰 - 2021年09月27日
PAI 周报 📰 - 2021年09月27日
PAI News 📰 - September 27, 2021
PAI新着情報 📰 - 2021年09月20日
PAI 周报 📰 - 2021年09月20日
PAI News 📰 - September 20, 2021
PAI 周报 📰 - 2021年09月13日
PAI News 📰 - September 13, 2021
PAI 周报 📰 - 2021年09月06日
PAI News 📰 - September 6, 2021
PAI 周报 📰 - 2021年08月30日
PAI News 📰 - August 30, 2021
PAI News 📰 - August 23, 2021
PAI 周报 📰 - 2021年08月23日
PAI News 📰 - August 16, 2021
PAI周报 📰 - 2021年08月16日
PAI News 📰 - August 09, 2021
PAI周报 📰 - 2021年08月09日
PAI 周报 📰 - 2021年08月02日
PAI News 📰 - August 02, 2021
PAI News 📰 - July 26, 2021
PAI 周报 📰 - 2021年07月26日
PAI News 📰 - July 19, 2021
PAI 周报 📰 - 2021年07月19日
PAI News 📰 - July 12, 2021
PAI 周报 📰 - 2021年07月12日
PAI 周报 📰 - 2021年07月05日
PAI News 📰 - July 5, 2021
Tin tức PAI :newspaper:- Ngày 28 tháng 6 năm 2021
PAI News 📰 - June 28, 2021
PAI 周报 📰 - 2021年06月28日
Tin tức PAI :newspaper:- Ngày 21 tháng 6 năm 2021
PAI News 📰 - June 21, 2021
PAI 周报 📰 - 2021年06月21日
Tin tức PAI :newspaper:- ngày 14 tháng 6 năm 2021
PAI新着情報 📰 - 2021年06月14日
PAI 周报 📰 - 2021年06月14日
PAI News 📰 - June 14, 2021
Tin tức PAI :newspaper:- Ngày 7 tháng 6 năm 2021
PAI 周报 📰 - 2021年06月07日
PAI News 📰 - June 7, 2021
PAI新着情報 📰 - 2021年06月07日
Tin tức PAI :newspaper:- ngày 31 tháng 5 năm 2021
PAI News 📰 - May 31, 2021
PAI 周报 📰 - 2021年05月31日
PAI新着情報 📰 - 2021年05月31日
Tin tức PAI :newspaper:- Ngày 24 tháng 5 năm 2021
PAI新着情報 📰 - 2021年05月24日
PAI News 📰 - May 24, 2021
PAI 周报 📰 - 2021年05月24日
Tin tức PAI :newspaper:- Ngày 17 tháng 5 năm 2021
PAI News 📰 - May 17, 2021
PAI新着情報 📰 - 2021年05月17日
PAI新着情報 📰 - 2021年05月10日
Tin tức PAI :newspaper:- Ngày 10 tháng 5 năm 2021
PAI News :newspaper: - May 10, 2021
PAI 周报 :newspaper: - 2021年05月10日
Tin tức PAI :newspaper:- Ngày 3 tháng 5 năm 2021
PAI新着情報 📰 - 2021年05月03日
PAI 周报 📰 - 2021年05月03日
PAI News 📰 - May 3, 2021
PAI新着情報 📰 - 2021年04月27日
Tin tức PAI :newspaper:- ngày 26 tháng 4 năm 2021
PAI News :newspaper: - April 26, 2021
PAI 周报 :newspaper: - 2021年04月26日
Tin tức PAI :newspaper: Ngày 19 tháng 4 năm 2021
PAI 周报 :newspaper: - 2021年04月19日
PAI News 📰 - April 19, 2021
PAI新着情報 📰 - 2021年04月19日
Tin tức PAI :newspaper: Ngày 12 tháng 4 năm 2021
PAI新着情報 📰 - 2021年04月12日
PAI 周报 :newspaper: - 2021年04月12日
PAI News :newspaper: - April 12, 2021
Tin tức PAI báo chí- Ngày 05 tháng 4 năm 2021
PAI新着情報 📰 - 2021年04月05日
PAI 周报 :newspaper: - 2021年04月05日
PAI News 📰 - April 05, 2021
Tin tức PAI báo chí- Ngày 29 tháng 3 năm 2021
PAI News :newspaper: - March 29, 2021
PAI 周报 :newspaper: - 2021年03月29日
PAI新着情報 📰 - 2021年03月29日
Tin tức PAI báo chí- ngày 22 tháng 3 năm 2021
PAI 周报 📰 - 2021年03月22日
PAI News 📰 - March 22, 2021
PAI新着情報 📰 - 2021年03月22日
PAI新着情報 📰 - 2021年03月15日
PAI 周报 📰 - 2021年03月15日
PAI News 📰 - March 15, 2021
PAI新着情報 📰 - 2021年03月08日
PAI 周报 📰 - 2021年03月08日
PAI News 📰 - March 8, 2021
Tin tức PAI :newspaper:- ngày 3 tháng 3 năm 2021
PAI新着情報 📰 - 2021年03月01日
PAI 周报 📰 - 2021年03月01日
PAI News 📰 - March 1, 2021
Tin tức PAI - ngày 22 tháng 2 năm 2021
PAI新着情報 📰 - 2021年02月22日
PAI 周报 📰 - 2021年02月22日
PAI News 📰 - February 22, 2021
PAI News - ngày 15 tháng 2 năm 2021
PAI新着情報 📰 - 2021年02月15日
PAI 周报 📰 - 2020年02月15日
PAI News 📰 - February 15, 2021
PAI new ngày 8 tháng 2 năm 2021
PAI新着情報 📰 - 2021年02月08日
PAI 周报 📰 - 2020年02月08日
PAI News 📰 - February 8, 2021
PAI News ngày 01 tháng 2 năm 2021
PAI新着情報 📰 - 2021年02月01日
PAI News 📰 - February 01, 2021
PAI 周报 📰 - 2020年02月01日
Tin tức PAI ngày 25 tháng 1 năm 2021
PAI新着情報 📰 - 2021年01月25日
PAI周报📰 - 2020年01月25日
PAI News 📰 - January 25, 2021
PAI News ngày 18 tháng 1 năm 2021
PAI新着情報 📰 - 2021年01月18日
11/18 - Hybrid Consensus Updates
11/02 - Hybrid Consensus Updates
10/26 - Hybrid Consensus Updates
PAI周报📰 - 2020年01月18日
PAI News 📰 - January 18, 2021
# Tin tức PAI :newspaper:- ngày 11 tháng 1 năm 2021
PAI新着情報 📰 - 2021年01月11日
PAI周报📰-2020年01月11日
PAI News 📰 - January 11, 2021
PAI News - ngày 4 tháng 1 năm 2021
PAI新着情報 📰 - 2021年01月04日
PAI周报📰-2020年01月04日
PAI News 📰 - January 4, 2021
PAI新着情報 📰 - 2020年12月28日
PAI周报📰-2020年12月28日
PAI News 📰 - December 28, 2020
PAI News :báo chí:- Ngày 21 tháng 12 năm 2020
PAI News 📰 - December 21, 2020
PAI周报📰-2020年12月21日
** PAI新着情報 📰 - 2020年12月21日
# PAI News :newspaper:- Ngày 14 tháng 12 năm 2020
PAI新着情報 📰 - 2020年12月14日
PAI周报 📰 - 2020年12月14日
PAI News 📰 - December 14, 2020
PAI新着情報 📰 - 2020年12月7日
PAI周报📰-2020年12月7日
PAI News 📰 - December 7, 2020
PAI新着情報 📰 - 2020年11月30日
PAI News 📰 - November 30, 2020
PAI’den Haberler - 23 Kasım, 2020
PAI News :newspaper:- ngày 23 tháng 11 năm 2020
# PAI News :newspaper:- Ngày 18 tháng 11 năm 2020
PAI新着情報 📰 - 2020年11月18日
PAI News 📰 - November 18, 2020
PAI新着情報 📰 - 2020年11月9日
PAI News 📰 - November 9, 2020
PAI’den Haberler - 2 Kasım, 2020
# PAI News :newspaper:- Ngày 2 tháng 11 năm 2020
PAI新着情報 📰 - 2020年11月2日
PAI News 📰 - November 2, 2020
# PAI News :newspaper:- ngày 26 tháng 10 năm 2020
PAI新着情報 📰 - 2020年10月26日
PAI News 📰 - October 26, 2020
Tin tức PAI - Ngày 5 tháng 10 năm 2020
PAI新着情報 📰 - 2020年10月19日
PAI 최신소식📰 - 2020년10월19일
PAI News 📰 - October 19, 2020
10/12 - Hybrid Consensus Hard Fork Updates
10/05 - Hybrid Consensus Hard Fork Updates
09/28 - Hybrid Consensus Hard Fork Updates
PAI新着情報 📰 - 2020年10月12日
PAI 최신소식📰 - 2020년10월12일
PAI News 📰 - October 12, 2020
PAI’den Haberler - 5 Ekim, 2020
PAI新着情報 📰 - 2020年10月5日
PAI최신소식 📰 - 2020년 10월 5일
PAI 周报 📰 - 2020年10月5日
PAI News 📰 - October 5, 2020
PAI新着情報 📰 - 2020年9月28日
PAI최신소식 📰 - 2020년 9월 28일
PAI News :newspaper: - 28 tháng 9, 2020
PAI News 📰 - September 28, 2020
PAI’den Haberler - 23 Eylül, 2020
하이브리드 합의 하드 포크
ハイブリッド・コンセンサスのハードフォーク
PAI News 📰 - September 23, 2020
09/23 - Hybrid Consensus Hard Fork
PAI News 📰 - November 23, 2020
PAI 周报 📰 - 2023年01月18日: PAI 技术进展
PAI News 📰 - January 18, 2022: Tech Updates
PAI News 📰 - January 11, 2022: Tech Updates
PAI 周报 📰 - 2023年01月11日: PAI 技术进展
PAI 周报 📰 - 2023年01月05日: PAI 技术进展
PAI News 📰 - January 04, 2022: Tech Updates
PAI 周报 📰 - 2022年12月28日: PAI 技术进展
PAI News 📰 - December 28, 2022: Tech Updates

I cannot finish the “Set the build parameters.” step. With the command: ./configure --disable-tests --disable-wallet CXXFLAGS="--param ggc-min-expand=1 --param ggc-min-heapsize=32768"

I’m using AWS EC2 t2.micro.

Below are the error logs.

sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev

This solved the issue.