11
Information / Re: Goaccess stopped working
« Last post by Namaste on April 02, 2025, 04:20:55 PM »Have you checked to see if your log files haven't ballooned in size to be too large to process? Are you using logrotate to keep them a manageable size?
I posted update instructions in another thread, but here it is again: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
Download and compile GoAccess, install to replace the current 1.2 version:
yum install libmaxminddb-devel.x86_64Code: [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
make threw an error -->threw an error no target found

12
Information / Re: Goaccess stopped working
« Last post by Namaste on April 02, 2025, 04:13:09 PM »fwiw I am reading on line that if one log file is empty then goaccess will not generate a report. Not sure what they are talking about. access file is never zero. And what other log files are they talking about.
13
Information / Re: Goaccess stopped working
« Last post by Namaste on April 02, 2025, 02:27:23 PM »I couldnt find any necessary requisites for installing goaccess. Im on C7 with php 8 something.
On an unrelated subject. I want to add my ip to whitelist on modsec. I seem to remember a filed dedicated to whitelist and a file for blacklist. I cant find them now. What file do I add the ip whitelist to. Not the rules file is it?
On an unrelated subject. I want to add my ip to whitelist on modsec. I seem to remember a filed dedicated to whitelist and a file for blacklist. I cant find them now. What file do I add the ip whitelist to. Not the rules file is it?
14
Information / Re: Goaccess stopped working
« Last post by Namaste on April 02, 2025, 02:12:55 PM »How can you remember all of the posts you have made?
15
Information / Re: Goaccess stopped working
« Last post by Namaste on April 02, 2025, 02:10:54 PM »I was thinking file was too large also. 25MBfor the access log. 780MB for the error log
16
Information / Re: Goaccess stopped working
« Last post by overseer on April 02, 2025, 01:01:42 PM »Have you checked to see if your log files haven't ballooned in size to be too large to process? Are you using logrotate to keep them a manageable size?
I posted update instructions in another thread, but here it is again:
I posted update instructions in another thread, but here it is again:
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
17
Information / Goaccess stopped working
« Last post by Namaste on April 02, 2025, 12:44:58 PM »For the past 2 days goaccess has not parsed any reports. Any ideas?
Also, current version is 1.2 on my server. Is it possible to update?
Also, current version is 1.2 on my server. Is it possible to update?
18
Nginx / Re: Nginx Set up redirects
« Last post by overseer on April 02, 2025, 10:57:36 AM ».htaccess is for Apache; nginx will ignore them. Edit the virtual host conf file under the [server] directive block -- the basic construct is to use this syntax:
Code: [Select]
return 301 http://www.example.com$request_uri;
19
Nginx / Nginx Set up redirects
« Last post by gailclark80 on April 02, 2025, 09:06:57 AM »My web servers are Nginx & Apache, I want to set up redirects, I added 301 code in htaccess but doesn't work, I don't know how to set up 301 redirects for Nginx.
301 redirects
Target: (.*?) ?roy1/.*?html
To: $1
301 redirects
Target: (.*?) ?roy1/.*?html
To: $1
20
Installation / Re: Cron jobs from installation
« Last post by ddelbiondo on April 02, 2025, 12:15:14 AM »Thank you, I was able to restore the cron jobs.
David
David