An open API service indexing awesome lists of open source software.

https://github.com/redgeoff/munin-master-vagrant

Vagrant setup for Munin
https://github.com/redgeoff/munin-master-vagrant

munin ubuntu vagrant

Last synced: about 2 months ago
JSON representation

Vagrant setup for Munin

Awesome Lists containing this project

README

          

# munin-master-vagrant

A quick way to get a Munin master server set up

Install Vagrant, VirtualBox and git
---

http://www.vagrantup.com
https://www.virtualbox.org (don't worry about setting up any VMs as the steps below will cover this)
http://git-scm.com

Set up
---

Edit /etc/hosts locally and add `192.168.50.18 munin.dev`
$ git clone https://github.com/redgeoff/munin-vagrant.git
$ cd ubuntu-vagrant
$ vagrant up
Visit http://munin.dev/munin # Note: you may have to wait 5 mins for munin to run and initialize the files
Log in with:
User Name: munin
Password: munin
See below for details on how to change this password

Adding a Munin Node
---
ssh into Munin Master
Edit /etc/munin/munin.conf
[HOSTNAME]
address IPADDROFNODE
use_node_name yes

Changing the password
---

$ vagrant ssh
$ sudo htpasswd -D /etc/munin/munin-htpasswd NEWUSERNAME
$ sudo htpasswd /etc/munin/munin-htpasswd NEWUSERNAME
You can now visit http://munin.dev/munin and log in with NEWUSERNAME and NEWPASSWORD

Sources:
---

The majority of the content used to create this repo came from https://www.digitalocean.com/community/tutorials/how-to-install-the-munin-monitoring-tool-on-ubuntu-14-04