Live Session Viewing

MarinaBox provides VNC-based live viewing capabilities for all sessions. You can get session details using either the SDK or CLI and view them in your browser.

Using the CLI

mb local get-session abc123xyz

Python SDK

from marinabox import MarinaboxSDK

sdk = MarinaboxSDK()

# Get session details
session = sdk.get_session("abc123xyz")
vnc_port = session.vnc_port

print(f"View session at: http://localhost:{vnc_port}")

Example Output

{
    "session_id": "abc123xyz",
    "vnc_port": 5004,
    "status": "running",
    "resolution": "1200x800x24"
    # ... other fields
}

Direct Browser Viewing

Once you have the VNC port, open your browser and navigate to:

http://localhost:{vnc_port}

Get Support & Join Our Community