You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're deploying this on Oracle Cloud, we'll not be able to use ufw. You'll need to install firewalld instead. As such, run these commands before the setup:
sudo apt update
sudo apt install firewalld -y
# Port 22 (SSH) is already open to us by default
for PORT in 25/tcp 53/tcp 53/udp 80/tcp 443/tcp 465/tcp 587/tcp 993/tcp 995/tcp 4190/tcp
do
sudo firewall-cmd --zone=public --permanent --add-port=$PORT
done
sudo firewall-cmd --reload
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
If you're deploying this on Oracle Cloud, we'll not be able to use
ufw
. You'll need to installfirewalld
instead. As such, run these commands before the setup:The run the setup as usual.
Beta Was this translation helpful? Give feedback.
All reactions