This commit is contained in:
cutemeli
2025-12-22 10:35:30 +00:00
parent 0bfc6c8425
commit 5ce7ca2c5d
38927 changed files with 0 additions and 4594700 deletions

View File

@@ -1,238 +0,0 @@
#!/bin/bash
#ATTENTION!
#
#DO NOT MODIFY THIS FILE BECAUSE IT WAS GENERATED AUTOMATICALLY,
#SO ALL YOUR CHANGES WILL BE LOST THE NEXT TIME THE FILE IS GENERATED.
set -e
([ -f /var/lock/subsys/ipchains ] && /etc/init.d/ipchains stop) >/dev/null 2>&1 || true
(rmmod ipchains) >/dev/null 2>&1 || true
apply_rule()
{
local iptables_bin="$1"
shift
local iptables_version
iptables_version="`"$iptables_bin" --version | awk '{print $2}' | awk -F. '{printf "%d%02d\n", $2, $3}'`"
# Use the native --wait option since v1.4.20
if [ "$iptables_version" -gt 420 ]; then
"$iptables_bin" -w "$@" 2>/dev/null
return $?
fi
# Emulate --wait for older versions
for i in `seq 10`; do
"$iptables_bin" "$@" 2>&1 | grep -q xtable || return 0
sleep 1
done
return 1
}
# Start of /usr/sbin/iptables setup
/usr/sbin/iptables-save -t filter | grep -- "-A INPUT" | grep -v "fail2ban-\|f2b-" | sed -e "s#^-A#apply_rule /usr/sbin/iptables -D#g" | while read -r cmd; do ${cmd} || true; done
apply_rule /usr/sbin/iptables -F FORWARD
apply_rule /usr/sbin/iptables -F OUTPUT
apply_rule /usr/sbin/iptables -Z FORWARD
apply_rule /usr/sbin/iptables -Z OUTPUT
apply_rule /usr/sbin/iptables -P INPUT DROP
apply_rule /usr/sbin/iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp ! --syn -m state --state NEW -j REJECT --reject-with tcp-reset
apply_rule /usr/sbin/iptables -A INPUT -m state --state INVALID -j DROP
apply_rule /usr/sbin/iptables -P OUTPUT DROP
apply_rule /usr/sbin/iptables -A OUTPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
apply_rule /usr/sbin/iptables -A OUTPUT -p tcp ! --syn -m state --state NEW -j REJECT --reject-with tcp-reset
apply_rule /usr/sbin/iptables -A OUTPUT -m state --state INVALID -j DROP
apply_rule /usr/sbin/iptables -P FORWARD DROP
apply_rule /usr/sbin/iptables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
apply_rule /usr/sbin/iptables -A FORWARD -p tcp ! --syn -m state --state NEW -j REJECT --reject-with tcp-reset
apply_rule /usr/sbin/iptables -A FORWARD -m state --state INVALID -j DROP
apply_rule /usr/sbin/iptables -A INPUT -i lo -j ACCEPT
apply_rule /usr/sbin/iptables -A OUTPUT -o lo -j ACCEPT
apply_rule /usr/sbin/iptables -A FORWARD -i lo -o lo -j ACCEPT
apply_rule /usr/sbin/iptables -t mangle -F
apply_rule /usr/sbin/iptables -t mangle -Z
apply_rule /usr/sbin/iptables -t mangle -P PREROUTING ACCEPT
apply_rule /usr/sbin/iptables -t mangle -P OUTPUT ACCEPT
apply_rule /usr/sbin/iptables -t mangle -P INPUT ACCEPT
apply_rule /usr/sbin/iptables -t mangle -P FORWARD ACCEPT
apply_rule /usr/sbin/iptables -t mangle -P POSTROUTING ACCEPT
apply_rule /usr/sbin/iptables -t nat -F
apply_rule /usr/sbin/iptables -t nat -Z
apply_rule /usr/sbin/iptables -t nat -P PREROUTING ACCEPT
apply_rule /usr/sbin/iptables -t nat -P OUTPUT ACCEPT
apply_rule /usr/sbin/iptables -t nat -P POSTROUTING ACCEPT
# Start of /usr/sbin/ip6tables setup
/usr/sbin/ip6tables-save -t filter | grep -- "-A INPUT" | grep -v "fail2ban-\|f2b-" | sed -e "s#^-A#apply_rule /usr/sbin/ip6tables -D#g" | while read -r cmd; do ${cmd} || true; done
apply_rule /usr/sbin/ip6tables -F FORWARD
apply_rule /usr/sbin/ip6tables -F OUTPUT
apply_rule /usr/sbin/ip6tables -Z FORWARD
apply_rule /usr/sbin/ip6tables -Z OUTPUT
apply_rule /usr/sbin/ip6tables -P INPUT DROP
apply_rule /usr/sbin/ip6tables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp ! --syn -m state --state NEW -j REJECT --reject-with tcp-reset
apply_rule /usr/sbin/ip6tables -A INPUT -m state --state INVALID -j DROP
apply_rule /usr/sbin/ip6tables -P OUTPUT DROP
apply_rule /usr/sbin/ip6tables -A OUTPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
apply_rule /usr/sbin/ip6tables -A OUTPUT -p tcp ! --syn -m state --state NEW -j REJECT --reject-with tcp-reset
apply_rule /usr/sbin/ip6tables -A OUTPUT -m state --state INVALID -j DROP
apply_rule /usr/sbin/ip6tables -P FORWARD DROP
apply_rule /usr/sbin/ip6tables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
apply_rule /usr/sbin/ip6tables -A FORWARD -p tcp ! --syn -m state --state NEW -j REJECT --reject-with tcp-reset
apply_rule /usr/sbin/ip6tables -A FORWARD -m state --state INVALID -j DROP
apply_rule /usr/sbin/ip6tables -A INPUT -i lo -j ACCEPT
apply_rule /usr/sbin/ip6tables -A OUTPUT -o lo -j ACCEPT
apply_rule /usr/sbin/ip6tables -A FORWARD -i lo -o lo -j ACCEPT
apply_rule /usr/sbin/ip6tables -t mangle -F
apply_rule /usr/sbin/ip6tables -t mangle -Z
apply_rule /usr/sbin/ip6tables -t mangle -P PREROUTING ACCEPT
apply_rule /usr/sbin/ip6tables -t mangle -P OUTPUT ACCEPT
apply_rule /usr/sbin/ip6tables -t mangle -P INPUT ACCEPT
apply_rule /usr/sbin/ip6tables -t mangle -P FORWARD ACCEPT
apply_rule /usr/sbin/ip6tables -t mangle -P POSTROUTING ACCEPT
apply_rule /usr/sbin/ip6tables -t nat -F
apply_rule /usr/sbin/ip6tables -t nat -Z
apply_rule /usr/sbin/ip6tables -t nat -P PREROUTING ACCEPT
apply_rule /usr/sbin/ip6tables -t nat -P OUTPUT ACCEPT
apply_rule /usr/sbin/ip6tables -t nat -P POSTROUTING ACCEPT
# Start of /usr/sbin/iptables rules
apply_rule /usr/sbin/iptables -A INPUT -p udp --dport 68 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 49152:65535 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 8447 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p udp --dport 8443 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p udp --dport 443 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 8443 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 8880 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 80 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 443 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 21 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 22 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 587 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 25 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 465 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 110 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 995 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 143 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 993 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 106 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 3306 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 5432 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p udp --dport 137 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p udp --dport 138 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 139 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 445 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p udp --dport 53 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p tcp --dport 53 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -p icmp --icmp-type 8/0 -j ACCEPT
apply_rule /usr/sbin/iptables -A INPUT -j DROP
apply_rule /usr/sbin/iptables -A OUTPUT -j ACCEPT
apply_rule /usr/sbin/iptables -A FORWARD -j DROP
# End of /usr/sbin/iptables rules
# Start of /usr/sbin/ip6tables rules
apply_rule /usr/sbin/ip6tables -A INPUT -p udp --dport 546 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 49152:65535 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 8447 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p udp --dport 8443 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p udp --dport 443 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 8443 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 8880 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 80 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 443 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 21 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 22 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 587 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 25 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 465 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 110 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 995 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 143 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 993 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 106 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 3306 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 5432 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p udp --dport 137 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p udp --dport 138 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 139 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 445 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p udp --dport 53 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p tcp --dport 53 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p icmpv6 --icmpv6-type 130/0 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p icmpv6 --icmpv6-type 134/0 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p icmpv6 --icmpv6-type 135/0 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p icmpv6 --icmpv6-type 136/0 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p icmpv6 --icmpv6-type 137/0 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p icmpv6 --icmpv6-type 128/0 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -p icmpv6 --icmpv6-type 129/0 -j ACCEPT
apply_rule /usr/sbin/ip6tables -A INPUT -j DROP
apply_rule /usr/sbin/ip6tables -A OUTPUT -j ACCEPT
apply_rule /usr/sbin/ip6tables -A FORWARD -j DROP
# End of /usr/sbin/ip6tables rules
#
# End of script
#

