Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ sleep 5
echo "Start testing Trino"
echo "Downloading Trino CLI tool as trino.jar"
# tag::download-trino-cli[]
curl --output trino.jar https://repo.stackable.tech/repository/packages/trino-cli/trino-cli-476-executable.jar
curl --fail --output trino.jar https://repo.stackable.tech/repository/packages/trino-cli/trino-cli-477
# end::download-trino-cli[]

echo "Run chmod +x for trino.jar"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ sleep 5
echo "Start testing Trino"
echo "Downloading Trino CLI tool as trino.jar"
# tag::download-trino-cli[]
curl --output trino.jar https://repo.stackable.tech/repository/packages/trino-cli/trino-cli-476-executable.jar
curl --fail --output trino.jar https://repo.stackable.tech/repository/packages/trino-cli/trino-cli-477
# end::download-trino-cli[]

echo "Run chmod +x for trino.jar"
Expand Down
21 changes: 19 additions & 2 deletions docs/modules/trino/pages/getting_started/first_steps.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,27 @@ Congratulations, you set up your first Stackable Trino cluster successfully.

=== Access the Trino web interface

With the port-forward still active, you can connect to the Trino web interface.
Enter `https://localhost:8443/ui` in your browser and login with the username `admin`.
To open the Trino UI in your browser you either have to start a port forwarding process or use `stackablectl` to obtain the node URL.
Either way, log in with the `admin` user name.
Since no authentication is enabled you do not need to enter a password.

With the port-forward still active, you can connect to the Trino web interfaceby pointing your browser to `https://localhost:8443/ui`.

Using `stackablectl` you can obtain the direct node URL like this:

[source,bash]
----
❯ stackablectl stacklet list

┌─────────┬──────────────┬───────────┬───────────────────────────────────────────────┬─────────────────────────────────┐
│ PRODUCT ┆ NAME ┆ NAMESPACE ┆ ENDPOINTS ┆ CONDITIONS │
╞═════════╪══════════════╪═══════════╪═══════════════════════════════════════════════╪═════════════════════════════════╡
│ trino ┆ simple-trino ┆ default ┆ coordinator-https https://192.168.49.2:32129 ┆ Available, Reconciling, Running │
└─────────┴──────────────┴───────────┴───────────────────────────────────────────────┴─────────────────────────────────┘----
----

In this case, point your browser to `https://192.168.49.2:32129`.

WARNING: Your browser will probably show a security risk warning because it does not trust the self generated TLS certificates.
Just ignore that and continue.

Expand Down