There are upcoming maintenance events which may impact our services. Learn more

Unable to access Plesk on newly provisioned VPS Print

  • 0

AlmaLinux by default comes configured with a built in firewall, firewalld, which is locked down for optimal security. This isn't so hot when you want to access a control panel, such as Plesk running on port 8443. Connect via SSH (or Console via our Client Centre) and run the following commands to fix this. These commands open the ports for Plesk (8443) and its update daemon (8447):

systemctl restart firewalld 
firewall-cmd --zone=public --add-port=8443/tcp --permanent
firewall-cmd --zone=public --add-port=8447/tcp --permanent
firewall-cmd --reload

If you're using a panel other than Plesk, like cPanel, be sure to look up the correct ports to open for that panel.
If you wish to use your control panel's firewall instead, run systemctl disable firewalld and then activate the control panel firewall.

Otherwise, be sure to activate firewalld on startup and disable any default iptables rules:

systemctl stop iptables
systemctl mask iptables
systemctl enable firewalld.service


Was this answer helpful?

← Back