similar to: Rsyncd.conf

Displaying 20 results from an estimated 800 matches similar to: "Rsyncd.conf"

2004 Oct 19
5
Making Red Hat 3 Authenticate against AD Domain
I have a Red Hat 3 AS server I am trying to set Samba 3 up on. I want to use the homes function of Samba and I want user's to authenticate against my AD domain. I am having a problem making the server a member server of my domain. I tried using the smbpasswd command and got the error about trying net join for this action. Also, is there anything else I have to do to get my users to
2001 Dec 18
1
Problem connecting
I just finished installing rsync on one of my servers. But when I go to do a test connection via "rsync web1::" I get the following error rsync: failed to connect to web1: Connection refused rsync error: error in socket IO (code 10) at clientserver.c(84)
2002 Jan 12
2
Error Message!!
When rsync starts I get the following messages in my log file Jan 11 11:00:04 WEB1 rsyncd[31281]: rsync: bind failed on port 873 Jan 11 11:00:04 WEB1 rsyncd[31281]: rsync error: error in socket IO (code 10) at socket.c(361) Anybody know what might be causing this? David
2002 Sep 30
4
2 plots sharing axis / combining factors
Dear R users, - Is it possible to produce a figure with 2 plots that they share one of the axis, e.g., the y-axis? I did not succeed by setting mai[4] <- 0. Is there a simple way? - How could I convert 2 factor variables in a single factor variable which is the combination of the other 2. Example: lith: a factor 2 levels "ca", "ma" sp: a factor with 2 levels,
2002 Jan 24
3
SSH
I added the enviroment variable RSYNC_RSH=ssh and every things seems to work fine, but there is no way to tell if rsync is actually using ssh or not?
2001 Sep 07
2
Newbie to rsync
Hi All I have compiled rsync on a Solaris 5.5.1 machine1 . I have compiled this on a partition on the machine as root. I have done the following shared the Partition on the machine i have compiled. mounted this partition this partition on the machine2 where I need to rsync data then When I issue the command on machine2 as rsync -avz machine2:/x machine3: It gives me sh :rsync not found EOF
2003 Apr 16
2
Files Show in Windows but not on the Red Hat server
*I just recently migrated our web server to Red Hat 8.0 running Samba 2.2.7 from FreeBSD 4.2 running Samba 2.2.3a. In windows, a user copy or moves files to there home directory on the server running samba. The file seems to copy or move fine (It is visible when accessing the share from explorer), but if I telnet to the server the file is not in the user's home directory. I have tailed the
2000 Aug 08
2
Can't get in without a password
I have access to three machines: A: Mandrake 7.0, OpenSSH 2.1.1. B: Mandrake 5.3, SSH 1.2.27. C: Mandrake 6.1, OpenSSH 2.1.1. I can get from A to B, or B to A, without a password, but I cannot get from A or B to C without a password. sshd_config is identical on A and C. My public key is in authorized_keys on C, and all files in .ssh and .ssh itself have mode 600 and 700 respectively. C is behind
2005 Apr 26
5
[Bug 2647] --exclude options work from commandline but not in script
https://bugzilla.samba.org/show_bug.cgi?id=2647 ------- Additional Comments From vanes002@umn.edu 2005-04-25 18:50 ------- A possible explanation is if the single-quotes are being retained in the --exclude values instead of being removed by whatever shell you are using for scripting. So rsync tries to exclude '/proc/' instead of /proc/ In your case, the quotes aren't even
2006 Jul 07
3
Rsync over samba mounts (bad file descriptor)
Hello everyone I am trying to do incremental backups using rsync and SSH. I have a windows server with two shares on it that I want to sync remotely to another machine. [----------------] | windows server | [----------------] [----------------] | FreeBSD server | [----------------] [----------------] | SuSe server | [----------------] I have two samba mounted shares on the BSD server,
2010 Apr 16
1
data frame manipulation
Dear group, Here is my data.frame : df <- structure(list(DESCRIPTION = c("PRM HGH GD ALU", "PRM HGH GD ALU", "PRIMARY NICKEL", "PRIMARY NICKEL", "PRIMARY NICKEL", "PRIMARY NICKEL", "STANDARD LEAD ", "STANDARD LEAD ", "STANDARD LEAD ", "STANDARD LEAD ", "STANDARD LEAD ",
2002 May 29
1
Rsync doing nothing and no error message
Hi * I'm using rsync to mirror software from one Sun Workstation (mecc27) to the other (mecc29). (solaris 5.7) worked perfect... 'til 1 week ago !! Everybody claims nothing has been changed in the configs of the machines (couldn't find anything, though), but rsync is doing nothing at all. just after being called it exits without any error message, warning, whatever.. here the log
2017 Jan 31
5
net ads and wbinfo are painfully slow -- but they work
On Tue, Jan 31, 2017 at 12:36 PM, Rowland Penny via samba <samba at lists.samba.org> wrote: > time net ads testjoin > Join is OK > > real 0m0.476s > user 0m0.108s > sys 0m0.008s Yes, I know... I have a similar setup (same version of samba, same hardware, same OS but a different windows domain on a different network) that is working fine. > Is the Windows AD
2002 Jan 23
1
Whats wrong!!
When I run are sync with "-e ssh" I get an error telling me the -e options is ignored connecting to the rsync daemon. It then proceeds. Also how can I automate entering the passwd with a script (perl).Thanks
2002 Jan 16
1
SSH Error
I created a user on the machine I am attempting to mirror. I when I run rsync with this user I get the following errors "receiving file list ... link_stat www : No such file or directory done client: nothing to do: perhaps you need to specify some filenames or the --recursive option? rsync error: partial transfer (code 23) at main.c(553)" here is my conf file ## use chroot = no max
2010 Apr 23
3
substract start from the end of the vector
Dear group, Here is my df : df <- structure(list(DESCRIPTION = c("PRM HGH GD ALUMINIUM USD 09/07/10 ", "PRM HGH GD ALUMINIUM USD 09/07/10 ", "PRIMARY NICKEL USD 04/06/10 " ), CREATED.DATE = structure(c(18361, 18361, 18325), class = "Date"), QUANITY = c(-1L, 1L, 1L), CLOSING.PRICE = c("2,415.90", "2,415.90",
2010 Apr 15
1
sum rows in a data.frame...solution
Found this solution. It is maybe not the most elegant way, but it does the job. > a=as.data.frame(substr(lme$DESCRIPTION,1,14)) > colnames(a)=c("DESCRIPTION") > lme=as.data.frame(c(a,lme[,2:3])) > lme DESCRIPTION CLOSING.PRICE POSITION 1 PRIMARY NICKEL 25,755.7100 0 2 PRIMARY NICKEL 25,760.8600 0 3 PRM HGH GD ALU 2,415.9000 0
2010 Apr 29
3
convert Factor as numeric
Dear group, I know this issue has been already covered, and before you reply I must say I have read the R-FAQ and search the mailing list archive. I still can't manage to change my factor to numeric as I couldn't find any clear answer. Here is my df : Pose1 <- structure(list(DESCRIPTION = structure(c(1L, 2L, 3L, 4L, 5L, 8L), .Label = c(" SUGAR NO.11 May/10 ", "COTTON
2007 Feb 01
5
Interesting interaction between source and ensure in file definition in function...
Given the following: file { "/my/file": source => "puppet://server/path/to/some/file", ensure => absent } Puppet will copy /my/file to the host. What I was hoping was that ensure => absent would trump a source file. However, if we change the above slightly like this: file { "/my/file": source =>
2003 Mar 28
2
rsync ignoring some new files
I have found several instances where rsync refuses to copy a new file. I am using it to sync changes from a staging web server to production servers, and there are certain files that it just plain won't copy. The file is totally new. No such name has ever existed on the target server(, or on the source server until now). In this instance, I added 3 completely new files to the same