> For the complete documentation index, see [llms.txt](https://cocktailcloud.gitbook.io/cocktail-cloud-online/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cocktailcloud.gitbook.io/cocktail-cloud-online/faq/node-notready.md).

# Node 상태가 NotReady

<details>

<summary>해당 Node의 VM이 재기동 되었을 경우</summary>

## swap 사용 유무 확인

free 커맨드로 swap이 켜져있는 지 확인한 뒤, swap이 켜져있다면 off한다.

### 조치 방법

커맨드 : swapoff -a

## kernel 상태 확인

sysctl -a | grep overcommit\_memory 결과가 1인지 확인&#x20;

sysctl -a | grep kernel.panic\_on\_oops 결과가 1인지 확인&#x20;

sysctl -a | grep kernel.panic 결과가 10인지 확인

### 조치 방법&#x20;

sysctl -w vm.overcommit\_memory=1&#x20;

sysctl -w kernel.panic\_on\_oops=1&#x20;

sysctl -w kernel.panic=10

</details>

<details>

<summary>Node의 kubelet, containerd가 중지되었거나, 상태가 running이 아닌 경우</summary>

## kubelet 상태 확인

sudo kubectl status kubelet

## kubelet 재시작

sudo kubectl restart kubelet

## containerd 상태 확인 및 재기동

sudo kubectl status containerd

## containerd 재시작

sudo kubectl restart containerd

</details>


---

# 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://cocktailcloud.gitbook.io/cocktail-cloud-online/faq/node-notready.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.
