Instalar Presto 8.8 May 2026
SHOW TABLES; SELECT * FROM nation LIMIT 5; Create /etc/systemd/system/presto.service :
bin/launcher status View logs:
connector.name=tpch sudo mkdir -p /var/presto/data sudo mkdir -p /var/log/presto sudo chown -R $(whoami):$(whoami) /var/presto /var/log/presto /opt/presto 5. Start Presto Server cd /opt/presto/current bin/launcher start Check status: instalar presto 8.8
# Ubuntu/Debian sudo apt update && sudo apt install openjdk-11-jdk sudo yum install java-11-openjdk 2. Download Presto 8.8 # Create installation directory sudo mkdir -p /opt/presto cd /opt/presto Download Presto 8.8 server tarball sudo wget https://repo1.maven.org/maven2/com/facebook/presto/presto-server/0.288/presto-server-0.288.tar.gz Note: Version 8.8 corresponds to release 0.288 in Maven coordinates (Presto versioning changed after 0.288 → 350+). Verify the exact URL from Maven Central . Alternatively, use the official Presto download page: https://prestodb.io/download.html → Select version 0.288
$ bin/launcher status Running as [PID] $ curl http://localhost:8080/v1/info "nodeVersion":"version":"0.288","environment":"production","coordinator":true,"starting":false SHOW TABLES; SELECT * FROM nation LIMIT 5;
Date: Current Target Version: Presto 8.8 Environment: Linux (Ubuntu/Debian/CentOS/RHEL) Prerequisites: Java 11 (64-bit), Python 2.7+ (for launcher script) 1. Pre-Installation Checklist | Requirement | Verification Command | |-------------|----------------------| | Java 11 | java -version (must show OpenJDK 11) | | Memory | Free memory for Presto coordinator (minimum 4GB, recommended 8GB+) | | Disk Space | ~500MB for binaries + space for logs/data | | No running Presto | Ensure no existing Presto process conflicts |
Enable and start:
# Extract tarball sudo tar -xzf presto-server-0.288.tar.gz sudo mv presto-server-0.288 /opt/presto/presto-server-8.8 sudo ln -s /opt/presto/presto-server-8.8 /opt/presto/current Create the etc directory and essential configuration files.