• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Is there a way to shutdown the Plesk firewall from the command line?

G

GraphicsGuy

Guest
DUH!! I didn't think to set up a rule to keep the Plesk port open and activated the "deny all other incoiming" rule. :eek:

Does anybody know a way to deactivate the Plesk firewall from the bash command line on a RHEL box?
 
Interesting. I found how to shut it down:

/etc/rc.d/init.d/psa-firewall stop

This flushes iptables:
echo 0 > /proc/sys/net/ipv4/ip_forward
echo 0 > /usr/local/psa/var/modules/firewall/ip_forward.active
/sbin/iptables -F
/sbin/iptables -X
/sbin/iptables -Z
/sbin/iptables -P INPUT ACCEPT
/sbin/iptables -P OUTPUT ACCEPT
/sbin/iptables -P FORWARD ACCEPT

However the Plesk admin still seems to be blocked, or else somehow activating the firewall broke it.
 
Rebooted server and everything is fine.

Live and learn.
 
Back
Top