shlo.afgin@gmail.com
2013-Nov-26 09:33 UTC
[Puppet Users] Puppet Agent does not connect to master after installing Dashboard
Hi, I had Puppet + Passenger installed and working. Then I installed Dashboard on the puppet master. I had to change the apache configuration file and replace the virtual host I had when I install Passenger with contain: <VirtualHost *:80> ServerName puppetsrv.domain.com DocumentRoot /usr/share/puppet-dashboard/public/ <Directory /usr/share/puppet-dashboard/public/> Options None AllowOverride AuthConfig Order Allow,Deny Allow from All </Directory> ErrorLog /etc/httpd/logs/dashboard_error.log LogLevel warn CustomLog /etc/httpd/logs/dashboard_access.log Combined ServerSignature On </VirtualHost> Now when I run on the agent : puppet agent --no-daemonize --verbose I got the error: Notice: Starting Puppet client version 3.3.1 *Error: Failed to apply catalog: Connection refused - connect(2)* *Error: Could not send report: Connection refused - connect(2)* /usr/lib/ruby/site_ruby/1.8/puppet/agent.rb:89:in `exit'': no implicit conversion from nil to integer (TypeError) from /usr/lib/ruby/site_ruby/1.8/puppet/agent.rb:89:in `run_in_fork'' from /usr/lib/ruby/site_ruby/1.8/puppet/agent.rb:86:in `fork'' from /usr/lib/ruby/site_ruby/1.8/puppet/agent.rb:86:in `run_in_fork'' from /usr/lib/ruby/site_ruby/1.8/puppet/agent.rb:41:in `run'' .... .... .... .... .... and have no nodes in the Dashboard on the puppet master. How can I solve this problem? Thanks. -- 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 puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/e7c8a42c-9240-4035-8261-3e121354ea0a%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
shlo.afgin@gmail.com
2013-Nov-27 09:51 UTC
[Puppet Users] Re: Puppet Agent does not connect to master after installing Dashboard
I think the problem is with *merging Dashboard with Passenger*. What I need to have in my Apache config file? For *Passenger* I need to have in the Apache configuration file the lines: Listen 8140 <VirtualHost *:8140> SSLEngine On SSLProtocol All -SSLv2 SSLCipherSuite HIGH:!ADH:RC4+RSA:-MEDIUM:-LOW:-EXP SSLCertificateFile /var/lib/puppet/ssl/certs/puppetsrv.domain.com.pem SSLCertificateKeyFile /var/lib/puppet/ssl/private_keys/puppetsrv.domain.com.pem SSLCertificateChainFile /var/lib/puppet/ssl/ca/ca_crt.pem SSLCACertificateFile /var/lib/puppet/ssl/ca/ca_crt.pem SSLCARevocationFile /var/lib/puppet/ssl/ca/ca_crl.pem SSLVerifyClient optional SSLVerifyDepth 1 SSLOptions +StdEnvVars +ExportCertData RequestHeader set X-SSL-Subject %{SSL_CLIENT_S_DN}e RequestHeader set X-Client-DN %{SSL_CLIENT_S_DN}e RequestHeader set X-Client-Verify %{SSL_CLIENT_VERIFY}e * DocumentRoot /usr/share/puppet/rack/puppetmasterd/public/* <Directory /usr/share/puppet/rack/puppetmasterd/> Options -MultiViews AllowOverride all Order Allow,Deny Allow from All </Directory> </VirtualHost> but for *Dashboard* I need to have the lines: <VirtualHost *:80> ServerName puppetsrv.domain.com *DocumentRoot /usr/share/puppet-dashboard/public/* <Directory /usr/share/puppet-dashboard/public/> Options None AllowOverride AuthConfig Order Allow,Deny Allow from All </Directory> ErrorLog /etc/httpd/logs/dashboard_error.log LogLevel warn CustomLog /etc/httpd/logs/dashboard_access.log Combined ServerSignature On </VirtualHost> How can I merge between the 2 virtual host to make Passenger work with Dashboard? Any help is welcome. Thanks. On Tuesday, November 26, 2013 11:33:39 AM UTC+2, shlo....@gmail.com wrote:> > > > Hi, > I had Puppet + Passenger installed and working. > > Then I installed Dashboard on the puppet master. > > I had to change the apache configuration file and replace the virtual host > I had when I install Passenger with contain: > > <VirtualHost *:80> > ServerName puppetsrv.domain.com > DocumentRoot /usr/share/puppet-dashboard/public/ > <Directory /usr/share/puppet-dashboard/public/> > Options None > AllowOverride AuthConfig > Order Allow,Deny > Allow from All > </Directory> > ErrorLog /etc/httpd/logs/dashboard_error.log > LogLevel warn > CustomLog /etc/httpd/logs/dashboard_access.log Combined > ServerSignature On > </VirtualHost> > > > Now when I run on the agent : > > puppet agent --no-daemonize --verbose > > > I got the error: > > Notice: Starting Puppet client version 3.3.1 > *Error: Failed to apply catalog: Connection refused - connect(2)* > *Error: Could not send report: Connection refused - connect(2)* > /usr/lib/ruby/site_ruby/1.8/puppet/agent.rb:89:in `exit'': no implicit > conversion from nil to integer (TypeError) > from /usr/lib/ruby/site_ruby/1.8/puppet/agent.rb:89:in > `run_in_fork'' > from /usr/lib/ruby/site_ruby/1.8/puppet/agent.rb:86:in `fork'' > from /usr/lib/ruby/site_ruby/1.8/puppet/agent.rb:86:in > `run_in_fork'' > from /usr/lib/ruby/site_ruby/1.8/puppet/agent.rb:41:in `run'' > > .... .... .... .... .... > > > and have no nodes in the Dashboard on the puppet master. > > How can I solve this problem? > Thanks. > >-- 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 puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/24b43c10-77d6-45f8-a458-ab2af7c44a01%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Felix Frank
2013-Nov-28 08:42 UTC
Re: [Puppet Users] Re: Puppet Agent does not connect to master after installing Dashboard
Hi, actually, I believe both puppetmaster and dashboard use passenger. The idea behind apache''s virtual hosts is that you can have independent sets of configuration applied to different ports, or different IP addresses available on the same server. What you need to do is adding *both* <VirtualHost> blocks to your apache config. What platform is this? On Debian-likes, those go in /etc/apache2/sites-available (with symlinks in sites-enabled/), for RedHat-ish systems the structure in /etc/apache2 is slightly different, but it should be easy to find. HTH, Felix On 11/27/2013 10:51 AM, shlo.afgin@gmail.com wrote:> How can I merge between the 2 virtual host to make Passenger work with > Dashboard? > Any help is welcome. > Thanks.-- 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 puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/5297020E.7030007%40alumni.tu-berlin.de. For more options, visit https://groups.google.com/groups/opt_out.
shlo.afgin@gmail.com
2013-Dec-02 13:26 UTC
Re: [Puppet Users] Re: Puppet Agent does not connect to master after installing Dashboard
Thanks, I test it today and now both work. On Thursday, November 28, 2013 10:42:54 AM UTC+2, Felix.Frank wrote:> > Hi, > > actually, I believe both puppetmaster and dashboard use passenger. > > The idea behind apache''s virtual hosts is that you can have independent > sets of configuration applied to different ports, or different IP > addresses available on the same server. > > What you need to do is adding *both* <VirtualHost> blocks to your apache > config. > > What platform is this? On Debian-likes, those go in > /etc/apache2/sites-available (with symlinks in sites-enabled/), for > RedHat-ish systems the structure in /etc/apache2 is slightly different, > but it should be easy to find. > > HTH, > Felix > > On 11/27/2013 10:51 AM, shlo....@gmail.com <javascript:> wrote: > > How can I merge between the 2 virtual host to make Passenger work with > > Dashboard? > > Any help is welcome. > > Thanks. >-- 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 puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/0f53662e-5727-4057-8e08-43fe73a2ac79%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
shlo.afgin@gmail.com
2013-Dec-02 14:46 UTC
Re: [Puppet Users] Re: Puppet Agent does not connect to master after installing Dashboard
I continue with the instruction of configure Dashboard. First, I dont see a list of nodes I have, Do I need to add them manually to Dashboard or it should came up automatically? I tried to set "Importing exiting reports" : I dont have /var/puppet/lib/reports, how can I know where my report exist so I can run the command ''rake RAILS_ENV=production reports:migrate'' successfully? I also tried to set ''Live report aggregation''. As a result I have no reports in Dashboard. How can I see the reports? Any help welcome. On Monday, December 2, 2013 3:26:58 PM UTC+2, shlo....@gmail.com wrote:> > Thanks, I test it today and now both work. > > > > On Thursday, November 28, 2013 10:42:54 AM UTC+2, Felix.Frank wrote: >> >> Hi, >> >> actually, I believe both puppetmaster and dashboard use passenger. >> >> The idea behind apache''s virtual hosts is that you can have independent >> sets of configuration applied to different ports, or different IP >> addresses available on the same server. >> >> What you need to do is adding *both* <VirtualHost> blocks to your apache >> config. >> >> What platform is this? On Debian-likes, those go in >> /etc/apache2/sites-available (with symlinks in sites-enabled/), for >> RedHat-ish systems the structure in /etc/apache2 is slightly different, >> but it should be easy to find. >> >> HTH, >> Felix >> >> On 11/27/2013 10:51 AM, shlo....@gmail.com wrote: >> > How can I merge between the 2 virtual host to make Passenger work with >> > Dashboard? >> > Any help is welcome. >> > Thanks. >> >-- 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 puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/ac3f902a-c79a-4193-95f0-20b66af77bf7%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
kaustubh chaudhari
2013-Dec-02 17:18 UTC
Re: [Puppet Users] Re: Puppet Agent does not connect to master after installing Dashboard
what are you [master] setting in puppet.conf what is the ''report = '' configured for ? -Kaustubh On Monday, December 2, 2013 9:46:49 AM UTC-5, shlo....@gmail.com wrote:> > I continue with the instruction of configure Dashboard. > First, I dont see a list of nodes I have, Do I need to add them manually > to Dashboard or it should came up automatically? > > I tried to set "Importing exiting reports" : > I dont have /var/puppet/lib/reports, how can I know where my report exist > so I can run the command > ''rake RAILS_ENV=production reports:migrate'' successfully? > > I also tried to set ''Live report aggregation''. > > As a result I have no reports in Dashboard. How can I see the reports? > Any help welcome. > > On Monday, December 2, 2013 3:26:58 PM UTC+2, shlo....@gmail.com wrote: >> >> Thanks, I test it today and now both work. >> >> >> >> On Thursday, November 28, 2013 10:42:54 AM UTC+2, Felix.Frank wrote: >>> >>> Hi, >>> >>> actually, I believe both puppetmaster and dashboard use passenger. >>> >>> The idea behind apache''s virtual hosts is that you can have independent >>> sets of configuration applied to different ports, or different IP >>> addresses available on the same server. >>> >>> What you need to do is adding *both* <VirtualHost> blocks to your apache >>> config. >>> >>> What platform is this? On Debian-likes, those go in >>> /etc/apache2/sites-available (with symlinks in sites-enabled/), for >>> RedHat-ish systems the structure in /etc/apache2 is slightly different, >>> but it should be easy to find. >>> >>> HTH, >>> Felix >>> >>> On 11/27/2013 10:51 AM, shlo....@gmail.com wrote: >>> > How can I merge between the 2 virtual host to make Passenger work >>> with >>> > Dashboard? >>> > Any help is welcome. >>> > Thanks. >>> >>-- 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 puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/4c27d3be-9cd7-4226-bd59-282fbf9e2005%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
shlo.afgin@gmail.com
2013-Dec-03 06:16 UTC
Re: [Puppet Users] Re: Puppet Agent does not connect to master after installing Dashboard
under [master] tag I have: reports = store, http reporturl = http://puppetsrv:80/reports On Monday, December 2, 2013 7:18:40 PM UTC+2, kaustubh chaudhari wrote:> > what are you [master] setting in puppet.conf what is the ''report = '' > configured for ? > > -Kaustubh > > On Monday, December 2, 2013 9:46:49 AM UTC-5, shlo....@gmail.com wrote: >> >> I continue with the instruction of configure Dashboard. >> First, I dont see a list of nodes I have, Do I need to add them manually >> to Dashboard or it should came up automatically? >> >> I tried to set "Importing exiting reports" : >> I dont have /var/puppet/lib/reports, how can I know where my report exist >> so I can run the command >> ''rake RAILS_ENV=production reports:migrate'' successfully? >> >> I also tried to set ''Live report aggregation''. >> >> As a result I have no reports in Dashboard. How can I see the reports? >> Any help welcome. >> >> On Monday, December 2, 2013 3:26:58 PM UTC+2, shlo....@gmail.com wrote: >>> >>> Thanks, I test it today and now both work. >>> >>> >>> >>> On Thursday, November 28, 2013 10:42:54 AM UTC+2, Felix.Frank wrote: >>>> >>>> Hi, >>>> >>>> actually, I believe both puppetmaster and dashboard use passenger. >>>> >>>> The idea behind apache''s virtual hosts is that you can have independent >>>> sets of configuration applied to different ports, or different IP >>>> addresses available on the same server. >>>> >>>> What you need to do is adding *both* <VirtualHost> blocks to your >>>> apache >>>> config. >>>> >>>> What platform is this? On Debian-likes, those go in >>>> /etc/apache2/sites-available (with symlinks in sites-enabled/), for >>>> RedHat-ish systems the structure in /etc/apache2 is slightly different, >>>> but it should be easy to find. >>>> >>>> HTH, >>>> Felix >>>> >>>> On 11/27/2013 10:51 AM, shlo....@gmail.com wrote: >>>> > How can I merge between the 2 virtual host to make Passenger work >>>> with >>>> > Dashboard? >>>> > Any help is welcome. >>>> > Thanks. >>>> >>>-- 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 puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/71bea937-afba-411b-b91e-473453289bab%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
kaustubh chaudhari
2013-Dec-03 06:48 UTC
Re: [Puppet Users] Re: Puppet Agent does not connect to master after installing Dashboard
I guess its http//pupetsrv/reports/uploads =http://docs.puppetlabs.com/dashboard/manual/1.2/bootstrapping.html#using-dashboard-for-reports = Also if you are using http, you dont need to specify port 80, one more thing, have you configured all your agent to report ? report = true -Kaustubh On Tuesday, December 3, 2013 1:16:25 AM UTC-5, shlo....@gmail.com wrote:> > under [master] tag I have: > reports = store, http > reporturl = http://puppetsrv:80/reports > > On Monday, December 2, 2013 7:18:40 PM UTC+2, kaustubh chaudhari wrote: >> >> what are you [master] setting in puppet.conf what is the ''report = '' >> configured for ? >> >> -Kaustubh >> >> On Monday, December 2, 2013 9:46:49 AM UTC-5, shlo....@gmail.com wrote: >>> >>> I continue with the instruction of configure Dashboard. >>> First, I dont see a list of nodes I have, Do I need to add them manually >>> to Dashboard or it should came up automatically? >>> >>> I tried to set "Importing exiting reports" : >>> I dont have /var/puppet/lib/reports, how can I know where my report >>> exist so I can run the command >>> ''rake RAILS_ENV=production reports:migrate'' successfully? >>> >>> I also tried to set ''Live report aggregation''. >>> >>> As a result I have no reports in Dashboard. How can I see the reports? >>> Any help welcome. >>> >>> On Monday, December 2, 2013 3:26:58 PM UTC+2, shlo....@gmail.com wrote: >>>> >>>> Thanks, I test it today and now both work. >>>> >>>> >>>> >>>> On Thursday, November 28, 2013 10:42:54 AM UTC+2, Felix.Frank wrote: >>>>> >>>>> Hi, >>>>> >>>>> actually, I believe both puppetmaster and dashboard use passenger. >>>>> >>>>> The idea behind apache''s virtual hosts is that you can have >>>>> independent >>>>> sets of configuration applied to different ports, or different IP >>>>> addresses available on the same server. >>>>> >>>>> What you need to do is adding *both* <VirtualHost> blocks to your >>>>> apache >>>>> config. >>>>> >>>>> What platform is this? On Debian-likes, those go in >>>>> /etc/apache2/sites-available (with symlinks in sites-enabled/), for >>>>> RedHat-ish systems the structure in /etc/apache2 is slightly >>>>> different, >>>>> but it should be easy to find. >>>>> >>>>> HTH, >>>>> Felix >>>>> >>>>> On 11/27/2013 10:51 AM, shlo....@gmail.com wrote: >>>>> > How can I merge between the 2 virtual host to make Passenger work >>>>> with >>>>> > Dashboard? >>>>> > Any help is welcome. >>>>> > Thanks. >>>>> >>>>-- 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 puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/ed1266b5-86f9-4eb1-afc0-8cb7fe34dcda%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
shlo.afgin@gmail.com
2013-Dec-03 09:52 UTC
Re: [Puppet Users] Re: Puppet Agent does not connect to master after installing Dashboard
Hi, I follow book of older puppet version. I saw in the link you sent about ''Background Tasks'' window, with '' pending tasks'' and the command: sudo -u puppet-dashboard env RAILS_ENV=production script/delayed_job -p dashboard -n 4 -m start I run it and now I have the nodes and logs. Thank you very much for that! Is there place a good document how to work with Dashboard - Logs and ENC? Thanks a lot. On Tuesday, December 3, 2013 8:48:54 AM UTC+2, kaustubh chaudhari wrote:> > > I guess its http//pupetsrv/reports/uploads > => > http://docs.puppetlabs.com/dashboard/manual/1.2/bootstrapping.html#using-dashboard-for-reports > => > Also if you are using http, you dont need to specify port 80, one more > thing, have you configured all your agent to report ? > report = true > > -Kaustubh > > On Tuesday, December 3, 2013 1:16:25 AM UTC-5, shlo....@gmail.com wrote: >> >> under [master] tag I have: >> reports = store, http >> reporturl = http://puppetsrv:80/reports >> >> On Monday, December 2, 2013 7:18:40 PM UTC+2, kaustubh chaudhari wrote: >>> >>> what are you [master] setting in puppet.conf what is the ''report = '' >>> configured for ? >>> >>> -Kaustubh >>> >>> On Monday, December 2, 2013 9:46:49 AM UTC-5, shlo....@gmail.com wrote: >>>> >>>> I continue with the instruction of configure Dashboard. >>>> First, I dont see a list of nodes I have, Do I need to add them >>>> manually to Dashboard or it should came up automatically? >>>> >>>> I tried to set "Importing exiting reports" : >>>> I dont have /var/puppet/lib/reports, how can I know where my report >>>> exist so I can run the command >>>> ''rake RAILS_ENV=production reports:migrate'' successfully? >>>> >>>> I also tried to set ''Live report aggregation''. >>>> >>>> As a result I have no reports in Dashboard. How can I see the reports? >>>> Any help welcome. >>>> >>>> On Monday, December 2, 2013 3:26:58 PM UTC+2, shlo....@gmail.com wrote: >>>>> >>>>> Thanks, I test it today and now both work. >>>>> >>>>> >>>>> >>>>> On Thursday, November 28, 2013 10:42:54 AM UTC+2, Felix.Frank wrote: >>>>>> >>>>>> Hi, >>>>>> >>>>>> actually, I believe both puppetmaster and dashboard use passenger. >>>>>> >>>>>> The idea behind apache''s virtual hosts is that you can have >>>>>> independent >>>>>> sets of configuration applied to different ports, or different IP >>>>>> addresses available on the same server. >>>>>> >>>>>> What you need to do is adding *both* <VirtualHost> blocks to your >>>>>> apache >>>>>> config. >>>>>> >>>>>> What platform is this? On Debian-likes, those go in >>>>>> /etc/apache2/sites-available (with symlinks in sites-enabled/), for >>>>>> RedHat-ish systems the structure in /etc/apache2 is slightly >>>>>> different, >>>>>> but it should be easy to find. >>>>>> >>>>>> HTH, >>>>>> Felix >>>>>> >>>>>> On 11/27/2013 10:51 AM, shlo....@gmail.com wrote: >>>>>> > How can I merge between the 2 virtual host to make Passenger work >>>>>> with >>>>>> > Dashboard? >>>>>> > Any help is welcome. >>>>>> > Thanks. >>>>>> >>>>>-- 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 puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/9db144aa-8547-431e-92c3-45f8ce1e7245%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
kaustubh chaudhari
2013-Dec-03 11:30 UTC
Re: [Puppet Users] Re: Puppet Agent does not connect to master after installing Dashboard
Hi, Good to hear that!!! Best docs i feel is http://docs.puppetlabs.com/dashboard/manual/1.2/index.html -Kaustubh On Tuesday, December 3, 2013 4:52:24 AM UTC-5, shlo....@gmail.com wrote:> > Hi, > I follow book of older puppet version. I saw in the link you sent about > ''Background Tasks'' window, with '' pending tasks'' and the command: > sudo -u puppet-dashboard env RAILS_ENV=production script/delayed_job -p > dashboard -n 4 -m start > I run it and now I have the nodes and logs. > Thank you very much for that! > > Is there place a good document how to work with Dashboard - Logs and ENC? > Thanks a lot. > > > On Tuesday, December 3, 2013 8:48:54 AM UTC+2, kaustubh chaudhari wrote: >> >> >> I guess its http//pupetsrv/reports/uploads >> =>> >> http://docs.puppetlabs.com/dashboard/manual/1.2/bootstrapping.html#using-dashboard-for-reports >> =>> >> Also if you are using http, you dont need to specify port 80, one more >> thing, have you configured all your agent to report ? >> report = true >> >> -Kaustubh >> >> On Tuesday, December 3, 2013 1:16:25 AM UTC-5, shlo....@gmail.com wrote: >>> >>> under [master] tag I have: >>> reports = store, http >>> reporturl = http://puppetsrv:80/reports >>> >>> On Monday, December 2, 2013 7:18:40 PM UTC+2, kaustubh chaudhari wrote: >>>> >>>> what are you [master] setting in puppet.conf what is the ''report = '' >>>> configured for ? >>>> >>>> -Kaustubh >>>> >>>> On Monday, December 2, 2013 9:46:49 AM UTC-5, shlo....@gmail.com wrote: >>>>> >>>>> I continue with the instruction of configure Dashboard. >>>>> First, I dont see a list of nodes I have, Do I need to add them >>>>> manually to Dashboard or it should came up automatically? >>>>> >>>>> I tried to set "Importing exiting reports" : >>>>> I dont have /var/puppet/lib/reports, how can I know where my report >>>>> exist so I can run the command >>>>> ''rake RAILS_ENV=production reports:migrate'' successfully? >>>>> >>>>> I also tried to set ''Live report aggregation''. >>>>> >>>>> As a result I have no reports in Dashboard. How can I see the reports? >>>>> Any help welcome. >>>>> >>>>> On Monday, December 2, 2013 3:26:58 PM UTC+2, shlo....@gmail.comwrote: >>>>>> >>>>>> Thanks, I test it today and now both work. >>>>>> >>>>>> >>>>>> >>>>>> On Thursday, November 28, 2013 10:42:54 AM UTC+2, Felix.Frank wrote: >>>>>>> >>>>>>> Hi, >>>>>>> >>>>>>> actually, I believe both puppetmaster and dashboard use passenger. >>>>>>> >>>>>>> The idea behind apache''s virtual hosts is that you can have >>>>>>> independent >>>>>>> sets of configuration applied to different ports, or different IP >>>>>>> addresses available on the same server. >>>>>>> >>>>>>> What you need to do is adding *both* <VirtualHost> blocks to your >>>>>>> apache >>>>>>> config. >>>>>>> >>>>>>> What platform is this? On Debian-likes, those go in >>>>>>> /etc/apache2/sites-available (with symlinks in sites-enabled/), for >>>>>>> RedHat-ish systems the structure in /etc/apache2 is slightly >>>>>>> different, >>>>>>> but it should be easy to find. >>>>>>> >>>>>>> HTH, >>>>>>> Felix >>>>>>> >>>>>>> On 11/27/2013 10:51 AM, shlo....@gmail.com wrote: >>>>>>> > How can I merge between the 2 virtual host to make Passenger work >>>>>>> with >>>>>>> > Dashboard? >>>>>>> > Any help is welcome. >>>>>>> > Thanks. >>>>>>> >>>>>>-- 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 puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/1c9061a6-ee6d-4418-a0c3-6e7777a970db%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.