search for: tagmap

Displaying 10 results from an estimated 10 matches for "tagmap".

2007 Jan 17
18
mongrel memory usage ballooning and process stomping
Hi, I have mongrel 0.3.14, with ruby 1.8.5, rails 1.1.6 and mongrel cluster 0.2.1, on debian sage 3.1 with apache 2.0, and fastthread 0.6.1. I am load balancing 3 mongrel processes using the random port trick. When I start mongrel the processes have about 60MB, but after some hour of usage the memory ballons upto more than 180MB and the site becomes terribly slow. Forcing me to restart mongrel
2006 Jan 05
0
Problem implementing tagging
...?), but I can''t find anywhere that talks about it. Here''s my Tag and Post models (the only relevant code I could think of posting): class Post < ActiveRecord::Base validates_presence_of :title, :body has_many :comments has_and_belongs_to_many :tags, :join_table => ''tagmap'', :order => ''name asc'' def tagstring tags.inject([]){|s,t| s << t.name}.join '' '' end def tagstring=(string) self.tags = string.split.map do|t| Tag.get(t) end end end class Tag < ActiveRecord::Base validates_presence_of :name has_and_bel...
2010 Oct 08
0
puppet doesn't send report's
Hi. # puppet --version 2.6.1 Puppet.conf on puppetmaster''s server #cat /etc/puppet/puppet.conf .... [puppetmasterd] ... reports=tagmail,log tagmap=/etc/puppet/tagmail.conf .... #cat /etc/puppet/tagmail.conf all: aleksey.kashin@gmail.com Puppet.conf on the client #cat /etc/puppet/puppet.conf ... [agent] ... report=true reportserver=puppetmaster.doamin.com ... But, puppetmaster doesn''t send reports on my e-mail. In the logs of the m...
2009 Jun 10
10
puppet client looking for server puppet
...xample.net.pem privatekeydir = /etc//opt/csw/puppet/ssl/private_keys hostcsr = /etc//opt/csw/puppet/ssl/csr_puppet-test.example.net.pem hostpubkey = /etc//opt/csw/puppet/ssl/public_keys/puppet-test.example.net.pem reportdir = /var//opt/csw/puppet/reports templatedir = /var//opt/csw/puppet/templates tagmap = /etc//opt/csw/puppet/tagmail.conf rrdinterval = 60 rrddir = /var//opt/csw/puppet/rrd fileserverconfig = /etc//opt/csw/puppet/fileserver.conf graphdir = /var//opt/csw/puppet/state/graphs clientbucketdir = /var//opt/csw/puppet/clientbucket -- Asif Iqbal PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu...
2008 Apr 02
2
Problem implementing multiple Environments
...nments = production,testing storeconfigs=true smtpserver = smarthost dbadapter = mysql dbserver = lhr1-ahbat-01 ldapnodes = true ldapserver = lhr1-ahaaa-02 ldapbase = ou=Hosts,dc=active,dc=com dbname = puppet dbuser = puppetuser dbpassword = ******* reports = log,store,tagmail syslogfacility = user tagmap = /etc/puppet/tagmail.conf [puppetd] server=lhr1-ahbat-01 pluginsync=true report=true [testing] modulepath=$confdir/modules-testing [production] modulepath=$confdir/modules-production And on my client node I have a config file [main] environment = production environments = production,testing p...
2012 Aug 23
1
Puppet Agent VS User
...X_CLIENT_DN ssl_client_verify_header = HTTP_X_CLIENT_VERIFY ssldir = /var/lib/puppet/ssl statedir = /var/lib/puppet/state statefile = /var/lib/puppet/state/state.yaml storeconfigs = false storeconfigs_backend = active_record strict_hostname_checking = false summarize = false syslogfacility = daemon tagmap = /etc/puppet/tagmail.conf tags = "" templatedir = /etc/puppet/templates thin_storeconfigs = false trace = false use_cached_catalog = false usecacheonfailure = true user = puppet vardir = /var/lib/puppet yamldir = /var/lib/puppet/yaml zlib = true ## Agent mode config root@vusion-producti...
2012 Jun 12
6
Trying to get tagmail to work
Hey guys, Relatively new to Puppet and I''m trying to setup tagmail to send all emails to me: at one point I''ll filter that down to errors and whatnot (based on tags) but for now I just want to get it working. Master Puppet server is setup with Passengers, all works well: /etc/puppet/puppet.conf [main] # The Puppet log directory. # The default value is
2009 Oct 21
2
Bug #2617(?) in Puppet 0.25.1rc2
...puppet/bucket modulepath = /etc/puppet/modules:/usr/share/puppet/modules reportdir = /var/puppet/reports rrdinterval = 1800 manifest = /etc/puppet/manifests/site.pp rest_authconfig = /etc/puppet/auth.conf yamldir = /var/puppet/yaml templatedir = /var/puppet/templates tagmap = /etc/puppet/tagmail.conf 7. On server I run # puppetmasterd --no-daemonize --trace --debug and it gives me initially the following output: debug: Failed to load library ''shadow'' for feature ''libshadow'' debug: Puppet::Type::User::ProviderUser_role_add: file ro...
2011 Nov 04
1
Storeconfigs and nagios and foreman
...ddress for the reports. # The default value is ''report@ip-10-36-11-244.ec2.internal''. # reportfrom = report@ip-10-36-11-244.ec2.internal # The mapping between reporting tags and email addresses. # The default value is ''$confdir/tagmail.conf''. tagmap = /etc/puppet/tagmail.conf # The server through which to send email reports. # The default value is ''none''. # smtpserver = none # Where to find the sendmail binary with which to send email. # The default value is ''/usr/sbin/sendmail''. #...
2010 Oct 19
14
client won't use remote file bucket
Hi all, I''m having a stupid moment getting a remote file bucket working. My client only file buckets locally, not remotely. I have this site.pp: ********* filebucket { "main": server => "puppet" } File { backup => "main" } node ''default'' { include test } ********* and this test module: ********* class test { file {