> For the complete documentation index, see [llms.txt](https://wp.verylabs.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wp.verylabs.io/verychain/node-driven/node-driven-cloud.md).

# Node-driven(Cloud)

## 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)&#x20;
* Node Client Downloads

{% file src="/files/foLSw1HodmydTgJ2INcC" %}

\
AWS Server Installation Example

1. AWS Login → Search EC2 in the search bar

<figure><img src="/files/cmDd7a82tyPKxh8JRB80" alt=""><figcaption></figcaption></figure>

2. Click Launch Instances in the top right corner

<figure><img src="/files/dZn4jeH9mO9NFr5CLmzk" alt=""><figcaption></figcaption></figure>

3. Server Settings
   1. IP and Key information is mosaicked for security (be careful of exposure)&#x20;
   2. Click Launch Instatnce after setting 500GB

<figure><img src="/files/EgyGjjkEg6JrbiXMNOlN" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/uIN9L9VOGt5R4yUpgNHa" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/oWg5xte5Ndp9kSV6gSro" alt=""><figcaption></figcaption></figure>

4. Connecting to the server

Click the Connect button in the top right corner

<figure><img src="/files/ZUB8JocpxDRI69G1axTY" alt=""><figcaption></figcaption></figure>

Click the Connect button in the top right corner

<figure><img src="/files/0JukYkoyv9XCVu7Q2ECR" alt=""><figcaption></figcaption></figure>

5. 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.

<figure><img src="/files/m58Hnuo7ac9I9N8lW4Nr" alt=""><figcaption></figcaption></figure>

6\. extract the files you copied earlier in step 5

```
sudo -s
apt-get -y update && apt-get -y install unzip
unzip Guide.zip
```

<figure><img src="/files/O7fCHjOgc2ncI1jEgXZC" alt=""><figcaption></figcaption></figure>

7. In key.json, enter the "Very Node private key" that was emailed to you.

```
{
  "key": "Paste a private key here"
}
```

8. Run 0/1

<pre><code><strong>cd Guide
</strong>sh 0_prepare.sh
sh 1_build.sh
</code></pre>

9. Run 2/3&#x20;

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

<figure><img src="/files/QpWWF0ve6ZhQnSnKKFJB" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://wp.verylabs.io/verychain/node-driven/node-driven-cloud.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
