On Tue, Nov 27, 2012 at 9:27 PM, Ryan Cunningham < ryan.cunningham.xy...@gmail.com> wrote:
> Hi all, > > I'm having an issue on the master I'm using in my staging > environment with getting storeconfigs to work with puppetdb. > > I should say up front that my staging environment is probably a little > uncommon. I'm running OpenIndiana which is a distribution of the open > source fork of OpenSolaris. > > I installed puppet (3.0), facter and hiera using `gem` on this system > and have gotten the master working, servicing some test clients without > too much trouble but I'm having some real trouble getting puppetdb > integrated with my master. > > Puppetdb is running on the puppet master and I can access the dashboard > on the default port of 8080 without issue, > > I've followed all the instructions at > http://docs.puppetlabs.com/puppetdb/1/connect_puppet_master.html quite > closely but if I have storeconfigs set to true and puppetdb as my > backend I get the following output from a puppet agent --test: > > > Info: Retrieving plugin > Info: Loading facts in /var/puppet/lib/facter/last_run.rb > Info: Loading facts in /var/puppet/lib/facter/puppet_vardir.rb > Info: Loading facts in /var/puppet/lib/facter/pe_version.rb > Info: Loading facts in /var/puppet/lib/facter/facter_dot_d.rb > Info: Loading facts in /var/puppet/lib/facter/root_home.rb > Info: Loading facts in /var/puppet/lib/facter/puppi_projects.rb > Error: Could not retrieve catalog from remote server: Error 400 on > SERVER: invalid encoding ("UTF-8//IGNORE", "UTF-8") Warning: Not using > cache on failed catalog Error: Could not retrieve catalog; skipping run > > I've tried Googling but haven't turned up anyone else reporting the > same exact issue. I checked out puppetdb using git and got *most* of > the way through building with Rake (it stopped while building some of > the Debian-specific stuff) -- I got the jar file I'm using from there > and I copied the files I believe I was supposed to from puppetdb's > puppet/lib/puppet into > "/var/ruby/1.8/gem_home/gems/puppet-3.0.1/lib/puppet/" on this system. > Verbose output from the copy command follows... > > The code in question is trying to transcode your catalog to UTF-8 before sending it to PuppetDB (because the wire format is JSON, and JSON is UTF-8). On Ruby 1.8, we rely on the "iconv" Ruby library, which is basically just a pass-through to libiconv. The error message seems to indicate that your libiconv doesn't know about UTF-8 which is strange...though I admit to not knowing exactly how (and with what flags) Ruby or iconv is compiled for OpenIndiana. Using the same Ruby you run your puppetmasters with, can you do: ruby -e "require 'iconv'; puts Iconv.list.sort" That should dump out the list of available encodings. That should help us at least more properly triangulate the issue. deepak -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.