Friday, March 4, 2022

Deploying PrestoDB On Podman

 in This Tutorial you will Learn " How To install PrestoDB with Podman On Rocky Linux 8.5

Presto is an open-source SQL query engine built for running fast, large-scale analytics workloads distributed across multiple servers.
Podman is a daemonless, open source, Linux native tool designed to make it easy to find, run, build, share and deploy applications using Open Containers Initiative (OCI) Containers and Container Images. Podman provides a command line interface (CLI) familiar to anyone who has used the Docker Container Engine.
_________________________________________________________________________________________
Server - Os:  Rocky Linux 8.5  64Bit      |    IP -192.168.1.20        |     Hostname - www.primaryhost.com
_________________________________________________________________________________________
cat /etc/system-release ; sestatus ; dnf groupinstall "Development Tools" -y
dnf install -y podman
podman --version
systemctl start podman ; systemctl enable podman
mkdir data ; cd data
podman run -d \
     --name nextgenprestodb \
     -p 8080:8080 \
     -v $(pwd):/data/db:Z \
     ahanaio/prestodb-sandbox
podman ps ; podman images
netstat -tlpn
http://127.0.0.1:8080
_________________________________________________________________________________________


No comments:

Post a Comment