View File

@@ -1,22 +0,0 @@
#!/bin/sh
### Copyright 1999-2023. Plesk International GmbH. All rights reserved.
export PATH="/usr/sbin:/sbin:$PATH"
iptables -F
iptables -X
iptables -Z
iptables -P INPUT ACCEPT
iptables -P OUTPUT ACCEPT
iptables -P FORWARD ACCEPT
if [ -e "/proc/net/if_inet6" -a -n "`cat /proc/net/if_inet6`" ] && which ip6tables >/dev/null 2>&1; then
ip6tables -F
ip6tables -X
ip6tables -Z
ip6tables -P INPUT ACCEPT
ip6tables -P OUTPUT ACCEPT
ip6tables -P FORWARD ACCEPT
fi
exit 0

View File

@@ -1 +0,0 @@
The database has been downloaded from https://lite.ip2location.com/database/db1-ip-country

Binary file not shown.

View File

@@ -1,2 +0,0 @@
Panel Migrator configuration files: conf
Panel Migrator temporary files: sessions, logs, etc.

View File

@@ -1,5 +0,0 @@
# Create a custom MySQL configuration file by copying this sample to my.cnf and
# modifying it as needed. It will be used on source panels other than Plesk.
[client]
# max_allowed_packet = 32M

View File

@@ -1,190 +0,0 @@
+|2025-09-28_06:30:08,976|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-09-28_06:30:09,025|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-09-29_06:25:37,383|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-09-29_06:25:37,392|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-09-30_06:30:12,846|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-09-30_06:30:12,855|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-09-30_06:30:16,798|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-09-30_06:30:16,807|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-09-30_06:30:16,807|D|MT|core.workflow.runner.base|||MIGRATOR START: /opt/psa/admin/sbin/modules//panel-migrator/plesk-migrator check-upgrade-allowed --quiet
+|2025-09-30_06:30:16,808|D|MT|core.workflow.runner.by_subscription|||START: Check availability to perform upgrade gracefully
+|2025-09-30_06:30:16,808|D|MT|core.workflow.runner.by_subscription|||FINISH: Check availability to perform upgrade gracefully
+|2025-09-30_06:30:16,808|D|MT|core.workflow.runner.base|||MIGRATOR END: /opt/psa/admin/sbin/modules//panel-migrator/plesk-migrator check-upgrade-allowed --quiet
+|2025-10-01_06:29:48,853|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-01_06:29:48,902|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-02_06:28:38,252|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-02_06:28:38,263|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-03_06:28:10,772|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-03_06:28:10,793|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-04_06:28:10,527|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-04_06:28:10,538|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-05_06:29:00,495|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-05_06:29:00,504|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-06_06:29:01,354|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-06_06:29:01,367|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-07_06:30:12,759|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-07_06:30:12,782|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-08_06:28:32,736|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-08_06:28:32,744|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-09_06:30:00,322|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-09_06:30:00,332|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-10_06:27:53,668|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-10_06:27:53,685|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-11_06:30:04,099|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-11_06:30:04,112|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-12_06:28:07,878|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-12_06:28:07,888|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-13_06:27:42,399|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-13_06:27:42,411|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-14_06:25:49,072|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-14_06:25:49,082|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-15_06:27:15,879|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-15_06:27:15,891|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-15_13:18:24,004|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-15_13:18:24,027|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-15_13:18:24,029|D|MT|core.workflow.runner.base|||MIGRATOR START: /opt/psa/admin/sbin/modules//panel-migrator/plesk-migrator check-upgrade-allowed --quiet
+|2025-10-15_13:18:24,029|D|MT|core.workflow.runner.by_subscription|||START: Check availability to perform upgrade gracefully
+|2025-10-15_13:18:24,029|D|MT|core.workflow.runner.by_subscription|||FINISH: Check availability to perform upgrade gracefully
+|2025-10-15_13:18:24,030|D|MT|core.workflow.runner.base|||MIGRATOR END: /opt/psa/admin/sbin/modules//panel-migrator/plesk-migrator check-upgrade-allowed --quiet
+|2025-10-16_06:27:53,202|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-16_06:27:53,247|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-17_06:28:58,998|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-17_06:28:59,012|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-18_06:26:25,484|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-18_06:26:25,493|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-19_06:26:48,280|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-19_06:26:48,290|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-20_06:29:21,149|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-20_06:29:21,157|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-21_06:30:23,846|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-21_06:30:23,856|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-22_06:26:51,399|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-22_06:26:51,408|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-23_06:30:04,542|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-23_06:30:04,553|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-24_06:30:37,670|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-24_06:30:37,683|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-25_06:28:39,618|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-25_06:28:39,627|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-26_06:28:33,347|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-26_06:28:33,357|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-27_06:25:37,633|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-27_06:25:37,647|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-28_06:38:11,349|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-28_06:38:11,372|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-29_06:26:02,372|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-29_06:26:02,397|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-30_06:26:32,927|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-30_06:26:32,951|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-10-31_06:29:49,122|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-10-31_06:29:49,149|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-01_06:29:41,154|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-01_06:29:41,175|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-02_06:26:49,367|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-02_06:26:49,376|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-03_06:29:37,951|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-03_06:29:37,973|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-04_06:27:08,747|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-04_06:27:08,769|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-05_06:28:29,337|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-05_06:28:29,359|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-06_06:25:50,212|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-06_06:25:50,223|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-07_06:30:39,518|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-07_06:30:39,528|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-08_06:28:49,187|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-08_06:28:49,196|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-09_06:27:20,241|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-09_06:27:20,250|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-10_06:30:11,361|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-10_06:30:11,381|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-11_06:27:08,903|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-11_06:27:08,912|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-11_06:27:12,960|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-11_06:27:12,970|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-11_06:27:12,971|D|MT|core.workflow.runner.base|||MIGRATOR START: /opt/psa/admin/sbin/modules//panel-migrator/plesk-migrator check-upgrade-allowed --quiet
+|2025-11-11_06:27:12,972|D|MT|core.workflow.runner.by_subscription|||START: Check availability to perform upgrade gracefully
+|2025-11-11_06:27:12,972|D|MT|core.workflow.runner.by_subscription|||FINISH: Check availability to perform upgrade gracefully
+|2025-11-11_06:27:12,972|D|MT|core.workflow.runner.base|||MIGRATOR END: /opt/psa/admin/sbin/modules//panel-migrator/plesk-migrator check-upgrade-allowed --quiet
+|2025-11-12_06:26:32,359|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-12_06:26:32,407|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-13_06:27:02,843|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-13_06:27:02,864|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-14_06:29:29,813|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-14_06:29:29,837|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-15_06:26:38,421|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-15_06:26:38,431|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-16_06:27:02,714|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-16_06:27:02,735|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-17_06:27:25,403|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-17_06:27:25,424|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-18_06:26:54,756|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-18_06:26:54,776|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-19_06:29:11,552|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-19_06:29:11,580|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-20_06:28:14,053|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-20_06:28:14,061|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-21_06:28:51,395|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-21_06:28:51,417|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-22_06:28:29,708|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-22_06:28:29,728|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-23_06:30:14,717|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-23_06:30:14,739|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-24_06:26:50,851|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-24_06:26:50,870|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-25_06:27:40,751|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-25_06:27:40,774|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-26_06:30:12,958|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-26_06:30:12,981|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-27_06:26:34,812|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-27_06:26:34,835|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-28_06:29:19,417|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-28_06:29:19,438|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-29_06:29:54,725|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-29_06:29:54,734|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-11-30_06:29:22,886|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-11-30_06:29:22,904|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-01_06:27:12,019|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-01_06:27:12,038|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-02_06:27:56,608|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-02_06:27:56,627|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-03_06:27:25,136|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-03_06:27:25,147|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-04_06:27:07,593|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-04_06:27:07,614|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-05_06:25:49,604|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-05_06:25:49,620|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-06_06:27:58,334|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-06_06:27:58,354|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-07_06:29:58,139|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-07_06:29:58,159|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-08_06:28:27,807|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-08_06:28:27,826|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-09_06:26:03,284|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-09_06:26:03,304|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-10_06:27:27,616|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-10_06:27:27,635|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-11_06:29:29,692|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-11_06:29:29,716|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-12_06:25:41,947|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-12_06:25:41,968|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-13_06:26:00,513|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-13_06:26:00,522|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-14_06:27:33,711|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-14_06:27:33,731|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-15_06:26:43,654|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-15_06:26:43,675|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-16_06:28:28,226|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-16_06:28:28,247|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-17_06:29:25,888|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-17_06:29:25,900|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-18_06:27:27,709|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-18_06:27:27,731|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-19_06:28:40,465|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-19_06:28:40,486|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-20_06:27:59,791|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-20_06:27:59,812|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-21_06:29:16,601|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-21_06:29:16,629|I|MT|core.migrator|||Initialize Plesk Migrator
+|2025-12-22_06:29:22,579|D|MT|hosting_check.utils.http_client|||Unable to import NSS. We will use OpenSSL
+|2025-12-22_06:29:22,601|I|MT|core.migrator|||Initialize Plesk Migrator

