• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • Our UX team believes in the in the power of direct feedback and would like to invite you to participate in interviews, tests, and surveys.
    To stay in the loop and never miss an opportunity to share your thoughts, please subscribe to our UX research program. If you were previously part of the Plesk UX research program, please re-subscribe to continue receiving our invitations.
  • 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.

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