Skip to content

Example of preparing the environment for Ubuntu Server#

Updating the system#

Update the system:

sudo apt update
sudo apt upgrade -y

Java Installation#

Java 17 must be installed on the server. Java installation instruction.

sudo apt install openjdk-17-jdk

Firewall#

Set up the firewall:

Allow the SSH connection:

sudo ufw allow ssh

Base rules:

sudo ufw default deny incoming
sudo ufw default allow outgoing

Allow HTTP and HTTPS connections:

sudo ufw allow http
sudo ufw allow https

Enable the firewall:

sudo ufw enable