View File

@@ -1,89 +0,0 @@
[2025-09-28 06:30:09][INFO] Initialize Plesk Migrator
[2025-09-29 06:25:37][INFO] Initialize Plesk Migrator
[2025-09-30 06:30:12][INFO] Initialize Plesk Migrator
[2025-09-30 06:30:16][INFO] Initialize Plesk Migrator
[2025-10-01 06:29:48][INFO] Initialize Plesk Migrator
[2025-10-02 06:28:38][INFO] Initialize Plesk Migrator
[2025-10-03 06:28:10][INFO] Initialize Plesk Migrator
[2025-10-04 06:28:10][INFO] Initialize Plesk Migrator
[2025-10-05 06:29:00][INFO] Initialize Plesk Migrator
[2025-10-06 06:29:01][INFO] Initialize Plesk Migrator
[2025-10-07 06:30:12][INFO] Initialize Plesk Migrator
[2025-10-08 06:28:32][INFO] Initialize Plesk Migrator
[2025-10-09 06:30:00][INFO] Initialize Plesk Migrator
[2025-10-10 06:27:53][INFO] Initialize Plesk Migrator
[2025-10-11 06:30:04][INFO] Initialize Plesk Migrator
[2025-10-12 06:28:07][INFO] Initialize Plesk Migrator
[2025-10-13 06:27:42][INFO] Initialize Plesk Migrator
[2025-10-14 06:25:49][INFO] Initialize Plesk Migrator
[2025-10-15 06:27:15][INFO] Initialize Plesk Migrator
[2025-10-15 13:18:24][INFO] Initialize Plesk Migrator
[2025-10-16 06:27:53][INFO] Initialize Plesk Migrator
[2025-10-17 06:28:59][INFO] Initialize Plesk Migrator
[2025-10-18 06:26:25][INFO] Initialize Plesk Migrator
[2025-10-19 06:26:48][INFO] Initialize Plesk Migrator
[2025-10-20 06:29:21][INFO] Initialize Plesk Migrator
[2025-10-21 06:30:23][INFO] Initialize Plesk Migrator
[2025-10-22 06:26:51][INFO] Initialize Plesk Migrator
[2025-10-23 06:30:04][INFO] Initialize Plesk Migrator
[2025-10-24 06:30:37][INFO] Initialize Plesk Migrator
[2025-10-25 06:28:39][INFO] Initialize Plesk Migrator
[2025-10-26 06:28:33][INFO] Initialize Plesk Migrator
[2025-10-27 06:25:37][INFO] Initialize Plesk Migrator
[2025-10-28 06:38:11][INFO] Initialize Plesk Migrator
[2025-10-29 06:26:02][INFO] Initialize Plesk Migrator
[2025-10-30 06:26:32][INFO] Initialize Plesk Migrator
[2025-10-31 06:29:49][INFO] Initialize Plesk Migrator
[2025-11-01 06:29:41][INFO] Initialize Plesk Migrator
[2025-11-02 06:26:49][INFO] Initialize Plesk Migrator
[2025-11-03 06:29:37][INFO] Initialize Plesk Migrator
[2025-11-04 06:27:08][INFO] Initialize Plesk Migrator
[2025-11-05 06:28:29][INFO] Initialize Plesk Migrator
[2025-11-06 06:25:50][INFO] Initialize Plesk Migrator
[2025-11-07 06:30:39][INFO] Initialize Plesk Migrator
[2025-11-08 06:28:49][INFO] Initialize Plesk Migrator
[2025-11-09 06:27:20][INFO] Initialize Plesk Migrator
[2025-11-10 06:30:11][INFO] Initialize Plesk Migrator
[2025-11-11 06:27:08][INFO] Initialize Plesk Migrator
[2025-11-11 06:27:12][INFO] Initialize Plesk Migrator
[2025-11-12 06:26:32][INFO] Initialize Plesk Migrator
[2025-11-13 06:27:02][INFO] Initialize Plesk Migrator
[2025-11-14 06:29:29][INFO] Initialize Plesk Migrator
[2025-11-15 06:26:38][INFO] Initialize Plesk Migrator
[2025-11-16 06:27:02][INFO] Initialize Plesk Migrator
[2025-11-17 06:27:25][INFO] Initialize Plesk Migrator
[2025-11-18 06:26:54][INFO] Initialize Plesk Migrator
[2025-11-19 06:29:11][INFO] Initialize Plesk Migrator
[2025-11-20 06:28:14][INFO] Initialize Plesk Migrator
[2025-11-21 06:28:51][INFO] Initialize Plesk Migrator
[2025-11-22 06:28:29][INFO] Initialize Plesk Migrator
[2025-11-23 06:30:14][INFO] Initialize Plesk Migrator
[2025-11-24 06:26:50][INFO] Initialize Plesk Migrator
[2025-11-25 06:27:40][INFO] Initialize Plesk Migrator
[2025-11-26 06:30:12][INFO] Initialize Plesk Migrator
[2025-11-27 06:26:34][INFO] Initialize Plesk Migrator
[2025-11-28 06:29:19][INFO] Initialize Plesk Migrator
[2025-11-29 06:29:54][INFO] Initialize Plesk Migrator
[2025-11-30 06:29:22][INFO] Initialize Plesk Migrator
[2025-12-01 06:27:12][INFO] Initialize Plesk Migrator
[2025-12-02 06:27:56][INFO] Initialize Plesk Migrator
[2025-12-03 06:27:25][INFO] Initialize Plesk Migrator
[2025-12-04 06:27:07][INFO] Initialize Plesk Migrator
[2025-12-05 06:25:49][INFO] Initialize Plesk Migrator
[2025-12-06 06:27:58][INFO] Initialize Plesk Migrator
[2025-12-07 06:29:58][INFO] Initialize Plesk Migrator
[2025-12-08 06:28:27][INFO] Initialize Plesk Migrator
[2025-12-09 06:26:03][INFO] Initialize Plesk Migrator
[2025-12-10 06:27:27][INFO] Initialize Plesk Migrator
[2025-12-11 06:29:29][INFO] Initialize Plesk Migrator
[2025-12-12 06:25:41][INFO] Initialize Plesk Migrator
[2025-12-13 06:26:00][INFO] Initialize Plesk Migrator
[2025-12-14 06:27:33][INFO] Initialize Plesk Migrator
[2025-12-15 06:26:43][INFO] Initialize Plesk Migrator
[2025-12-16 06:28:28][INFO] Initialize Plesk Migrator
[2025-12-17 06:29:25][INFO] Initialize Plesk Migrator
[2025-12-18 06:27:27][INFO] Initialize Plesk Migrator
[2025-12-19 06:28:40][INFO] Initialize Plesk Migrator
[2025-12-20 06:27:59][INFO] Initialize Plesk Migrator
[2025-12-21 06:29:16][INFO] Initialize Plesk Migrator
[2025-12-22 06:29:22][INFO] Initialize Plesk Migrator

