This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
212
CentOS 9 Problems / Re: CWP to CWP Account Migration
« on: March 19, 2025, 01:08:55 PM »
Let's put those rumors to rest -- once and for all. CWP is active & alive. EL9 support is a long beta process, but it will emerge with better QoS as a result of the longer testing cycle. Since we're in Enterprise Linux land, that should tell you what we prefer -- long & stable.
213
Suggestions / Re: :):):) Comodo WAF rules update required :):):)
« on: March 18, 2025, 12:32:31 PM »
What is your country? https://dl.starburst.help/ works here with Xfinity (Comcast) in the USA.
214
E-Mail / Re: I send email but the email is not coming
« on: March 16, 2025, 07:11:08 PM »
Do you have a resolvable FQDN A record and working reverse DNS (PTR) provided by your hosting company? These are critical to ensure mail delivery. What is the IP address of the server so we can test its DNS setup?
215
Mod_Security / Re: 19GB modsec_audit.log
« on: March 15, 2025, 06:59:38 PM »
cyberspace's Logrotate config will catch anything ending in .log or _log, including /usr/local/apache/logs/modsec_audit.log
and /usr/local/apache/logs/modsec_debug.log (which is the subject of this thread:
and /usr/local/apache/logs/modsec_debug.log (which is the subject of this thread:
Code: [Select]
0 /usr/local/apache/logs/*bytes
129M /usr/local/apache/logs/access_log
452K /usr/local/apache/logs/error_log
4.0K /usr/local/apache/logs/httpd.pid
4.0K /usr/local/apache/logs/modsec_audit.log
0 /usr/local/apache/logs/modsec_debug.log
0 /usr/local/apache/logs/phpmail.log
0 /usr/local/apache/logs/suphp_log
0 /usr/local/apache/logs/tmp
If you're thinking of logs in /usr/local/apache/domlogs/, that is a separate logrotate config for httpd, /etc/logrotate.d/httpd:Code: [Select]
/usr/local/apache/domlogs/*.log {
missingok
notifempty
sharedscripts
daily
rotate 7
postrotate
/sbin/service httpd reload > /var/log/httpd-rotate.log 2>&1 || true
endscript
compress
}
(which is why I would name cyberspace's config "modsec" or something like that, since your purpose is to rotate the Mod Security audit & error logs. The server-wide access & error_log files in that directory shouldn't be growing much in size unless you have something misconfigured.)216
Addons / Re: WordPress Management Tool (i.e. WP-Toolkit)
« on: March 15, 2025, 02:54:19 PM »
Try it and see if Softaculous works for you.
217
MySQL / Re: Galera (mariaDB) configuration recommendations
« on: March 15, 2025, 02:53:20 PM »
Sorry, I'm still very much in the place of following a human written guide rather than asking an AI for advice. For starters, you need to update MariaDB to 10.11 LTS in order to get better performance, as a foundational step before adding software stacked on top of it (your 10.4 version is EOL).
https://www.alphagnu.com/topic/23-upgrade-mariadb-1011-in-cwp-centos-7-centos-8-stream-almalinux-78-rockylinux-78/#comment-25
https://www.alphagnu.com/topic/23-upgrade-mariadb-1011-in-cwp-centos-7-centos-8-stream-almalinux-78-rockylinux-78/#comment-25
218
Updates / Re: Server updates don't seem to be happening
« on: March 15, 2025, 02:45:44 PM »
Auto-updates cannot take place with your old MariaDB 10.4 version. Manually update MariaDB to 10.11 (an LTS version) .
https://www.alphagnu.com/topic/23-upgrade-mariadb-1011-in-cwp-centos-7-centos-8-stream-almalinux-78-rockylinux-78/#comment-25
https://www.alphagnu.com/topic/23-upgrade-mariadb-1011-in-cwp-centos-7-centos-8-stream-almalinux-78-rockylinux-78/#comment-25
219
CSF Firewall / Re: Firewall does not get enabled in CentOS8 install of CWP
« on: March 14, 2025, 11:20:08 PM »
https://forum.centos-webpanel.com/installation/server-under-al9/msg50121/#msg50121
https://forum.centos-webpanel.com/informations/tested-almalinux-9-4-beta-1-with-cwp-9-beta-0-9-8-1177/msg47238/#msg47238
https://forum.centos-webpanel.com/installation/cwp-fresh-install-on-almalinux-9-error-root-login/msg49594/#msg49594
https://forum.centos-webpanel.com/informations/tested-almalinux-9-4-beta-1-with-cwp-9-beta-0-9-8-1177/msg47238/#msg47238
https://forum.centos-webpanel.com/installation/cwp-fresh-install-on-almalinux-9-error-root-login/msg49594/#msg49594
220
Problems on other RedHat linux servers / Re: no Varnish...
« on: March 14, 2025, 10:18:12 PM »
AlmaLinux 9 doesn't support EOL PHP versions prior to 8.0:
https://support.cpanel.net/hc/en-us/articles/15291905739031-Does-AlmaLinux-9-and-Rocky-Linux-9-support-EOL-PHP-versions
https://support.cpanel.net/hc/en-us/articles/15291905739031-Does-AlmaLinux-9-and-Rocky-Linux-9-support-EOL-PHP-versions
221
CentOS Configuration / Re: CentOS 10 - support
« on: March 14, 2025, 10:15:22 PM »
AlmaLinux 8 or 9 will be the most stable, feature complete experience for you. Technically, CWP for EL9 is still in beta, but is stable enough for production use. CentOS Stream is a beta quality OS, so not fit for server duty. Rocky Linux is missing some libraries, so can make for a "rockier" experience. RHEL is available with "free" with a developer subscription, up to 16 licenses.
222
Mod_Security / Re: 19GB modsec_audit.log
« on: March 14, 2025, 10:52:13 AM »
Truncate it to zero bytes:
Code: [Select]
truncate -s0 /usr/local/apache/logs/modsec_audit.log
Then go to File Management > Logrotate Manager and create a rotation rule for it. (Mine was 4K.)
223
MySQL / Re: mariadb error during update
« on: March 13, 2025, 09:36:21 PM »
2GB of RAM is sub-minimal. True minimal should be 4GB of RAM, with more being more ideal.
224
CentOS 9 Problems / Re: wp_remote_post() failed
« on: March 13, 2025, 10:51:19 AM »
The advice is general, not specific to this problem. If you start with a good foundation (AL9), we can help you along the way with specific problems. Otherwise, as a beta-quality OS, CentOS Stream is not really supportable.
225
Information / Re: goaccess geo ip location
« on: March 13, 2025, 12:52:35 AM »
It's not a dramatic change, so no image/backup is really necessary. If you want to re-install CWP's version, it's just
Code: [Select]
yum -y install goaccess
And to cleanup from the manually installed GoAccess 1.9.3:Code: [Select]
yum -y remove geoip-devel
yum -y remove libmaxminddb-devel.x86_64
rm /bin/goaccess
rm /share/man/man1/goaccess.1