Como Instalar Presto 8.8 Tutorial -
cd /opt/presto
sudo bin/launcher start
Check status:
sudo bin/launcher status
View logs if needed:
sudo tail -f /opt/presto/data/var/log/server.log
Create etc/log.properties:
io.prestosql=INFO
Nunca ejecutes Presto como root. Crea un usuario del sistema:
sudo useradd -r -d /opt/presto -m -s /bin/bash presto
Setea una contraseña opcional (no necesaria para pruebas): como instalar presto 8.8 tutorial
sudo passwd presto
Crea los directorios de datos y logs:
sudo mkdir -p /data/presto/data
sudo mkdir -p /var/log/presto
sudo chown -R presto:presto /data/presto /var/log/presto /opt/presto
Download the official tarball from the Presto repository. cd /opt/presto sudo bin/launcher start
cd /opt
sudo wget https://repo1.maven.org/maven2/com/facebook/presto/presto-server/0.288/presto-server-0.288.tar.gz
Note: Presto 8.x releases from the original Facebook/Presto lineage may require checking Presto’s Maven repo. For Trino (the renamed Presto SQL), version 8.8 does not exist – but for original Presto, use 0.288 equivalent. Adjust the URL if you need a specific build.
If you want Trino (formerly Presto SQL) version 8.8, download: Check status: sudo bin/launcher status
sudo wget https://repo1.maven.org/maven2/io/trino/trino-server/388/trino-server-388.tar.gz
sudo yum install java-11-openjdk -y
Verify:
java -version
# Output should show openjdk version "11.x.x"