Puppet von puppetlabs: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Tina (Diskussion | Beiträge) |
Tina (Diskussion | Beiträge) |
||
| Zeile 22: | Zeile 22: | ||
mysql> flush privileges; | mysql> flush privileges; | ||
Query OK, 0 rows affected (0.00 sec) | Query OK, 0 rows affected (0.00 sec) | ||
| − | + | *mysql Konfiguration anpassen: | |
| + | vi /etc/mysql/my.cnf | ||
| + | |||
| + | max_allowed_packet = 32M | ||
* entpacken (/usr/share/) | * entpacken (/usr/share/) | ||
unzip puppet-dashboard-master.zip | unzip puppet-dashboard-master.zip | ||
Version vom 10. Juni 2015, 13:39 Uhr
install puppetlabs repo
- wget https://apt.puppetlabs.com/puppetlabs-release-trusty.deb
- sudo dpkg -i puppetlabs-release-trusty.deb
- sudo apt-get update
Installation ueber github
- Download puppet-dashboard von https://github.com/sodabrew/puppet-dashboard als zip Datei
- vorausgesetzte Pakete installieren (falls noch nicht auf System):
apt-get install ruby apt-get install bundler apt-get install mysql
- DB anlegen
mysql> create database puppet_dashboard; Query OK, 1 row affected (0.00 sec)
- User anlegen mit entsprechenden Rechten auf der DB
mysql> grant all on puppet_dashboard.* to puppet@localhost identified by 'geheim'; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec)
- mysql Konfiguration anpassen:
vi /etc/mysql/my.cnf
max_allowed_packet = 32M
- entpacken (/usr/share/)
unzip puppet-dashboard-master.zip