Hi All,
I am trying to grant permissions to a user from multiple hosts. I am not
able to achieve it with the default mysql module. Trying to avoid exec.
This is what happens with i use mysql_grant resource. i am not able to
identify it with a password. Due to which authentication fails.
#
se
Hi,
You can run profiler to check who and what is taking time in detail.
https://puppetlabs.com/blog/tune-puppet-performance-profiler
-Kaustubh
On Tuesday, August 25, 2015 at 3:49:28 AM UTC-4, Constantin Wolber wrote:
>
> Hi,
>
> i searched quite a bit with google but cannot really find an ide
Thanks Rob for you comments,
I will check the same and let you know how it goes.
On Thursday, August 20, 2015 at 11:52:53 PM UTC-4, Rob Reynolds wrote:
>
>
>
> On Thu, Aug 20, 2015 at 12:11 PM, kaustubh chaudhari > wrote:
>
>> Hi,
>>
>> Thanks for the reply,
Hi,
Thanks for the reply,
Yes I did that. The problem is :
below are the install parameters with its options.
/components vda,plugins
when we add this in key value settings ['/components', 'vda,plugins'] How
it will be treated as there is a , in between vda and plugins.
I have tried the optio
Hi All,
Any guidance on providing these install parameters would be really helpful.
-Kaustubh
On Wednesday, August 19, 2015 at 12:40:30 PM UTC-4, kaustubh chaudhari
wrote:
>
> Hi Team,
>
> I am trying to install vda with puppet.
>
> #VDAServerSetup.exe /quiet /comp
Hi Team,
I am trying to install vda with puppet.
#VDAServerSetup.exe /quiet /components vda,plugins /controllers
"mydev.example.com" /enable_hdx_ports /optimize /enable_remote_assistance
/virtualmachine /nodesktopexperience /noreboot
Above is the commend line parameters i need to use with the
10, 2015 at 4:32 PM, Rob Reynolds > wrote:
>
>>
>>
>> On Wed, Jun 10, 2015 at 12:17 PM, kaustubh chaudhari > > wrote:
>>
>>> Hi All,
>>>
>>> I want to read registry value on windows system and present it as a
>>> fact. i
Hi All,
I want to read registry value on windows system and present it as a fact. i
tried it in many ways but no luck.
I have this powershell script in facts.d directory
==
$path = 'HKLM:\Software\SunGard\BigFix'
$wave = Get-ItemProperty $path | Select-Object -ExpandProperty bigfix
Write-Host zz
You can create a custom fact to check for that file if the file dose not
exist then install else do nothing.
==
Facter.add(:bigfix) do
confine :kernel => "Linux"
setcode do
if File.exist? "/etc/init.d/besclient"
"true"
else "false"
end
end
end
==
if this file exist i ig
Sorry for the Typo, Updated.
On Monday, April 20, 2015 at 5:24:25 AM UTC-4, kaustubh chaudhari wrote:
>
> Hi All,
>
> I noticed after installing puppet agent on windows i am not able to
> execute any thing with my PATH variable.
>
> Also noticed that if i add quotes to puppe
Hi All,
I noticed after installing puppet agent on windows i am not able to execute
any thing with my PATH variable.
Also noticed that if i add quotes to puppet path variable every thing works
fine.
Fresh Install: Will not work.
%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%S
Hi Varun,
Please refer to this dashboard API details:
https://docs.puppetlabs.com/dashboard/manual/1.2/rake_api.html#node-tasks
-HTH
Kaustubh
On Friday, January 9, 2015 at 3:36:59 PM UTC-5, va...@pinterest.com wrote:
>
> Hi,
>
> I am trying to figure out an API to add nodes to the puppet dashbo
There are other tools which can do it, like HPSA it will scan the n/w and
install the agent on the system that you want.
With puppet no. The best option is already suggested. Have the agent
installed in your template and deploy the vm using the template, you will
have Puppet agent running on t
Hey,
You cannot force puppet to use specific repo, puppet uses yum and then yum
decides which repo to use for what. You can alter your yum.repos file to add
==
exclude= < packagename >
==
this will exclude the package from the specific repos, eventually it will
pick up the package from the repo
For your Reference :
https://docs.puppetlabs.com/puppetdb/2.2/scaling_recommendations.html#initial-memory-recommendations
-Kaustubh
On Tuesday, January 6, 2015 8:14:24 AM UTC-5, kaustubh chaudhari wrote:
>
> Hey,
>
> I noticed that you mentioned you are managing 850 nodes and y
gt;
>
> Op dinsdag 6 januari 2015 11:26:40 UTC+1 schreef kaustubh chaudhari:
>>
>> Did you upgrade the openjdk to the latest ?
>>
>> i did the same upgrade. for me things are running smooth.
>>
>> -Kaustubh
>>
>> On Tuesday, January 6, 2015 2:3
Did you upgrade the openjdk to the latest ?
i did the same upgrade. for me things are running smooth.
-Kaustubh
On Tuesday, January 6, 2015 2:35:04 AM UTC-5, jdt wrote:
>
> Hello,
>
> I recently upgraded to PuppetDB2.2.0 from 1.6.3
> When I was running PuppetDB1.6.3 with Puppet 3.4.3 I could do
Also you might want to run puppet agent with the below parameters for
details:
# puppet agent --evaltrace -td
-HTH
Kaustubh
On Monday, January 5, 2015 9:20:52 AM UTC-5, kaustubh chaudhari wrote:
>
> Depends on which package you are installing ... also as mentioned in the
> mail trail
Depends on which package you are installing ... also as mentioned in the
mail trail you need to check the manual time or installation.
# time yum -y pkg
On Monday, January 5, 2015 1:50:17 AM UTC-5, Royee Tager wrote:
>
> Hello all,
>
> New CentOS 6.5 clients which run Puppet for the first time h
what dose puppetdb.log says ?
-Kaustubh
On Sunday, January 4, 2015 5:40:22 PM UTC-5, jdt wrote:
>
> Hello,
>
> I recently upgraded from puppetdb 1.6 to 2.2 but now it seems like I'm
> having issues with the puppetdb report processor.
> I keep getting the errors below:
> puppet-master[23130]: Re
Can you paste the full error?
On Wednesday, December 31, 2014 12:19:58 PM UTC-5, Brett Swift wrote:
>
>
> This one is kind of frustrating.The only difference between these two
> servers is that the VM template used is different. The unfortunate thing
> is, I'm not sure what the difference
Is there a firewall wall in between ? make sure from client you are able to
run # telnet puppetmaster.example.com 8140 (replace the fqdn with your
puppet master name).
HTH
-Kaustubh
On Sunday, December 28, 2014 3:36:42 PM UTC-5, havay...@gmail.com wrote:
>
> Hi everyone,
>
> I'm a newbie with p
No, those are not mandatory. You should be good with the settings you
mentioned.
HTH
-Kaustubh
On Thursday, December 25, 2014 6:36:01 PM UTC-5, Vince Skahan wrote:
>
> I'm trying to set up a puppet master and client under ESXi in a home lab
> using Debian wheezy. Following the instructions at
, Felix Frank <
felix.fr...@alumni.tu-berlin.de> wrote:
> On 12/22/2014 04:39 PM, kaustubh chaudhari wrote:
> > I was expecting o/p as.
> >
> > Disk_Size C: 30GB
>
> So what do you get instead?
>
> Have you added debug logging to your script to find out whether F
Hi All,
I am trying to run a batch script from custom facts. But unable to get the
required output. I know i am doing some thing wrong, but where.
==
Facter.add(:Disk_Size) do
confine :kernel => "windows"
setcode do
Facter::Util::Execution.exec("C:\\Windows\\System32\\cmd.exe
C:\\Program
Hi All,
yes same with me. I restarted the system and errors are gone.
Still was not able to find the root cause.
I m good for now after the restart.
With Warm Regards
Kaustubh.A.Chaudhari
(M)-09373102619
On Wed, Oct 1, 2014 at 3:21 PM, jmp242 wrote:
> Ok, thanks, it turns out restarting the
Hi,
I was on 1.7 now upgraded to 2.2.
With Warm Regards
Kaustubh.A.Chaudhari
(M)-09373102619
On Sat, Sep 27, 2014 at 1:43 PM, Jason Antman wrote:
> What facter versions are you running?
>
> On Fri, Sep 26, 2014 at 6:02 AM, kaustubh chaudhari
> wrote:
>
>>
>> Hi,
Hi,
Just had a though if this is possible. I have seen this feature in HPSA.
Is there a way to scan the n/w and find the nodes who dont have puppet
installed on them ?
-Kaustubh
--
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To unsubscribe
Hi,
I am also facing same issue. unable to find where to look for, puppet agent
runes file facter runes fine if run manually.
But schedule run still not working.
Any help is appreciated.
FYI: This happened after upgrade from 3.3.2 to 3.6.2
-Kaustubh
On Wednesday, September 24, 2014 8:16:54
Hi,
I am also facing same issue. unable to find where to look for, puppet agent
runes file facter runes fine if run manually.
But schedule run still not working.
Any help is appreciated.
FYI: This happened after upgrade from 3.3.2 to 3.6.2
-Kaustubh
On Wednesday, September 24, 2014 8:16:54
Kaustubh.A.Chaudhari
(M)-09373102619
On Tue, Sep 2, 2014 at 5:05 PM, Felix Frank wrote:
> On 09/02/2014 02:45 PM, kaustubh chaudhari wrote:
> > Hey,
> >
> > Thanks for the reply. I tried what you suggested.
> >
> > Sorry i am not a programmer, trying to find my way through.
&g
master.
can you suggest any ideas thoughts on this ?
(i am running user.sh through my manifest)
With Warm Regards
Kaustubh.A.Chaudhari
(M)-09373102619
On Wed, Aug 27, 2014 at 8:41 AM, Felix Frank <
felix.fr...@alumni.tu-berlin.de> wrote:
> On 08/27/2014 02:06 PM, kaustubh chaudh
.tu-berlin.de> wrote:
> On 08/21/2014 04:25 PM, kaustubh chaudhari wrote:
> >
> > I want puppet agent to send this file or the output of the command #
> > cat /etc/issue to the master?
> >
> > Is this possible, if yes can some one suggest or redirect me to some
Hi All,
I am looking to run a shell script on the agent, i know there are many ways
to to do that through manifests, customfacts etc.
What i want is, how to send output of this shell script or a file that is
created by shell script back to master.
eg: i am running below script
==
#!bin/bash
c
that does this, like:
>
> # site.pp
> if $::infra == 'newinfra' {
> include newinfra_baseclass
> }
>
>
> On 19 June 2014 09:02, kaustubh chaudhari
> > wrote:
>
>> Hi All,
>>
>>
>> I have a existing infrastructure with win and linux s
Hi All,
I have a existing infrastructure with win and linux systems, i am creating
a new infrastructure with same version of win and linux systems.
In this i want to do.
all the server from new infrastructure should get specific set of classes
automatically soon their certificate is accepted.
On Wednesday, May 14, 2014 11:47:25 AM UTC-4, Nan Liu wrote:
>
> kaustubh chaudhari wrote:
>
>
> Can we install puppet agent on ESX host.
>
>
>
> Not aware of a way to install puppet agent.
>
>
> 1. I am provisioning the hosts with PXE and Kickstart in th
Hi,
Can we install puppet agent on ESX host.
1. I am provisioning the hosts with PXE and Kickstart in the post install,
i wish to install puppet agent and mange the host with the same.
Like hardning, network config etc.
2. Use vmware/vcenter module to manage the new host, add it to the
appr
Hi All,
I am thinking of implementing Razor for ESX provisioning with existing
Puppet Open Source version.
I am new to Razor, and would like to have opinion on this.
Have anyone used Razor with Puppet Open Source, how is the experience ? Are
there any other options to Razor ?
Exploring phase
Hi All,
I was wondering how can i extract a compressed file on windows.
Actually i wish to install a software which has 100s of files with a
setup.exe one of them. I was wondering to zip the folder -> copy it to
windows box and then run the setup.exe.
But how can i extract the zip file on wind
:20 PM, jcbollinger wrote:
>
>
> On Wednesday, March 5, 2014 9:40:48 AM UTC-6, kaustubh chaudhari wrote:
>>
>> Hi All,
>>
>> I need to check if a service or a package is already installed before
>> running the further code.
>>
>> Eg:
>>
&
Wednesday, March 5, 2014 10:46:04 AM UTC-5, Thomas Müller wrote:
>
> On Wed, 05 Mar 2014 07:32:59 -0800 wrote kaustubh chaudhari:
>
> > Thanks Alexzender and Thomas for the reply.
> >
> > This is partially useful.
> >
> > The requirement is i need to copy it fir
Hi All,
I need to check if a service or a package is already installed before
running the further code.
Eg:
Install bigfix package if bigfix service dose not exist.
i know ensure => true will do this, but there is a possibility that bigfix
was installed from the source in c:\bigfix on few ser
:41:45 -0800 wrote kaustubh chaudhari:
>
>
> > One of my application requires me to copy a config file after
> > installation the application. This needs to be done only once after
> > installation
> >
> > However this config file is managed by a central serv
Hi All,
One of my application requires me to copy a config file after installation
the application. This needs to be done only once after installation
However this config file is managed by a central server and keeps on
getting updated every day, which means puppet will overwrite the updated
f
Hi All,
In Dashboard:
I wish to group Windows server and Linux server in Windows server group and
Linux server group respectively.
Is there a way to do that for more that 3000 servers ? adding individual
will be tedious job.
Can some one help me here?
Kind Regards,
Kaustubh
--
You receive
to potentially
> scale to thousands of nodes.
> This runs once a night from an old fashioned cron.
>
> Richard
>
>
> On Monday, January 27, 2014 3:16:09 PM UTC+1, kaustubh chaudhari wrote:
>>
>> Hi,
>>
>> I was looking for a way to group the servers dynamically.
i will answer the second part of the question!!
> Also is there a page that shows how to create your initial
/etc/puppet/manifest/site.pp file?
You will have to create it! More details are here
http://projects.puppetlabs.com/projects/puppet/wiki/Simplest_Puppet_Install_Pattern
-Kaustubh
On Tu
Hi,
How do we check if the package is installed, before installing it.
I with to uninstall a package which i can do with ensure => absent, but
before doing this, i would like to check if the package really exists on
the system or not?
Can someone help in here or redirect me to the correct docu
Hi All,
As we all know Puppet Dashboard is now EOL, with that said what is the best
replacement for the same? We do need a graphical way of managing and
reporting!
Any thoughts or suggestion! I am looking at Forman, but havent explored it
yet!
-Kaustubh
--
You received this message because
facts (mco find
> --wf ) to use in those rake tasks.
> Or create them by hand from the Inventory Search in the Dashboard, maybe
> even a custom rake task.
>
> Stefan
>
>
> Op dinsdag 28 januari 2014 11:24:08 UTC+1 schreef kaustubh chaudhari:
>
>> Thanks for the Repl
to a group
> rake node:addgroup # Add group(s) to a node
>
> Stefan
>
> Op maandag 27 januari 2014 15:16:09 UTC+1 schreef kaustubh chaudhari:
>
>> Hi,
>>
>> I was looking for a way to group the servers dynamically. Eg: create a
>> "Windows
Hi,
I was looking for a way to group the servers dynamically. Eg: create a
"Windows" Group and all the existing nodes and new nodes should be part of
"Windows" group.
I edit a group and then add each server, but practically its not possible
with 2k servers in all!!
Is there a way to do that?
HI Vaibhav,
I use the below procedure. Hope this helps you!
==
Use the below procedure to delete the nodes permanantly!
On Puppet Master Server
# puppet node clean
# puppet node deactivate
ON Dashboard server
# cd /usr/share/puppet-dashboard
# rake RAILS_ENV=production node:del name=node_cer
Hi,
Is there a way to track which admin did what task in dashboard.
I have a admin team who will be using Dashboard, i am worried that i will
not be able to track who did what?
Is there a way to track it ?
Can some one redirect me to the appropriate documentation ?
-Kaustubh
--
You received
you want with the reports. Documentation on this can be found in the
> Reporting Guide, at http://docs.puppetlabs.com/guides/reporting.html
>
> -Jason
>
>
> On 01/17/2014 07:20 AM, kaustubh chaudhari wrote:
> > Hey Jason,
> >
> > Thanks for the email!
> >
>
Hey Jason,
Thanks for the email!
Yes i am using Open Source Puppet! 3.3.2 and dashboard version 1.2.23.
I would appreciate if you can redirect me or share a link regarding the
options that you mentioned.
-Kaustubh
--
You received this message because you are subscribed to the Google Groups
Hi All,
How can i find all the failed puppet run in last 30 days!
In dash board i can see if the agent run is failing, but if it has
recovered it will be green again.
Practically it not possible to see the Daily run status and look for a red
mark if i have 3000 servers.
Is there a way i can s
Hey GS,
Thanks a lot! it work as expected. I also explored about other options that
i can use with exec.
Cheerzzz!
-Kaustubh
On Friday, January 17, 2014 2:19:20 AM UTC-5, Gonzalo wrote:
>
> Add "refreshonly => true" to the exec definition.
>
> GS
> On 17/01/2014
Hi All,
I am not a programer or from the same background, trying to explore! Please
excuse if you find this question silly.
I was to exec a .bat file of if there are any changes to the files. Eg: i
am trying to activate windows with the valid keys, however this action is
required only once.
My
Hi All,
Hey All!
I am trying to understand how Mcollective actually works.
Say my master is a mcollective server! and i am running commands from the
same server itself.
i know that mcollective is a broadcast request to all the nodes in the
network.
Question is on what port this broadcast re
Hi Deep,
Not that i am aware off. As puppet is a pull job and not push. master dont
push any thing to puppet agent. All i am saying there may be a way of which
i am not aware!
I suggest include puppet agent installation as a part of OS installation, i
have included it in the VMware templates a
gt; things you can do
> a) write the docs yourself if you can or
> b) wait for someone else to do so
>
> On 12/06/2013 01:58 PM, kaustubh chaudhari wrote:
> > Rejecting is not a solution, at least you can redirect to some other
> > links where its used/fixed/confi
a new one if none
>> can be found.
>>
>> Regards,
>> Felix
>>
>> On 12/06/2013 01:46 PM, kaustubh chaudhari wrote:
>> >
>> > Hey Felix,
>> >
>> > Yes i have tried that!
>> >
>> > puppet cert clean will work
Hi,
I Agree with Philip and Felix!!
Some one might have implemented it with his own experience/try and error.
But if its not documented, than its like re-inventing the wheel again and
again!
Rejecting is not a solution, at least you can redirect to some other links
where its used/fixed/configu
Take a look at the below document!
http://docs.puppetlabs.com/guides/puppetlabs_package_repositories.html#for-red-hat-enterprise-linux-and-derivatives
Hope this helps!
-Kaustubh
On Friday, December 6, 2013 5:41:36 AM UTC-5, Felix.Frank wrote:
>
> Hi,
>
> what yum repositories are configured on
tried using puppet cert clean for this as well?
>
> According to the docs, it removes all files. This would include the
> unwanted CSR.
>
> HTH,
> Felix
>
> On 12/04/2013 02:44 PM, kaustubh chaudhari wrote:
> > Hi,
> >
> > I am using open source pu
g this issue.
>
> Which version of puppet is this?
>
> Regards,
> Felix
>
> On 12/04/2013 07:50 PM, kaustubh chaudhari wrote:
> > Ok,
> >
> > I understood my doubts partially!
> >
> > When we uninstall puppet agent from windows box
request is getting accepted by master?
Can someone please help me to understand this!
-Kaustubh
On Wednesday, December 4, 2013 1:28:26 PM UTC-5, kaustubh chaudhari wrote:
>
> Hi,
>
> Auto sign is not configured.
>
> 1. installed puppet agent on a windows box.
> 2. accepted the
Hi,
Auto sign is not configured.
1. installed puppet agent on a windows box.
2. accepted the certificate
3. uninstalled puppet agent from the windows box.
4. puppet cert clean "wintest"
5. puppet node clean "wintest"
6 puppet node deactivate "wintest"
7. install puppet agent on windows box(did n
Hi,
I am using open source puppet.
How can i reject a certificate request generated by agent on the master.
I can see the cert request in :
puppet cert list
However i wish to reject the request so that next time i run the same
command, i dont see the garbage(unwanted requests)
I know this ca
ood 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/man
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:
>>
>> wh
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 ma
y-wise. Make sure you are aware of all implications. Secure your
> master. Check to see if there is a more robust solution for you.
>
> Regards,
> Felix
>
> On 12/02/2013 01:35 PM, kaustubh chaudhari wrote:
> > Thanks Neil,
> >
> > Ur answer did make
autosign and you are
> in business
> Neil
> On 29 Nov 2013 12:09, "kaustubh chaudhari" >
> wrote:
>
>> Hi All,
>>
>> Fairly new to puppet!
>>
>> I wanted to include puppet agent in a vmware template, Of course this can
>> be don
from what i have seen, this means you are not using the correct service
name.
Install NS Client on a windows box manually, go to run -> services.msc ->
Look for NS service in the properties of that you will see the service
Name, Use this service name if your code!
Hope this help!
-Kaustubh
Hi All,
Fairly new to puppet!
I wanted to include puppet agent in a vmware template, Of course this can
be done, but i have a question.
what about the certificates ? all the vms created with that template will
have the same certificate. How to fix that?
i am sure there is a solution but i dont
Thanks Deepak,
I will try that!!!
On Thursday, November 21, 2013 10:53:20 PM UTC-5, kaustubh chaudhari wrote:
>
> Hi,
>
> How can i export all the facts for all the nodes from puppetdb in cvs/xls
> format.
>
> My objective is to us Business Object or some other
Thanks for sharing!! :)
On Thursday, November 21, 2013 11:00:24 AM UTC-5, kaustubh chaudhari wrote:
>
> Sorry if this is a duplicate request. Unable to see my previous post,
> hence resending!
>
>
> I am trying to have a node request tab in puppet-dashboard in the open
>
Hi,
How can i export all the facts for all the nodes from puppetdb in cvs/xls
format.
My objective is to us Business Object or some other tool for creating my
infrastructure reports.
Can someone help/redirect me to the right documentation?
Kaustubh
--
You received this message because you a
Sorry if this is a duplicate request. Unable to see my previous post, hence
resending!
I am trying to have a node request tab in puppet-dashboard in the open
source version, In PE we have this tab to accept / reject node request.
Can we configure the same in open source puppet dashboard ?
Kau
Hi,
i am looking for configure a way to accept / reject node request using
puppet-dashboard.
I know this facility is available in PE, but i am trying to find a way to
do this in opensource version.
Is this possible?
Kausutbh
--
You received this message because you are subscribed to the G
83 matches
Mail list logo