Difference between revisions of "Configuring useful awstats plugins"

From Notes_Wiki
(Created page with "<yambe:breadcrumb>Awstats_configuration|Awstats configuration</yambe:breadcrumb> =Configuring useful awstats plugins= ==Geo IP plugin== To configure GeoIP plugin for awstats...")
 
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<yambe:breadcrumb>Awstats_configuration|Awstats configuration</yambe:breadcrumb>
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Monitoring tools]] > [[Awstats configuration]] > [[Configuring useful awstats plugins]]
=Configuring useful awstats plugins=


==Geo IP plugin==
==Geo IP plugin==
Line 6: Line 5:
To configure GeoIP plugin for awstats use:
To configure GeoIP plugin for awstats use:
#<tt>yum -y install perl-Geo-IP</tt>
#<tt>yum -y install perl-Geo-IP</tt>
#wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
#gunzip GeoLiteCity.dat.gz
#mkdir /usr/local/share/GeoIP
#mv -f GeoLiteCity.dat /usr/local/share/GeoIP
#chmod -R 755 /usr/local/share/GeoIP
#Edit <tt>awstats.conf</tt> file and set
#Edit <tt>awstats.conf</tt> file and set
#:<pre>
#:<pre>
#::LoadPlugin="geoip GEOIP_STANDARD /usr/share/GeoIP/GeoIP.dat"
#::LoadPlugin="geoip GEOIP_STANDARD /usr/share/GeoIP/GeoIP.dat"
#::LoadPlugin="geoip_city_maxmind GEOIP_STANDARD /usr/local/share/GeoIP/GeoLiteCity.dat"
#:</pre>
#:</pre>
Some steps learned from http://dev.maxmind.com/geoip/legacy/install/city/




Line 16: Line 24:
To configure Google Chart API plugin use:
To configure Google Chart API plugin use:
#Uncomment '<tt>LoadPlugin=graphgooglechartapi</tt>' line.
#Uncomment '<tt>LoadPlugin=graphgooglechartapi</tt>' line.
==Rawlog plugin==
To configure Raw log plugin use:
#Ucomment '<tt>LoadPlugin="rawlog"</tt>' line.
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[Monitoring tools]] > [[Awstats configuration]] > [[Configuring useful awstats plugins]]

Latest revision as of 12:41, 28 July 2022

Home > CentOS > CentOS 6.x > Monitoring tools > Awstats configuration > Configuring useful awstats plugins

Geo IP plugin

To configure GeoIP plugin for awstats use:

  1. yum -y install perl-Geo-IP
  2. wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
  3. gunzip GeoLiteCity.dat.gz
  4. mkdir /usr/local/share/GeoIP
  5. mv -f GeoLiteCity.dat /usr/local/share/GeoIP
  6. chmod -R 755 /usr/local/share/GeoIP
  7. Edit awstats.conf file and set
    LoadPlugin="geoip GEOIP_STANDARD /usr/share/GeoIP/GeoIP.dat"
    LoadPlugin="geoip_city_maxmind GEOIP_STANDARD /usr/local/share/GeoIP/GeoLiteCity.dat"

Some steps learned from http://dev.maxmind.com/geoip/legacy/install/city/


Google Chart API plugin

To configure Google Chart API plugin use:

  1. Uncomment 'LoadPlugin=graphgooglechartapi' line.


Rawlog plugin

To configure Raw log plugin use:

  1. Ucomment 'LoadPlugin="rawlog"' line.




Home > CentOS > CentOS 6.x > Monitoring tools > Awstats configuration > Configuring useful awstats plugins