search for: pclient

Displaying 20 results from an estimated 20 matches for "pclient".

Did you mean: client
2011 Jan 10
7
Could not request certificate: No route to host?
Hi, I''m getting this message "Could not request certificate: No route to host - connect(2)" when I''m trying to connect my pclient to pmaster. I checked my hostnames for both the pclient and the pmaster: [root@pclient etc]# hostname -f pclient.domain [root@pmaster etc]# hostname -f pmaster.domain I tried requesting for certificate: [root@pclient etc]# puppetd --server pmaster.domain --no-daemonize -- waitforcert 60 --verbos...
2013 May 30
4
Could not request certificate: Error 405 on SERVER
...s it was already done for me in past environments. I am running into an issue while trying to set puppet up for the first time on RHEL 6.4. I was hoping y''all might be able to help me! I get the following error from the puppet client''s /var/log/messages log: May 30 07:06:30 pclient puppet-agent[1458]: Creating a new SSL certificate request for pclient May 30 07:06:30 pclient puppet-agent[1458]: Certificate Request fingerprint (SHA256): 62:1A:83:7D:DA:8B:A5:4B:14:D8:85:CF:D2:87:72:FA:88:9C:F5:88:46:28:3D:59:10:99:30:D8:50:9D:7A:2E May 30 07:06:30 pclient puppet-agent[1458]:...
2012 Jul 18
4
cert issues, puppet agent applying configs, problems oh my!
...ght? Until I try to run it for real: [root@ip-10-*~]# puppet agent --verbose dnsdomainname: Unknown host dnsdomainname: Unknown host Could not prepare for execution: Could not create PID file: /var/run/puppet/agent.pid I also tried forcing it down from the master to no avail: # puppetrun --host pclient Triggering pclient Host pclient failed: hostname was not match with the server certificate pclient finished with exit code 2 Failed: pclient Then I tried: # puppetd --verbose --no-daemonize --onetime dnsdomainname: Unknown host dnsdomainname: Unknown host notice: Ignoring --listen on onetime run...
2014 Mar 13
2
[PATCH] nouveau: safen up nouveau_device list usage against concurrent access
...device_del(struct nouveau_device **pdev) if (nvdev->close) drmClose(nvdev->base.fd); free(nvdev->client); + pthread_mutex_destroy(&nvdev->lock); free(nvdev); *pdev = NULL; } @@ -191,6 +198,8 @@ nouveau_client_new(struct nouveau_device *dev, struct nouveau_client **pclient) int id = 0, i, ret = -ENOMEM; uint32_t *clients; + pthread_mutex_lock(&nvdev->lock); + for (i = 0; i < nvdev->nr_client; i++) { id = ffs(nvdev->client[i]) - 1; if (id >= 0) @@ -199,7 +208,7 @@ nouveau_client_new(struct nouveau_device *dev, struct nouveau_client **p...
1997 Jul 29
1
Net use problem (fwd)
> Has anyone experienced this problem? > > Server: Solaris 2.5 system with a fresh install of Samba 1.9.16p11. > Clients: WinNT 4.0 and Win95 > > When we net use e: \\javaws1\pclient, Error: network name cannot be > found. > > However, we net use e: \\javaws1\userid, the connect is successful. > > After doing that... > When we net use f: \\javaws1\pclient, the connection is successful. > > Any clues are appreciated. > > ----- > BELOW is my...
2007 Jul 05
10
Wierd issue with node declaration
I have the following in my site.pp node "pclient.example.com" inherits default {} When I try to start puppetmaster it gives me the following error Starting puppetmaster: Syntax error at ''pclient.example.com'' at /etc/puppet/manifests/site.pp:24 When I change the node declaration to this node ''pclient.example.com...
2012 Feb 12
1
Using templates
...vice ssh::config{puppet: port => $port} } And in the nodes.pp: node default { include ssh ssh{ puppet: port => 3536 } } When I run puppet agent --no-daemonize --verbose --onetime I got: err: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find class ssh for pclient.testlab.dev at /etc/ puppet/manifests/nodes.pp:2 on node pclient.testlab.dev Tell me, please, how to pass parameter to the class from node? Thanks, Andrey. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send em...
2011 Jul 08
2
Puppetmaster setup with separate CA server configuration help
Hi All, I am setting up puppetmaster with nginx and passenger and separating the Puppetmaster primary CA server. I have 3 host loadbalancer01 - Nginx doing LB on IP address and also running puppetmaster with passenger under 127.0.0.1 (port 8140). primaryca - Puppetmaster Primary CA pclient - Puppet Client The did the following steps: On Primary CA server: ---------------------------- cd /var/lib/puppet/ puppetca generate puppet cert -g loadbalancer01 -- certdnsnames=puppetmaster:loadbalancer01 puppet cert -g primaryca --certdnsnames=puppetmaster:primaryca scp private_keys/loadba...
2014 Apr 08
0
[PATCH] libdrm/nouveau: safen up nouveau libdrm against concurrent access
..._del(struct nouveau_device **pdev) if (nvdev->close) drmClose(nvdev->base.fd); free(nvdev->client); + pthread_mutex_destroy(&nvdev->lock); free(nvdev); *pdev = NULL; } @@ -191,6 +198,8 @@ nouveau_client_new(struct nouveau_device *dev, struct nouveau_client **pclient) int id = 0, i, ret = -ENOMEM; uint32_t *clients; + pthread_mutex_lock(&nvdev->lock); + for (i = 0; i < nvdev->nr_client; i++) { id = ffs(nvdev->client[i]) - 1; if (id >= 0) @@ -199,7 +208,7 @@ nouveau_client_new(struct nouveau_device *dev, struct nouveau_clie...
2014 Jul 31
1
[libdrm PATCH 1/3] nouveau: Only export public functions.
...etparam(struct nouveau_device *dev, uint64_t param, uint64_t value) { struct drm_nouveau_setparam r = { param, value }; return drmCommandWrite(dev->fd, DRM_NOUVEAU_SETPARAM, &r, sizeof(r)); } -int +drm_public int nouveau_client_new(struct nouveau_device *dev, struct nouveau_client **pclient) { struct nouveau_device_priv *nvdev = nouveau_device(dev); @@ -229,7 +229,7 @@ unlock: return ret; } -void +drm_public void nouveau_client_del(struct nouveau_client **pclient) { struct nouveau_client_priv *pcli = nouveau_client(*pclient); @@ -245,7 +245,7 @@ nouveau_client_del(struct n...
2011 Jan 11
1
Err: Could not retrieve catalog
Hi everyone, I''ve managed to sign my client''s certificate request on the puppet master, and all seems fine until this message shows up: err: Could not retrieve catalog from remote server: certificate verify failed notice: Using cached catalog err: Could not retrieve catalog; skipping run notice: Caught INT; calling stop I''ve read through old posts about this error,
2016 Apr 25
3
Kernel panic in dovecot-ee-lmtp on Debian 8
Hi list I just realized that that I don not receive all mails in my mailbox (running dovecot-ee 2.2.23.1-1 on Debian 8). On my frontend servers (running postfix) the queue fills up with mails that cannot be delivered via lmtp to my backend servers. The error message on the frontend is "lost connection with backend while sending data" When I checked the logs on the backend server I found
2009 Dec 03
1
Could not retrieve catalog
...te.pp file: # Create "/tmp/testfile" if it doesn''t exist. class test_class { file { "/tmp/testfile": ensure => present, mode => 644, owner => root, group => root } } # tell puppet on which client to run the class node pclient { include test_class } Client''s puppet.conf file: [main] # Where Puppet stores dynamic and growing data. # The default value is ''/var/puppet''. vardir = /var/lib/puppet pluginsync=false # The Puppet log directory. # The default value is ...
2010 Dec 14
1
Error after signing certificate step
...AWS which will be something like... puppetmaster Private DNS: ip-10-203-66-29.ec2.internal Private IP Address: 10.203.66.29 puppetclient Private DNS: ip-10-243-6-14.ec2.internal Private IP Address: 10.243.6.14 So in /etc/hosts on both I add... 10.203.66.29 puppet.mydomain.com puppet 10.243.6.14 pclient.mydomain.com pclient I create a basic site.pp manifest on the master and restart it. Then on the client I run... sudo puppetd --server puppet.mydomain.com --waitforcert 60 --test On the master I run... sudo puppetca --list I see the client request and sign it. Back on the client I see it get...
2004 Aug 17
0
authentication problem
...drivers] path = /home/printdrivers read only = No guest ok = Yes [print$] path = /etc/samba/drivers write list = root, @Administrators, GOLDER\KKroeker, GOLDER\RKroeker guest ok = Yes browseable = No [bstinput] path = /home/bst write list = GOLDER\bstdba read only = No guest ok = Yes [pclient_golder] path = /home/printclient/golder read only = No [pclient_littlerock] path = /home/printclient/littlerock guest ok = Yes browseable = No [pclient] path = /home/printclient/golder read only = No [printqmonitor] path = /home/printqmonitor valid users = GOLDER\RKroeker, rkroeker rea...
2015 Nov 26
0
[libdrm 08/13] nouveau: make use of nouveau_drm::fd instead of nouveau_device::fd
...struct drm_nouveau_setparam r = { .param = param, .value = value }; - return drmCommandWrite(dev->fd, DRM_NOUVEAU_SETPARAM, &r, sizeof(r)); + return drmCommandWrite(drm->fd, DRM_NOUVEAU_SETPARAM, &r, sizeof(r)); } int @@ -417,6 +408,7 @@ nouveau_client_del(struct nouveau_client **pclient) static void nouveau_bo_del(struct nouveau_bo *bo) { + struct nouveau_drm *drm = nouveau_drm(&bo->device->object); struct nouveau_device_priv *nvdev = nouveau_device(bo->device); struct nouveau_bo_priv *nvbo = nouveau_bo(bo); struct drm_gem_close req = { .handle = bo->handl...
2015 Nov 27
14
[libdrm v2 01/14] nouveau: import and install a selection of nvif headers from the kernel
From: Ben Skeggs <bskeggs at redhat.com> This commit also modifies the install path of the main libdrm_nouveau header to be under a nouveau/ subdirectory. Signed-off-by: Ben Skeggs <bskeggs at redhat.com> --- include/drm/nouveau_drm.h | 1 + nouveau/Makefile.am | 11 +++- nouveau/libdrm_nouveau.pc.in | 2 +- nouveau/nvif/cl0080.h | 45 ++++++++++++++
2015 Nov 26
18
[libdrm 01/13] nouveau: move more abi16-specific logic into abi16.c
From: Ben Skeggs <bskeggs at redhat.com> Signed-off-by: Ben Skeggs <bskeggs at redhat.com> --- nouveau/abi16.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++----- nouveau/nouveau.c | 56 +++++++------------------------------------------ nouveau/private.h | 7 ++----- 3 files changed, 67 insertions(+), 58 deletions(-) diff --git a/nouveau/abi16.c b/nouveau/abi16.c index
2016 Sep 16
0
[ANNOUNCE] xorg-server 1.18.99.2
...ary on darwin Xquartz: Update for removal of AddEnabledDevice and RemoveEnabledDevice Xext/shm: Fix usage of F_GETFD to match standard os/inputthread: Fix setting of cloexec on file descriptors dix/dispatch: Fix SmartScheduleClient interval adjustment to use best rather than pClient Jon TURNEY (1): Fix build on Cygwin by ensuring WIN32 check triggers only on MinGW Jon Turney (43): xwin: Fix format warnings when ./configured --enable-debug --enable-windowswm xwin: XGetWMNormalHints() returns non-zero on success xwin: Improve handling of no-decoration m...
2015 Dec 16
16
[libdrm v3 01/14] nouveau: import and install a selection of nvif headers from the kernel
From: Ben Skeggs <bskeggs at redhat.com> This commit also modifies the install path of the main libdrm_nouveau header to be under a nouveau/ subdirectory. Signed-off-by: Ben Skeggs <bskeggs at redhat.com> --- include/drm/nouveau_drm.h | 1 + nouveau/Makefile.am | 11 +++- nouveau/libdrm_nouveau.pc.in | 2 +- nouveau/nvif/cl0080.h | 45 ++++++++++++++