similar to: ssh-agent and rdist

Displaying 20 results from an estimated 1200 matches similar to: "ssh-agent and rdist"

2004 Feb 19
1
Rsync and rdist-like specials
Greetings, We manage a large farm of systems and push changes, patches, new software, etc. out to our clients using kerberized rdist. It's clunky and slow but it's got the magic of specials. Using a special one can tell rdist that if a particular file changes, preform this command. So, if we make a change to httpd.conf, we can tell rsync to bounce httpd. If httpd.conf hasn't change,
2001 Apr 16
1
openssh-2.3.0p1, Krb5 and rdist
Krb5-authentication and Kerb5-TGT-passing is working well with openssh-2.3.0p1. Question: Is there a solution using rdist -P "/usr/local/bin/ssh" without the need for RhostRSAAuthentication, RSAAuthentication or using the Kerberos r-command set? The objective is to do away with ".rhosts/.shost" and private-key authentication when Kerberos authentication is already in
2003 Jan 01
1
Simulating rdist?
rsync is great for syncing 2 directory trees, but I want to maintain a master source tree on one machine and copy that to multiple machines. i.e. basically what rdist does The only way I can see of doing this with rsync is to have multiple cron jobs 0 * * * * rsync ... machine1:... 0 * * * * rsync ... machine2:... ...and so on. Is there a more elegant/compact way of doing this? Thanks
2000 May 30
1
Unable to use rdist in parrellel mode with 2.1.0p2 ...
Morning all ... using the following command to sync up the binaries on several machines: rdist -P /usr/slocal/bin/ssh -Rf /root/sync-systems generates the following error message(s): jasper: updating host jasper hermes: updating host hermes attila: updating host attila hercules: updating host hercules ".rcules: LOCAL ERROR: Unexpected input from server: "Couldn't initialise
2012 Apr 27
15
puppet way of handling rdist and triggers
We have an existing "management system" of sorts, based on rdist. I''d like to know the best way to migrate it to using puppet. Currently, we have a local binaries tree, rdisted out nightly. We also make use of rdist''s extra capability to trigger scripts when and if named files are updated. I''m not sure what the best method would be, of converting this to
2000 Aug 17
2
OpenSSH and HP-UX
My system: HP-UX 10.20, pretty vanilla, most non-HP software from the HP Porting Archive at hpux.cae.wisc.edu. GNU make is /usr/local/bin/gmake, zlib is in /opt/zlib, OpenSSl in /opt/openssl, HP ANSI C compiler. OpenSSH 2.2.1p4. 'configure' on this system warns that rsa is not available. I found source at www.spinnaker.com which builds an rsaref.a library but not an RSAglue one. So
2000 Feb 21
0
SAMBA 2.0.6 vs HP's ASU/9000 LanMan (battle rages on)
Found the solution to my 2.0.6 dying on me on SGI - SYSV_IPC needed to be #undef'ed in source/include/includes.h in favor of MMAP, seems to have fixed it. If I run the daemon in server mode, no prob. If I switch to domain mode (and use smbpasswd to join into the domain, per the instructions), I get the error indicating that the username/password pair was incorrect, as if I typed in a wrong
1999 Oct 01
3
Compiling SAMBA 2.0.5a on HP-UX 11
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Trying to run ./configure and after a while of chugging along, I get this: checking for four-argument statfs (AIX-3.2.5, SVR3)... no checking for two-argument statfs with statfs.fsize member (4.4BSD and NetBSD)... no checking for two-argument statfs with struct fs_data (Ultrix)... no checking if large file support can be enabled no checking
2017 May 19
0
[OT] how to give ssh options to rdist
Hello, I'm trying to configure rdist over ssh so that it connects at target side as a particular user. I'm using CentOS 7.3 on both ends (I also tested with Fedora 25 with the same behavor) So I create at source side the file ~/.ssh/config under mysourceuser home Host targetsrv.localdomain.local HostName targetsrv.localdomain.local User mytargetuser Then, connected as
2004 Apr 04
1
How to improve this code?
Hi all, I've got some functioning code that I've literally taken hours to write. My 'R' coding is getting better...it used to take days :) I know I've done a poor job of optimizing the code. In addition, I'm missing an important step and don't know where to put it. So, three questions: 1) I'd like the resulting output to be sorted on distance (ascending) and
2011 Nov 07
1
How do I return to the row values of a matrix after computing distances
## Package Needed library(fields) ## Assumptions set.seed(123) nsim<-5 p<-2 ## Generate Random Matrix G G <- matrix(runif(p*nsim),nsim,p) ## Set Empty Matraces dmax and dmin dmax<- matrix(data=NA,nrow=nsim,ncol=p) dmin<- matrix(data=NA,nrow=nsim,ncol=p) ## Loop to Fill dmax and dmin for(i in 1:nsim) { dmax[i]<- max(rdist(G[i,,drop=FALSE],G)) dmin[i]<-
2004 Apr 06
1
k nearest neighbours
I want to 1) Select for each of the n points in a matrix A, those of the m points in B that lay within a given radius. 2) Of those points within the radius, select the k nearest ones. What I now do is 1) Create an n*m matrix C were I put the distances from all the points in B to the points in A and make NA those cells were the distance is larger than the radius. (The points are geographical
2004 Feb 26
1
Distance and Aggregate Data - Again...
I appreciate the help I've been given so far. The issue I face is that the data I'm working with has 53000 rows, so in calculating distance, finding all recids that fall within 2km and summing the population, etc. - a) takes too long and b) have no sense of progress. Below is a loop that reads each recid one at a time, calculates the distance and identifies the recids that fall within 2
2002 Aug 08
0
Bugzilla bug entry #342
I may have found a similar issue with plain old RSAAuthentication. After upgrading to 3.4p1 on Solaris 8, I am no longer able to use RSAAuthentication with PermitRootLogin forced-commands-only Following is output from sshd -d -d: Connection from 10.100.100.8 port 39955 debug1: Client protocol version 2.0; client software version OpenSSH_3.4p1 debug1: match: OpenSSH_3.4p1 pat OpenSSH* Enabling
2008 Oct 06
1
easier way to do this without a loop? (successive euclidean distances between points)
a <- c(1:10) b <- c(.5, .6, .9, 10, .4, 3, 4, 9, 0, 11) d <- c(21:30) z <- data.frame(a,b,d) library(fields) results <- c() for(i in 1:(length(rownames(z))-1)){ results[i] <- rdist(z[i,], z[(i+1),]) } results.1 <- data.frame(results) f <- rownames(z) r <- f[-1] rownames(results.1) <- r colnames(results.1) <- f[1] this does what I want it to do - is
2010 Sep 24
2
grep contents of file on remote server
Hello, I am attempting to grep the contents of a key file I have SCP'd to a remote server. I am able to cat it: [code] [bluethundr at LBSD2:~]$:ssh root at sum1 cat /root/id_rsa.pub root at lcent01.summitnjhome.com's password: ssh-rsa
2005 Apr 04
2
rsync is flaky going to Penang
Hello, We are experiencing flaky behavior from rsync when attempting to rsync directories/files to a server in Penang. Several times the job seems to 'hang' and never completes. Penang then is therefore missing a lot of required cad files. Have any of you experienced the same thing and what did you do to fix the problem? Does anyone know of a better tool to use? We chose
2002 Jan 26
5
[PATCH] Connect timeout
The attached patch adds a new 'ConnectTimeout' option (man page updated in patch) to avoid wasting time when the target host is down. I needed that because I was using rsync/rdist over ssh for massive files update and the default connect() took too long for my purpose. The patch was tested on Linux only, but I used a similar one for ssh 1.2.XX on Linux, Solaris and HP-UX without
2000 Dec 25
2
hostinstall target?
It would be very useful if openssh could have the same sort of hostinstall target that traditional ssh does. The ssh programs only have to be installed once, for central distribution via nfs or rdist or whatever, but every host needs its key ... Thanks for a great program. karl at gnu.org
2010 Mar 01
2
Force destination files to specific owner/group
Folks-- I'm working with an old system I set up to copy files from one local directory to another. I was using rdist for this, but I would prefer to shift it over to rsync. The one thing I'm missing is the trivial ability to force the group owernship of the destination files to a specific group. A read through the manpage and various searches on the web do not turn up any helpful hints