Zato installation on Ubuntu

Remember: If you're starting out with Zato, use Docker Quickstart. It's going to start a fully working environment for you in 5 minutes and then you can focus on your real integration and automation work. Use the instructions below only if you're an advanced user.

Repeat: Use Docker Quickstart if you're new to Zato.

Requirements

  • Ubuntu 20.04 or 22.04
  • Sudo rights

Installation steps

  • Install helper packages:
sudo apt-get update && \
sudo add-apt-repository -y universe && \
sudo apt-get install -y apt-transport-https curl wget \
software-properties-common libsasl2-dev libldap2-dev \
libssl-dev tzdata
  • Install Zato:
release=`lsb_release -rs` &&
curl -sLO https://zato.io/repo/stable/ubuntu/zato-3.2-ubuntu-$release.deb && \
sudo apt-get install -y ./zato-3.2-ubuntu-$release.deb
  • Confirm the installation (as user zato):
sudo su - zato
zato --version
# E.g. 3.2.yyyy.mm.dd+rev.c91d69be6-py3.10.12-ubuntu.22.04-jammy

That concludes the process - you can refer to the main documentation index now.