No, it is not. Be sure, I tried but file data/log is not created.
~/apps/_stats_app_/awstats_cron
Create/Update database for config "/home/_shelluser_/apps/_stats_app_/wwwroot/cgi-bin/awstats.conf" by AWStats version 7.8 (build 20200416)
From data in log file "/home/_shelluser_/apps/_stats_app_/data/log"...
Error: Couldn't open server log file "/home/_shelluser_/apps/_stats_app_/data/log" : No such file or directory
Setup ('/home/_shelluser_/apps/_stats_app_/wwwroot/cgi-bin/awstats.conf' file, web server or permissions) may be wrong.
Check config file, permissions and AWStats documentation (in 'docs' directory).
HOWTO install AWStats on Opalstack
Perhaps this line from awstats_cron must be replaced
$APPDIR/tools/logresolvemerge.pl $LOG $LOG-$( date '+%Y%m%d' ).gz > $APPDIR/data.log 2>/dev/null
to this:
$APPDIR/tools/logresolvemerge.pl $LOG $LOG-$( date '+%Y%m%d' ).gz > $APPDIR/data/log 2>/dev/null
Then it will work
Just set it up, all good. Thank you!
Bonus if Awstats comes with password protection - shame it doesn't have it. I'll find a way to protect this from public eyes.
tsutton you can use this procedure for password protection: Password Protection for PHP Applications
Thanks for this tutorial!
I believe there is a slight mistake in step 6. You forgot to include appname
in the path for the awstats.conf
file.
Also, is it possible to get GeoIP setup with this so we can see from which countries hits are from? I tried to get GeoIP working with GoAccess last week but didn't have any luck I'm a bit of a noob to this kind of stuff.
Is anyone having issue with getting the data to appear for
- Keywords used on search engines
- Keyphrases used on search engines
Mine shows up as zero
- Edited
Hodson is it possible to get GeoIP setup with this so we can see from which countries hits are from?
I was able to get GeoIP working with the following steps:
- Register for an account at maxmind.com.
- Download the MaxMind GeoLite2 City and Country databases (binary mmdb, not CSV) from your MaxMind account and upload them to your AWStats app's shell user account. I used the GeoLite2 databases because they are free, but if you have a paid account then you can use the full GeoIP2 databases.
- Edit your app's
awstats.conf
to enable the related plugins. The sections should already be present, you only need to uncomment theLoadPlugin
lines for GeoIP2 City and Country and specify the path to your Maxmind DBs, eg:
LoadPlugin="geoip2_city /home/user/apps/stats/GeoLite2-City.mmdb" ... LoadPlugin="geoip2_country /home/user/apps/stats/GeoLite2-Country.mmdb"
- Test it by running
~/apps/appname/awstats_cron
and then check your stats.
If you get an error in step 7, it's because there's a double quote missing from the end of line 11 in step 4.
So .log extension is here to stay? I can update LOG="$LOGDIR/access.txt-$TODAY.gz"
to access.log and not worry it will be changed again to txt?
- Edited
For those who aren't Vim users or fans (raising my hand), you can use the Nano editor (more user friendly IMO) to edit crontab (step 8) as follows:
export VISUAL=nano; crontab -e
If you've never used Nano before, use CTRL-O to save your changes and CTRL-X to exit Nano.
Edit: The above command is only good for one command use. If you want nano to be the default editor for an entire SSH session use the following, courtesy of sean:
EDITOR=nano crontab -e
sean I am trying to get GeoIP working as per these instructions. However, when I run ~/apps/appname/awstats_cron
I get the error Can't locate Data/Validate/IP.pm in @INC
and Compilation failed in require (path to)/awstats/wwwroot/cgi-bin/awstats.conf
. Do I (or you) need to install the "data::Validate::IP" Pearl module? Or am I missing a important step?
nhughes You should be able to install the missing module with the following commands:
cd ~
curl -L https://cpanmin.us | perl - App::cpanminus
export PATH=$HOME/perl5/bin:$PATH
cpanm Data::Validate::IP
export PERL5LIB=$HOME/perl5/lib/perl5
If you see any other issues, please email support@opalstack.com so we can look at your setup specifically and troubleshoot further.