View File

@@ -1 +0,0 @@
[[{"action": "check-upgrade-allowed", "subscription": null}, {"executed": true}]]

View File

@@ -1,13 +0,0 @@
{
"mail-migrations": {
"TYPE": "array",
"VALUE": []
},
"migrator_version": "2.31.2-2025.10.30.15.06",
"sessions": {},
"site-migrations": {
"TYPE": "array",
"VALUE": []
},
"subscriptions": {}
}

View File

@@ -1,42 +0,0 @@
# Copyright 1999-2024. WebPros International GmbH. All rights reserved.
set daemon <poll_interval>
set logfile /var/log/plesk/modules/monit.log
set statefile /run/monit.state
set httpd port <monit_tcp_port> and use address 127.0.0.1
allow 127.0.0.1
allow <monit_login>:<monit_password>
set mmonit https://<monit_login>:<monit_password>@127.0.0.1:<wdcollect_port>/
# Plesk apache
check process plesk_apache
with pidfile "/run/sw-cp-server.pid"
start = "<plesk_apache_start>"
stop = "<plesk_apache_stop>"
if failed host localhost port 8443 type tcpssl send "GET /favicon.ico HTTP/1.1\r\n\r\n" expect "HTTP/1\.[01x] [1-4][0-9]{2} .*\r\n" with timeout <plesk_apache_connection_timeout> seconds then restart
if <plesk_apache_timeout_restarts> restarts within <plesk_apache_timeout_cycles> cycles then timeout
every <plesk_apache_cycles> cycles
mode <plesk_apache_mode>
# sw-engine
check process sw_engine
with pidfile "/run/sw-engine.pid"
start = "<sw_engine_start>"
stop = "<sw_engine_stop>"
if failed unixsocket /run/sw-engine.sock with timeout <sw_engine_connection_timeout> seconds then restart
if <sw_engine_timeout_restarts> restarts within <sw_engine_timeout_cycles> cycles then timeout
every <sw_engine_cycles> cycles
mode <sw_engine_mode>
# Apache
check process apache
with pidfile "/run/apache2/apache2.pid"
start = "<apache_start>"
stop = "<apache_stop>"
if failed host <apache_monitoring_ip> port <apache_port> send "GET / HTTP/1.1\r\nHost: <apache_monitoring_host>\r\n\r\n" expect "HTTP/1\.[01x] [1-4][0-9]{2} .*\r\n" with timeout <apache_connection_timeout> seconds then restart
if <apache_timeout_restarts> restarts within <apache_timeout_cycles> cycles then timeout
every <apache_cycles> cycles
mode <apache_mode>

