Node-driven(Cloud)

How to run nodes in the cloud, such as AWS, Azure, etc.

Server (PC) Basics

  • The installation must be performed in an internet-enabled environment

  • Recommendations

    CPU: 4Core or faster Memory: 16GB or more Disk: 500GB or more (SSD recommended)

  • Node Client Downloads

AWS Server Installation Example

  1. AWS Login → Search EC2 in the search bar

  1. Click Launch Instances in the top right corner

  1. Server Settings

    1. IP and Key information is mosaicked for security (be careful of exposure)

    2. Click Launch Instatnce after setting 500GB

  1. Connecting to the server

Click the Connect button in the top right corner

Click the Connect button in the top right corner

  1. To copy the downloaded attachment to the server, use the following scp command

scp -i {key파일위치} Guide.zip [ubuntu@](<mailto:ubuntu@3.36.86.95>){IP입력}:/home/ub untu

  • {location of key file} should be replaced with the location where the EC2 key file was downloaded.

    • Example: ~/Downloads/key.pem

  • {enter IP address} should be replaced with the server's IP address.

    • For the blurred part, enter the value of the Public IPv4 address.

    • Example: 1.1.1.1 This should be in the form of a four-digit number.

6. extract the files you copied earlier in step 5

sudo -s
apt-get -y update && apt-get -y install unzip
unzip Guide.zip
  1. In key.json, enter the "Very Node private key" that was emailed to you.

{
  "key": "Paste a private key here"
}
  1. Run 0/1

cd Guide
sh 0_prepare.sh
sh 1_build.sh
  1. Run 2/3

sh 2_execute.sh
sh 3_log.sh

If you see a log like the red box below when you run it 3 times, it's a successful run

Last updated