Since my server's always crashing due to the CPU maxing out, I'm trying to install munin to try and find out why. I followed the guide here
http://library.linode.com/server-monito ... an-5-lenny and when I run the command
Code:
a2ensite munin.mysite.be
I get:
Code:
site:/etc# a2ensite munin.site.be
ERROR: Site munin.site.be does not exist!
Site.be does exist and I added the munin subdomain via virtualmin. I also added an A-record in the DNS manager. When I access munin.site.be I just see a
Code:
Forbidden you don't have permission to access / on this server
So AFAIK the subdomain does "exist".
Can anyone guide me to finish the munin installation?
My hosts file:
Code:
site:/etc# vim /etc/hosts
127.0.0.1 localhost site
178.79.129.192 site.site.eu site.eu
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
<VirtualHost 127.0.0.1:80>
ServerAdmin me@gmail.com
ServerName munin.site.be
DocumentRoot /var/www/munin
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
LogLevel notice
CustomLog /var/log/apache2/access.log combined
ErrorLog /var/log/apache2/error.log
ServerSignature On
</VirtualHost>