View File

@@ -1,42 +0,0 @@
# Copyright 1999-2024. WebPros International GmbH. All rights reserved.
set daemon <poll_interval>
set logfile /var/log/plesk/modules/monit.log
set statefile <plesk_dir>/var/modules/watchdog/run/monit.state
set httpd port <monit_tcp_port> and use address 127.0.0.1
allow 127.0.0.1
allow <monit_login>:<monit_password>
set mmonit https://<monit_login>:<monit_password>@127.0.0.1:<wdcollect_port>/
# Plesk apache
check process plesk_apache
with pidfile "/run/sw-cp-server.pid"
start = "<plesk_apache_start>"
stop = "<plesk_apache_stop>"
if failed host localhost port 8443 type tcpssl send "GET /favicon.ico HTTP/1.1\r\n\r\n" expect "HTTP/1\.[01x] [1-4][0-9]{2} .*\r\n" with timeout <plesk_apache_connection_timeout> seconds then restart
if <plesk_apache_timeout_restarts> restarts within <plesk_apache_timeout_cycles> cycles then timeout
every <plesk_apache_cycles> cycles
mode <plesk_apache_mode>
# sw-engine
check process sw_engine
with pidfile "/run/sw-engine.pid"
start = "<sw_engine_start>"
stop = "<sw_engine_stop>"
if failed unixsocket /run/sw-engine.sock with timeout <sw_engine_connection_timeout> seconds then restart
if <sw_engine_timeout_restarts> restarts within <sw_engine_timeout_cycles> cycles then timeout
every <sw_engine_cycles> cycles
mode <sw_engine_mode>
# Apache
check process apache
with pidfile "/run/apache2/apache2.pid"
start = "<apache_start>"
stop = "<apache_stop>"
if failed host <apache_monitoring_ip> port <apache_port> send "GET / HTTP/1.1\r\nHost: <apache_monitoring_host>\r\n\r\n" expect "HTTP/1\.[01x] [1-4][0-9]{2} .*\r\n" with timeout <apache_connection_timeout> seconds then restart
if <apache_timeout_restarts> restarts within <apache_timeout_cycles> cycles then timeout
every <apache_cycles> cycles
mode <apache_mode>

View File

@@ -1,10 +0,0 @@
### Copyright 1999-2025. WebPros International GmbH. All rights reserved.
check process dovecot with pidfile /run/dovecot/master.pid
start program = "<dovecot_start>"
stop program = "<dovecot_stop>"
if failed port 143 protocol imap with timeout <dovecot_connection_timeout> seconds then restart
if failed port 993 type tcpssl protocol imap with timeout <dovecot_connection_timeout> seconds then restart
if failed port 110 protocol pop with timeout <dovecot_connection_timeout> seconds then restart
if failed port 995 type tcpssl protocol pop with timeout <dovecot_connection_timeout> seconds then restart
every <dovecot_cycles> cycles
mode <dovecot_mode>

View File

@@ -1,10 +0,0 @@
### Copyright 1999-2025. WebPros International GmbH. All rights reserved.
# Local MySQL
check process mysql
with pidfile "<mysql_pid>"
start = "<mysql_start>"
stop = "<mysql_stop>"
if failed unixsocket "/run/mysqld/mysqld.sock" with timeout <mysql_connection_timeout> seconds then restart
if <mysql_timeout_restarts> restarts within <mysql_timeout_cycles> cycles then timeout
every <mysql_cycles> cycles
mode <mysql_mode>

View File

@@ -1,17 +0,0 @@
### Copyright 1999-2025. WebPros International GmbH. All rights reserved.
# Postfix
check process postfix with pidfile /var/spool/postfix/pid/master.pid
start = "<postfix_start>"
stop = "<postfix_stop>"
if <postfix_timeout_restarts> restarts within <postfix_timeout_cycles> cycles then timeout
every <postfix_cycles> cycles
mode <postfix_mode>
# Postfix milter filter (pc-remote)
check host pc_remote with address 127.0.0.1
start = "<pc_remote_start>"
stop = "<pc_remote_stop>"
if failed port 12768 type tcp with timeout <pc_remote_connection_timeout> seconds then restart
if <pc_remote_timeout_restarts> restarts within <pc_remote_timeout_cycles> cycles then timeout
every <pc_remote_cycles> cycles
mode <pc_remote_mode>

View File

@@ -1,10 +0,0 @@
### Copyright 1999-2025. WebPros International GmbH. All rights reserved.
# SpamAssassin
check process psa_spamassassin
with pidfile "/run/spamd.pid"
start = "<psa_spamassassin_start>"
stop = "<psa_spamassassin_stop>"
if failed host localhost port 783 <spamassassin_protocol_check> with timeout <psa_spamassassin_connection_timeout> seconds then restart
if <psa_spamassassin_timeout_restarts> restarts within <psa_spamassassin_timeout_cycles> cycles then timeout
every <psa_spamassassin_cycles> cycles
mode <psa_spamassassin_mode>