Como Instalar Presto 8.8 Updated May 2026
java -version # Output should show version 11.x Create a dedicated directory and download the tarball:
sudo nano /etc/presto/config.properties Add:
presto --server localhost:8080 --catalog tpch --schema sf1 Execute: como instalar presto 8.8
sudo mkdir -p /opt/presto cd /opt/presto sudo wget https://repo1.maven.org/maven2/com/facebook/presto/presto-server/8.8/presto-server-8.8.tar.gz sudo tar -xzf presto-server-8.8.tar.gz sudo mv presto-server-8.8/* . sudo rm -rf presto-server-8.8 presto-server-8.8.tar.gz Presto 8.8 is an older release. If the Maven URL is deprecated, check the PrestoDB archives or use Trino (the modern fork). For historical/educational purposes, this is the canonical path. 🗂️ Passo 3: Criar a Estrutura de Diretórios Presto needs separate directories for configuration, data, and logs:
bin/launcher status View logs:
connector.name=mysql connection-url=jdbc:mysql://localhost:3306 connection-user=root connection-password=your_password You can replace mysql with tpch for testing (no extra setup):
tail -f /var/log/presto/server.log Wait for the message: ======== SERVER STARTED ======== Download the Presto CLI client: java -version # Output should show version 11
cd /opt/presto bin/launcher start Check status:
