> postgres=# SELECT datname,pid,query_start from pg_stat_activity; > datname | pid | query_start > ----------+------+------------------------------- > postgres | 5866 | 2013-08-23 09:17:36.913697-04 > (1 row)
That pretty much confirms PuppetDB is not connecting to PostgreSQL at all. Try this, stop puppetdb, and run it in the foreground instead with the --debug setting: $ puppetdb-foreground --debug Now, I'm interested in the initial setup part of the log, can you put that in a gist so we can take a look? (double check the content though, make sure it doesn't have any 'sensitive' data in it of course :-). > When i tried to show all config settings i see the value "incorrect" for > example "storeconfig" value is "false" and the "dbadapter" is "sqlite3" but > i've already configured the postgres for storeconfig. > > [root@master manifests]# puppet agent --configprint all| grep dbadapter > dbadapter = sqlite3 > > [root@master manifests]# puppet agent --configprint all| grep storeconfigs > async_storeconfigs = false > storeconfigs = false > storeconfigs_backend = active_record > thin_storeconfigs = false > > ¿Why not apply my configuration? You really want: puppet master --configprint all | grep storeconfigs ... not puppet agent etc. ken. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/puppet-users. For more options, visit https://groups.google.com/groups/opt_out.
