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.
241
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
242
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
243
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
244
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.
245
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.)
246
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.
247
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.
248
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
249
PHP Selector / Re: Redis Memcache with PHP-FPM Varnish
« on: March 13, 2025, 12:45:11 AM »
Since WordPress is only fully compatible with php 7.4 and mostly compatible with 8.1, I elected to enable redis under php-fpm 7.4.
https://blog.alphagnu.com/speedup-wordpress-decrease-server-load-redis-cache-cwp-centos-webpanel/
https://blog.alphagnu.com/speedup-wordpress-decrease-server-load-redis-cache-cwp-centos-webpanel/
250
CentOS 9 Problems / Re: wp_remote_post() failed
« on: March 12, 2025, 05:19:12 PM »
Before you get too far, CentOS Stream is a beta-quality OS, only good for local testing or to get a sense of where RHEL is going but not a good foundation for a server. If you can before you get too far with setup, switch now to AlmaLinux 9 -- it will be supported till the end of the decade!
https://endoflife.date/almalinux
https://endoflife.date/almalinux
251
E-Mail / Re: sendmail
« on: March 12, 2025, 02:39:10 PM »
Yes, it's not a responsive design. So my little 13" travel laptop you have to re-zoom to see all the interface elements. No problem on my 27" desktop screen, but definitely time to modernize to a fully responsive layout.
252
MySQL / Re: mariadb error during update
« on: March 12, 2025, 02:37:25 PM »
If you can curl or wget the fixed installer script to your local workstation, then you can transfer it to the server. (Either via SFTP or a copy/paste the text stream into a new text document with nano on the server.)
253
Information / Re: goaccess geo ip location
« on: March 12, 2025, 01:32:17 AM »
Or if instead of MaxMind, you prefer the legacy GeoIP as CWP used in the current 1.2 version, install this pre-requisite:
[/code]./configure --prefix= --enable-debug --enable-utf8 --enable-geoip=legacy --with-getline --with-openssl[/code]
Code: [Select]
yum -y install geoip-devel
And then the configure line would change to:[/code]./configure --prefix= --enable-debug --enable-utf8 --enable-geoip=legacy --with-getline --with-openssl[/code]
254
Information / Re: goaccess geo ip location
« on: March 12, 2025, 01:21:35 AM »Also, can goaccess be updated? server version is 1.2 from 2017. Latest is 1.9Nothing prevents you from updating if you so desire. Remove CWP's GoAccess and install prerequisite (MaxMind GeoIP library):
Code: [Select]
yum -y remove goaccess
yum install libmaxminddb-devel.x86_64
Download and compile GoAccess, install to replace the current 1.2 version:Code: [Select]
cd /usr/local/src
wget https://tar.goaccess.io/goaccess-1.9.3.tar.gz
tar -xzvf goaccess-1.9.3.tar.gz
cd goaccess-1.9.3/
./configure --prefix= --enable-debug --enable-utf8 --enable-geoip=mmdb --with-getline --with-openssl
make
make install