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
- Host: GitHub
- URL: https://github.com/redgeoff/munin-master-vagrant
- Owner: redgeoff
- License: mit
- Created: 2016-08-27T21:50:26.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-06-20T14:01:54.000Z (about 9 years ago)
- Last Synced: 2025-07-17T08:31:41.792Z (12 months ago)
- Topics: munin, ubuntu, vagrant
- Language: Shell
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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