Show Posts

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.


Messages - overseer

Pages: 1 [2] 3 4 ... 85
16
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.logThen go to File Management > Logrotate Manager and create a rotation rule for it. (Mine was 4K.)

17
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.

18
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.

19
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 goaccessAnd 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

20
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/

21
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

22
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.

23
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.)

24
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: [Select]
yum -y install geoip-develAnd then the configure line would change to:
[/code]./configure --prefix= --enable-debug --enable-utf8 --enable-geoip=legacy --with-getline --with-openssl[/code]

25
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.9
Nothing 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

26
E-Mail / Re: sendmail
« on: March 12, 2025, 01:13:23 AM »
Sugestions from Deepseek.com:
::shakes head::
 :-\

27
PHP / Re: CWPanel ---> PHP Settings section --->PHP info....
« on: March 11, 2025, 07:48:47 PM »
You have CWP Pro?
Are you using php-fpm, CGI...?

28
MySQL / Re: mariadb error during update
« on: March 11, 2025, 10:49:46 AM »
Dunno --I can curl the script down from here:
Code: [Select]
curl -O https://starburst.help/downloads/CWP/cwp-el8-20250215.sh

29
CentOS 7 Problems / Re: Increase size of centos-root
« on: March 10, 2025, 08:35:46 PM »
Take a full image backup or snapshot before you proceed!

30
Installation / Re: what's wrong with MongoDB
« on: March 09, 2025, 07:53:48 PM »
Again, those are not "errors" but rather "warnings." Probably to be expected with 8.3 & 8.4... Does 8.1 produce the same warnings on your system?

Pages: 1 [2] 3 4 ... 85