--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/mGPKjqlxWY0J.
To post to this group, send email to puppet...@googlegroups.com.
To unsubscribe from this group, send email to puppet-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
However I don't use the 'reporturl' argument at all. This is my configuration:
41 [master]
42 user = puppet
43 group = puppet
44 reports = puppet_dashboard
45 storeconfigs = true
46 dbadapter = mysql
47 dbuser = puppet
48 dbpassword = xxx
49 dbserver = localhost
50 dbsocket = /var/lib/mysql/mysql.sock
51
52 [agent]
53 server = my.derver.net
54 environment=loc_b_build
55 debug = true
56 verbose = true
57 runintervall = 600
58 report = true
Bernd
Old thread, but I ran into the same problem so figured I'll post my solution here. In my case, I added more verbose logging which pointed me to the missing "spool" directory. Running the following commands fixed it:
mkdir -p /usr/share/puppet-dashboard/spool
chown puppet-dashboard:puppet-dashboard spool
Regards,
James T.