https://github.com/particlekit/ganglia-docker
dockerized ganglia
https://github.com/particlekit/ganglia-docker
ganglia ganglia-docker
Last synced: 3 months ago
JSON representation
dockerized ganglia
- Host: GitHub
- URL: https://github.com/particlekit/ganglia-docker
- Owner: particleKIT
- Created: 2015-12-28T11:58:00.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-02-24T12:23:30.000Z (about 4 years ago)
- Last Synced: 2024-12-27T09:13:32.508Z (5 months ago)
- Topics: ganglia, ganglia-docker
- Language: Shell
- Size: 5.86 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### dockerized ganglia
ganglia server
#usagecreate the following data structure on the host:
* root dir: ``/srv/docker/ganglia/...``
* gmetad config: ``...etc/ganglia/gmetad.conf``,
* apache vhosts config (see below): ``...etc/apache2/ganglia-vhost.conf`` and
* storage for ganglias rrd files``...lib/``.then start ganglia:
```
docker run --name=ganglia -p 80:80 -p 2345:2345 -p 8648:8648 \
--volume=/srv/docker/ganglia/etc/ganglia:/etc/ganglia \
--volume=/srv/docker/ganglia/etc/apache2/:/etc/apache2/sites-enabled
--volume=/srv/docker/ganglia/lib/ganglia/:/var/lib/ganglia \
particlekit/ganglia
```#vhost config
following the conventions from above your apache config should be located at ``/srv/docker/ganglia/etc/apache2/vhost.conf``:
```ServerAdmin [email protected]
ServerName example.comDocumentRoot /usr/share/ganglia-webfrontend
AllowOverride All
Order allow,deny
Allow from all
Deny from none```