• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Question mariadb service is still in stop mode - SSH blocked by firewall

MedB

New Pleskian
Hello,

I just had a big problem and can't find a solution.

the mariadb service is still in stop mode on the repair panel. I restarted my server a number of times but without success and I clicked on restart processes and it is still in stop mode.

The problem is, I can't access SSH because the plesk firewall is blocking me all the time.

I can't find any solution. How can I do it please?

Thank you in advance
 
hello @MedB ,

if you have access to control panel you can install an extension called 'SSH Terminal'. It allows to access server via SSH right from your browser.
As it connects to the localhost from the server point of view - firewall should not block it.

If all that you have is a server with enabled firewall and stopped DB server (which leads to Plesk Panel malfunction)
then please follow instructions provided by LTUser: you have to boot your server in rescue mode (probably from rescue media)
and modify /usr/local/psa/var/modules/firewall/firewall-active.sh

you can add something like below
Code:
/usr/sbin/iptables -F
/usr/sbin/iptables -X
/usr/sbin/iptables -Z
/usr/sbin/iptables -P INPUT ACCEPT
/usr/sbin/iptables -P OUTPUT ACCEPT
/usr/sbin/iptables -P FORWARD ACCEPT
exit 0;
to the beginning and try restart your server.
 
Back
Top