It happens more often than it should. You search for your vector database’s admin interface, click a result, and end up on a marketing page, a documentation index, a community forum, or a page that looks vaguely right but does not have what you need. Sometimes the search result was outdated. Sometimes the platform has multiple web properties and the search engine surfaced the wrong one. Sometimes a redirect sent you somewhere unexpected.

This is a friction point that costs people time disproportionate to how trivial it should be. Knowing where the correct entry points are, and what to do when you are not at the right one, makes the difference between a thirty-second orientation and a five-minute detour.


Why People End Up on the Wrong Page

Vector database platforms typically have several distinct web properties that serve different purposes but share branding: a marketing site, a documentation site, a community forum, a status page, a blog, and the actual application console. These can all look similar and share a domain or subdomain structure, which makes it easy to land on the right domain but the wrong page.

Search engines compound the problem. A search for “vector database console” might surface a documentation page about the console rather than the console itself, a blog post announcing a new console feature, or a forum thread about a console issue. The page that ranks highest is not always the page that answers your immediate need.

URL changes also contribute. Platforms rebrand, restructure their URL schemes, or consolidate products. Bookmarks and shared links go stale. A URL that worked six months ago might now redirect to a homepage or a 404.


How to Find the Right Entry Point Quickly

The fastest recovery when you are on the wrong page is to navigate directly rather than searching again. Most platforms have a small number of canonical entry points that do not change often. Knowing the direct URL for the console, the documentation root, and the support or community site means you can navigate there in seconds regardless of where a search or redirect left you.

If you do not know the direct URL, the most reliable path is the platform’s main marketing site. The top navigation of a vendor’s homepage almost always includes a direct link to the console or application under a label like “Login,” “Sign in,” “Console,” or “Go to app.”

Documentation sites often have a “Get started” or “Quickstart” link in the navigation that leads to a connection guide, which in turn includes the console URL.


When the Page Looks Right but Something Is Missing

Sometimes you land on a page that is part of the right platform but does not have the specific feature you need — for example, a console that shows cluster information but not the API key management panel, or a settings page that is missing options you expect to see.

This usually means one of three things: the feature lives in a different section of the console than expected, the feature is only available for certain account types or deployment modes, or you are logged into an account that does not have permission to see or use that feature.

Check the navigation for a section name that matches what you are looking for before concluding that the feature does not exist. If you cannot find it in the navigation, the documentation’s search is usually faster than guessing at URL structures.


Self-Hosted vs. Cloud Console Access

A specific version of the “wrong page” problem occurs with self-hosted deployments. Developers running a vector database locally or on their own infrastructure sometimes search for the console expecting to find a fully featured admin GUI, then discover that the web interface available for their deployment type is more limited than the cloud version.

This is not a navigation problem — it is a deployment model difference. Most managed cloud platforms maintain a richer console than what is available for self-hosted instances because the cloud version can expose cluster management, billing, and monitoring features that do not have equivalents in a self-hosted context.

If you are running a self-hosted instance and need GUI access, the options are typically a lighter-weight web interface that may come bundled with the software, a third-party admin tool, or the API as the primary administration interface.


Weaviate: The Correct Entry Points

For Weaviate, the single entry point for all console access is:

console.weaviate.cloud

This is the browser-based interface for everything — cluster management, API keys, roles, metrics dashboards, and interactive GraphQL queries. If a search result, a shared link, or a redirect took you somewhere else, this URL is where you need to be.

What You Can Do From There

Once you are at the console:

  • Manage clusters: The Clusters list in the left sidebar shows all your clusters. Select one to open its details panel.
  • Get your REST Endpoint and API Key: Both are in the Cluster details panel. The REST Endpoint is the URL your client connects to. The API key is under API Keys — create one if none exists yet (v1.30+ clusters do not come with pre-created keys).
  • Run GraphQL queries: The built-in Query Module provides a GraphQL IDE with syntax highlighting and type-ahead directly in the browser.
  • Create an account: If you do not have a Weaviate Cloud account yet, the console login page has a sign-up option.

If You Are Running Weaviate Locally with Docker

The full admin GUI — key management, role management, metrics dashboards — is only available for Weaviate Cloud deployments. For a local Docker instance, those features are not present.

However, you can connect your local Docker instance to the Weaviate Cloud console as an external cluster for GraphQL queries. The browser connects directly to your localhost server — no data is routed through Weaviate Cloud, and no cloud account is required for the connection itself. This gives you the interactive query interface without needing to move to a managed deployment.

For everything beyond interactive queries on a local instance, administration happens through the REST API or the Python client directly.

Quick Navigation Reference

What you need Where to go
Main console (cloud clusters) console.weaviate.cloud
Create a new account console.weaviate.cloud (sign-up link on login page)
REST endpoint and API key Console → Cluster details → API Keys
Interactive query tool Console → Query Module
Documentation docs.weaviate.io
Community and support forum.weaviate.io