[Bug 231706] Re: munin apache plugin no data

2010-07-30 Thread Daniel Hahler
Couldn't we add ExtendedStatus On to the default configuration via
/etc/apache2/mods-available/status.conf ?

** Also affects: apache2 (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: apache2 (Ubuntu)
   Importance: Undecided = Wishlist

** Summary changed:

- munin apache plugin no data
+ Enable ExtendedStatus for mod_status by default (was: munin apache plugin no 
data)

-- 
Enable ExtendedStatus for mod_status by default (was: munin apache plugin no 
data)
https://bugs.launchpad.net/bugs/231706
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 231706] Re: munin apache plugin no data

2010-07-21 Thread Marcus Bointon
This still happens on Lucid, but there's a less complicated fix for
this. The status moule is normally enabled with `a2enmod status`. All
that seems to be required to fix munin after that is to add
'ExtendedStatus On' to /etc/apache2/mods-enabled/status.conf so it looks
like this:

IfModule mod_status.c
#
# Allow server status reports generated by mod_status,
# with the URL of http://servername/server-status
# Uncomment and change the .example.com to allow
# access from other hosts.
#
ExtendedStatus On
Location /server-status
SetHandler server-status
Order deny,allow
Deny from all
Allow from localhost ip6-localhost
#Allow from .example.com
/Location

/IfModule

After doing that both the apache_accesses and apache_volume plugins
started working for me.

-- 
munin apache plugin no data
https://bugs.launchpad.net/bugs/231706
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to munin in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 231706] Re: munin apache plugin no data

2009-03-19 Thread Chuck Short
This looks more like a configuration problem then a bug.

Regards
chuck

** Changed in: munin (Ubuntu)
   Status: New = Invalid

-- 
munin apache plugin no data
https://bugs.launchpad.net/bugs/231706
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to munin in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 231706] Re: munin apache plugin no data

2008-09-22 Thread Morten Siebuhr
I've made a localhost virtual host that serves munin with data:

VirtualHost *:80
# vim:syntax=apache
ServerAdmin [EMAIL PROTECTED]
ServerName  localhost
ServerAlias 127.0.0.1

DocumentRoot /srv/http/localhost/

Location /server-status
SetHandler server-status
/Location

Location /
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Allow from ::1
/Location

# Logging
ErrorLog /var/log/apache2/localhost.error.log
LogLevel warn
CustomLog /var/log/apache2/localhost.access.log combined
/VirtualHost

Copy into /etc/apache2/sites-available/localhost.conf, then run a2ensite
localhost.conf and /etc/init.d/apache2 reload

-- 
munin apache plugin no data
https://bugs.launchpad.net/bugs/231706
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to munin in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 231706] Re: munin apache plugin no data

2008-06-09 Thread Jurrit
Dit you try this:
cd /etc/munin/plugins/
munin-run apache_accesses auto

and

w3m http://127.0.0.1/server-status?auto

You probably need something like this in your apache2.conf:
IfModule mod_status.c
ExtendedStatus On
Location /server-status
SetHandler server-status
Order deny,allow
Deny from all
Allow from 127.0.0.1
/Location
/IfModule

-- 
munin apache plugin no data
https://bugs.launchpad.net/bugs/231706
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to munin in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs