> ## Documentation Index
> Fetch the complete documentation index at: https://www.octoparse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# 클라우드 작업 실행 및 예약

> CLI에서 기록, 빈도 유형 및 확인 제어를 포함해 Octoparse 클라우드 추출 작업을 시작, 중지, 확인 및 예약하세요.

클라우드 추출은 Octoparse 인프라에서 실행됩니다. 반복 작업과 로컬 브라우저 프로세스 없이 계속되어야 하는 워크플로에 사용하세요.

## 클라우드 실행 시작 및 확인

```bash theme={null}
octoparse cloud start <taskId>
octoparse cloud status <taskId> --json
octoparse cloud history <taskId> --json
octoparse cloud stop <taskId>
```

클라우드 추출은 시작과 중지를 지원하지만 일시 중지나 재개는 지원하지 않습니다.

## 예약 보기

```bash theme={null}
octoparse schedule cloud get <taskId> --json
```

## 다음 실행 시간 미리보기

```bash theme={null}
octoparse schedule cloud next --type 6 --date "" --time "09:00" --json
```

예약 유형:

| 유형  | 빈도       |
| --- | -------- |
| `1` | 날짜 / 한 번 |
| `2` | 매주       |
| `3` | 매월       |
| `4` | 분 단위 간격  |
| `5` | 매시간      |
| `6` | 매일       |

## 예약 업데이트 및 제어

```bash theme={null}
octoparse schedule cloud update <taskId> \
  --type 6 \
  --date "" \
  --time "09:00" \
  --enabled true \
  --yes \
  --json

octoparse schedule cloud start <taskId> --yes
octoparse schedule cloud stop <taskId> --yes
```

<Warning>예약 `update`, `start`, `stop`은 원격 예약 상태를 변경하며 `--yes`가 필요합니다.</Warning>
<Note>로컬 예약은 Octoparse 데스크톱 앱에서 관리하며 CLI에서는 사용할 수 없습니다.</Note>

## 다음 단계

<CardGroup cols={2}>
  <Card title="데이터 확인 및 내보내기" href="/docs/ko/cli/guides/data">클라우드 추출 결과의 행 수를 계산하고 미리 본 다음 내보냅니다.</Card>
  <Card title="CLI 자동화" href="/docs/ko/cli/guides/automation">예약 시스템에서 JSON 출력, 환경 자격 증명 및 종료 코드를 사용합니다.</Card>
</CardGroup>
