> For the complete documentation index, see [llms.txt](https://docs.run.claw.cloud/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.run.claw.cloud/clawcloud-run/guide/advanced/terminal.md).

# Terminal

ClawCloud Run's **Terminal** feature provides secure, browser-based access to your application containers. Designed for developers and operators, it allows direct interaction with running environments without requiring local CLI tools or SSH configurations.

***

### **Key Features**

1. **Browser-Based Access**
   * Launch terminals directly from the ClawCloud Run dashboard – no VPN or SSH keys needed.
2. **Multi-Container Support**
   * Access any container within your deployment (pods, sidecars, init containers).

***

### **Use Cases**

* 🔧 **Troubleshooting**: Diagnose runtime issues by inspecting logs, processes, or network stats.
* 🧪 **Testing**: Run ad-hoc commands to validate configurations before deployment.
* 🛠️ **File Operations**: Modify temporary files or pull debug data without rebuilding images.

***

### **How to Use Terminal**

#### **Step 1: Access Terminal**

1. Navigate to **APP Launchpad** > Select your application.

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

2. Click the **Terminal** icon on the target container.

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

#### **Step 2: Execute Commands**

A browser-based terminal window will open. Example workflows:

1. **Check Running Processes**:

   ```
   ps aux | grep nginx  
   ```
2. **Inspect Logs**:

   ```
   tail -f /var/log/app/error.log  
   ```
3. **Network Diagnostics**:

   ```
   curl -I http://localhost:8080/health  
   ```

#### **Step 3: Manage Sessions**

* **Multiple Tabs**: Open parallel terminals for different containers.
* **Session History**: Use ↑/↓ arrows to repeat previous commands.


---

# 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:

```
GET https://docs.run.claw.cloud/clawcloud-run/guide/advanced/terminal.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
