Manage Kurtosis Portal for remote context access. Start, stop, and check status of the Portal daemon that enables communication with remote Kurtosis servers. Use when working with remote Kurtosis contexts.
Scanned 5/27/2026
Install to Claude Code
npx -y skills add kurtosis-tech/kurtosis --skill portal --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Portal?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/kurtosis-tech-portal)More formats (shields.io, HTML) on the badges page.
---
name: portal
description: Manage Kurtosis Portal for remote context access. Start, stop, and check status of the Portal daemon that enables communication with remote Kurtosis servers. Use when working with remote Kurtosis contexts.
compatibility: Requires kurtosis CLI.
metadata:
author: ethpandaops
version: "1.0"
---
# Portal
Manage the Kurtosis Portal daemon for remote context access.
## What is Portal?
Kurtosis Portal is a lightweight local daemon that enables communication with Kurtosis enclaves running on a remote Kurtosis server. It's only needed when using remote contexts — not required for local Docker or direct Kubernetes access.
## Start
```bash
kurtosis portal start
```
## Check status
```bash
kurtosis portal status
```
## Stop
```bash
kurtosis portal stop
```
## When you need it
Portal is used with remote Kurtosis contexts. If you're using:
- **Local Docker**: No portal needed
- **Direct Kubernetes**: Use `kurtosis gateway` instead
- **Remote Kurtosis server**: Use portal + remote context
## Remote contexts
```bash
# List contexts
kurtosis context ls
# Add a remote context
kurtosis context add <context-name>
# Switch to remote context
kurtosis context set <context-name>
# Start portal for the remote context
kurtosis portal start
```
## Troubleshooting
| Symptom | Cause | Fix |
|---------|-------|-----|
| Portal won't start | Port conflict or stale process | Run `kurtosis portal stop` then `kurtosis portal start` |
| Status shows not running | Portal crashed or was killed | Restart with `kurtosis portal start` |
| Services unreachable via portal | Portal not started for current context | Run `kurtosis portal status` to check, then `kurtosis portal start` |
| Connection refused errors | Wrong context or portal not needed | Verify context with `kurtosis context ls` — local Docker doesn't need portal |
No comments yet. Be the first to comment!
Build reusable Terraform modules for AWS, Azure, and GCP infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components.