Hi, I want to run Puppet on a Windows 2003 Server. I already have a working Puppetmaster (Scientific Linux). I installed Puppet on Windows like shown here: http://projects.puppetlabs.com/projects/1/wiki/Puppet_Windows This worked very well. But when I want to run puppet. puppet agent --test --debug I get the following output: (I already tried different ruby and puppet versions without success.) notice: Ignoring --listen on onetime run info: Retrieving plugin err: /File[C:/Dokumente und Einstellungen/All Users/Anwendungsdaten/ PuppetLabs/p uppet/var/lib]: Failed to generate additional resources using ''eval_generate: Co uld not intern_multiple from pson: Paths must be fully qualified err: /File[C:/Dokumente und Einstellungen/All Users/Anwendungsdaten/ PuppetLabs/p uppet/var/lib]: Could not evaluate: Could not intern from pson: Paths must be fu lly qualified Could not retrieve file metadata for puppet://foreman.id.dvag.com/ plugins: Could not intern from pson: Paths must be fully qualified err: Could not retrieve catalog from remote server: Error 400 on SERVER: PGError : ERROR: invalid byte sequence for encoding "UTF8": 0xe46973 : INSERT INTO "fact_values" ("value", "host_id", "created_at", "fact_name_id", " updated_at") VALUES (''Mitteleuropõische Zeit '', 88, ''2012-02-16 15:13:29.29309 9'', 28, ''2012-02-16 15:13:29.293099'') RETURNING "id" warning: Not using cache on failed catalog err: Could not retrieve catalog; skipping run notice: /File[C:/Dokumente und Einstellungen/All Users/Anwendungsdaten/ PuppetLab s/puppet/var/state/last_run_summary.yaml]/content: Can anybody here help me out? -- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
Hi Jay, On Thu, Feb 16, 2012 at 6:14 AM, Jay Ze <iltisannihilator@googlemail.com>wrote:> Hi, > > I want to run Puppet on a Windows 2003 Server. I already have a > working Puppetmaster (Scientific Linux). > > I installed Puppet on Windows like shown here: > http://projects.puppetlabs.com/projects/1/wiki/Puppet_Windows > > This worked very well. >Great to hear.> notice: Ignoring --listen on onetime run > info: Retrieving plugin > err: /File[C:/Dokumente und Einstellungen/All Users/Anwendungsdaten/ > PuppetLabs/p > uppet/var/lib]: Failed to generate additional resources using > ''eval_generate: Co > uld not intern_multiple from pson: Paths must be fully qualified > err: /File[C:/Dokumente und Einstellungen/All Users/Anwendungsdaten/ > PuppetLabs/p > uppet/var/lib]: Could not evaluate: Could not intern from pson: Paths > must be fu > lly qualified Could not retrieve file metadata for puppet:// > foreman.id.dvag.com/ > plugins: Could not intern from pson: Paths must be fully qualified >This is https://projects.puppetlabs.com/issues/11408#note-32 It will be fixed shortly.> err: Could not retrieve catalog from remote server: Error 400 on > SERVER: PGError > : ERROR: invalid byte sequence for encoding "UTF8": 0xe46973 > : INSERT INTO "fact_values" ("value", "host_id", "created_at", > "fact_name_id", " > updated_at") VALUES (''Mitteleuropõische Zeit '', 88, ''2012-02-16 > 15:13:29.29309 > 9'', 28, ''2012-02-16 15:13:29.293099'') RETURNING "id"Somewhere between facter gathering the hostname and the hostname being inserted into the database, there is a problem with how we are handling UTF8 encoding. The text ''Mitteleuropõische Zeit'' should be UTF8 encoded as ''4D 69 74 74 65 6C 65 75 72 6F 70 C3 B5 69 73 63 68 65 20 5A 65 69 74 20'' (in hex). The sequence ''e4 69 73'' is most definitely an illegal UTF8 sequence. Can you file a ticket against puppet? Thanks, Josh -- Josh Cooper Developer, Puppet Labs -- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
On 16 Feb., 18:11, Josh Cooper <j...@puppetlabs.com> wrote:> Hi Jay, > > On Thu, Feb 16, 2012 at 6:14 AM, Jay Ze <iltisannihila...@googlemail.com>wrote: > > > Hi, > > > I want to run Puppet on a Windows 2003 Server. I already have a > > working Puppetmaster (Scientific Linux). > > > I installed Puppet on Windows like shown here: > >http://projects.puppetlabs.com/projects/1/wiki/Puppet_Windows > > > This worked very well. > > Great to hear. > > > notice: Ignoring --listen on onetime run > > info: Retrieving plugin > > err: /File[C:/Dokumente und Einstellungen/All Users/Anwendungsdaten/ > > PuppetLabs/p > > uppet/var/lib]: Failed to generate additional resources using > > ''eval_generate: Co > > uld not intern_multiple from pson: Paths must be fully qualified > > err: /File[C:/Dokumente und Einstellungen/All Users/Anwendungsdaten/ > > PuppetLabs/p > > uppet/var/lib]: Could not evaluate: Could not intern from pson: Paths > > must be fu > > lly qualified Could not retrieve file metadata for puppet:// > > foreman.id.dvag.com/ > > plugins: Could not intern from pson: Paths must be fully qualified > > This ishttps://projects.puppetlabs.com/issues/11408#note-32 > > It will be fixed shortly. > > > err: Could not retrieve catalog from remote server: Error 400 on > > SERVER: PGError > > : ERROR: invalid byte sequence for encoding "UTF8": 0xe46973 > > : INSERT INTO "fact_values" ("value", "host_id", "created_at", > > "fact_name_id", " > > updated_at") VALUES (''Mitteleuropõische Zeit '', 88, ''2012-02-16 > > 15:13:29.29309 > > 9'', 28, ''2012-02-16 15:13:29.293099'') RETURNING "id" > > Somewhere between facter gathering the hostname and the hostname being > inserted into the database, there is a problem with how we are handling > UTF8 encoding. The text ''Mitteleuropõische Zeit'' should be UTF8 encoded as > ''4D 69 74 74 65 6C 65 75 72 6F 70 C3 B5 69 73 63 68 65 20 5A 65 69 74 20'' > (in hex). The sequence ''e4 69 73'' is most definitely an illegal UTF8 > sequence. > > Can you file a ticket against puppet? > > Thanks, > Josh > > -- > Josh Cooper > Developer, Puppet LabsHi, Thanks for your quick answer. What does "soon" mean? 1-2 weeks or within the next months? I''ll file a ticket against puppet for the UTF8 Problem. Thx. -- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
Sorry. Wanted to know what shortly means.. not soon ;-) On 17 Feb., 07:32, Jay Ze <iltisannihila...@googlemail.com> wrote:> On 16 Feb., 18:11, Josh Cooper <j...@puppetlabs.com> wrote: > > > > > > > > > > > Hi Jay, > > > On Thu, Feb 16, 2012 at 6:14 AM, Jay Ze <iltisannihila...@googlemail.com>wrote: > > > > Hi, > > > > I want to run Puppet on a Windows 2003 Server. I already have a > > > working Puppetmaster (Scientific Linux). > > > > I installed Puppet on Windows like shown here: > > >http://projects.puppetlabs.com/projects/1/wiki/Puppet_Windows > > > > This worked very well. > > > Great to hear. > > > > notice: Ignoring --listen on onetime run > > > info: Retrieving plugin > > > err: /File[C:/Dokumente und Einstellungen/All Users/Anwendungsdaten/ > > > PuppetLabs/p > > > uppet/var/lib]: Failed to generate additional resources using > > > ''eval_generate: Co > > > uld not intern_multiple from pson: Paths must be fully qualified > > > err: /File[C:/Dokumente und Einstellungen/All Users/Anwendungsdaten/ > > > PuppetLabs/p > > > uppet/var/lib]: Could not evaluate: Could not intern from pson: Paths > > > must be fu > > > lly qualified Could not retrieve file metadata for puppet:// > > > foreman.id.dvag.com/ > > > plugins: Could not intern from pson: Paths must be fully qualified > > > This ishttps://projects.puppetlabs.com/issues/11408#note-32 > > > It will be fixed shortly. > > > > err: Could not retrieve catalog from remote server: Error 400 on > > > SERVER: PGError > > > : ERROR: invalid byte sequence for encoding "UTF8": 0xe46973 > > > : INSERT INTO "fact_values" ("value", "host_id", "created_at", > > > "fact_name_id", " > > > updated_at") VALUES (''Mitteleuropõische Zeit '', 88, ''2012-02-16 > > > 15:13:29.29309 > > > 9'', 28, ''2012-02-16 15:13:29.293099'') RETURNING "id" > > > Somewhere between facter gathering the hostname and the hostname being > > inserted into the database, there is a problem with how we are handling > > UTF8 encoding. The text ''Mitteleuropõische Zeit'' should be UTF8 encoded as > > ''4D 69 74 74 65 6C 65 75 72 6F 70 C3 B5 69 73 63 68 65 20 5A 65 69 74 20'' > > (in hex). The sequence ''e4 69 73'' is most definitely an illegal UTF8 > > sequence. > > > Can you file a ticket against puppet? > > > Thanks, > > Josh > > > -- > > Josh Cooper > > Developer, Puppet Labs > > Hi, > Thanks for your quick answer. What does "soon" mean? 1-2 weeks or > within the next months? > > I''ll file a ticket against puppet for the UTF8 Problem. > > Thx.-- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
On Thu, Feb 16, 2012 at 10:54 PM, Jay Ze <iltisannihilator@googlemail.com>wrote:> Sorry. Wanted to know what shortly means.. not soon ;-) >Shortly means by the end of March with that caveat there is a small chance it will not make it into the March release. Hope this helps, -Jeff -- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
Hi Jay, On Thu, Feb 16, 2012 at 10:32 PM, Jay Ze <iltisannihilator@googlemail.com>wrote:> Thanks for your quick answer. What does "soon" mean? 1-2 weeks or > within the next months? >I have a fix in my topic branch: https://github.com/joshcooper/puppet/tree/ticket/2.7.x/11408-remote-recursionCan you try it out and update the ticket with your findings: https://projects.puppetlabs.com/issues/11408 Thanks, Josh -- Josh Cooper Developer, Puppet Labs -- 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+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.