Displaying 20 results from an estimated 26 matches for "nonreadable".
2002 Oct 21
1
Rsync and "ignore nonreadable" and timeout
Hi,
Can anyone send me an example config file that makes use of
ignore nonreadable
timeout 600
When I try to put this in a module - rsync seems happy but it
gets nasty logfile messages when a client connects to
the server.
Oct 19 20:30:14 4T:sv1 rsyncd[3706636]: params.c:Parameter() - Ignoring badly fo
rmed line in configuration file: ignore nonreadable
Oct 19 20:30:14 4T:sv...
2001 Nov 13
0
forced copying of non readable file
...uate it before fully using it for implementation for
mirrroring our mail server. Some of my question from my previous mail are
now solved. the last question that i left here before fully implement my
mirror is regarding the copying of non readable file in the server. You have
an option "ignore nonreadable" that used to bypass unreadable file an dnt
show any error message to that. But what if that file is important and
should be copied for mirroring . In short can rsync be able to forced
nonreadable file or folder to be copied in a remote mirror server or a
backup server?
I've been encounter...
2007 Feb 13
1
rsync on . from backuppc
...path = /
use chroot = no
lock file = /var/lock/rsyncd
read only = no
list = yes
uid = root
gid = root
auth users = backuppc
secrets file = /etc/rsyncd.secrets
strict modes = no
ignore errors = yes
ignore nonreadable = yes
transfer logging = no
timeout = 600
dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz
And the corresponding .pl file in /etc/backuppc on the server:
$Conf{RsyncShareName} = ['all'];
$Conf{BackupFilesExclude} ={
'all' =>...
2012 Jan 03
7
Low performance
...nfiguration:
----------
read only = false
use chroot = false
hosts allow = 10.99.11.0/24
[Daten1]
path = /var/daten1
use chroot = yes
read only = yes
list = yes
uid = root
gid = root
strict modes = yes
ignore errors = no
ignore nonreadable = yes
transfer logging = no
timeout = 600
refuse options = checksum dry-run
dont compress = *
----------
machine B runs:
/usr/bin/rsync -ax --numeric-ids --delete --delete-excluded \
--exclude-from=/Backup/RB_None.excl \
--link-dest=/Backup/Base/xxxxx \...
2003 Mar 02
1
rsync2.5.6 can't find system config file
...is my rsyncd.conf file
uid = nobody
gid = nobody
# use chroot = no
max connections = 4
syslog facility = local5
pid file = /var/run/rsyncd.pid
motd file = /etc/rsyncd.motd
[ftp]
path = /var/ftp/pub
comment = whole ftp area
read only = yes
list = yes
ignore nonreadable = yes
[movies]
path = /var/ftp/pub/movies
comment = Movies and Video Clips
[slides]
path = /var/ftp/pub/slides
comment = Slides and Pictures (requires authentication)
auth users = chare, hawkins
secrets file = /etc/rsyncd.secrets
uid = 500...
2002 Feb 24
2
Write-only option
...+ {"write only", P_BOOL, P_LOCAL, &sDefault.write_only, NULL, 0},
{"list", P_BOOL, P_LOCAL, &sDefault.list, NULL, 0},
{"use chroot", P_BOOL, P_LOCAL, &sDefault.use_chroot, NULL, 0},
{"ignore nonreadable",P_BOOL, P_LOCAL, &sDefault.ignore_nonreadable, NULL, 0},
@@ -342,6 +345,7 @@
FN_LOCAL_STRING(lp_path, path)
FN_LOCAL_STRING(lp_lock_file, lock_file)
FN_LOCAL_BOOL(lp_read_only, read_only)
+FN_LOCAL_BOOL(lp_write_only, write_only)
FN_LOCAL_BOOL(lp_list, list)
FN_LOCAL_BOOL(lp_us...
2003 Mar 11
0
PATCH: rsyncd.conf permission options
...49 431 988-1260
-------------- next part --------------
diff -ur rsync-2.5.5/loadparm.c rsync-2.5.5-umask/loadparm.c
--- rsync-2.5.5/loadparm.c Mon Mar 25 05:04:23 2002
+++ rsync-2.5.5-umask/loadparm.c Sun Mar 2 22:53:16 2003
@@ -140,6 +140,10 @@
int timeout;
int max_connections;
BOOL ignore_nonreadable;
+ int create_mask;
+ int force_create_mode;
+ int directory_mask;
+ int force_directory_mode;
} service;
@@ -180,7 +184,11 @@
"*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz", /* dont compress */
0, /* timeout */
0, /* max connections */
- False /* ign...
2002 Jun 18
2
rsyncd + scripting
Hey all,
Like a lot of folks, I use rsync to pull content out to production web
servers. Tastes great, less filling.
Here's what I'd like to be able to do: Sometimes a web tree is not ready
to sync, for whatever reason. I have many modules available, so stopping
ryncd is not an option. I'd like to be able to tell rsync in daemon mode
"this particular module is not available at
2003 Feb 12
2
rsync & ldap authentication
...@@ -96,6 +102,11 @@
char *pid_file;
int syslog_facility;
char *socket_options;
+ char *ldap_server;
+ int ldap_port;
+ char *ldap_root;
+ char *ldap_root_passwd;
+ char *ldap_suffix;
} global;
static global Globals;
@@ -133,6 +144,13 @@
int timeout;
int max_connections;
BOOL ignore_nonreadable;
+ char *ldap_filter;
+ char *ldap_passwd_attribute;
+ char *ldap_auth_usergroup;
+ char *ldap_auth_users_attribute;
+#ifdef WITH_MANGLE_USER
+ char *mangle_user;
+#endif
} service;
@@ -164,7 +182,15 @@
"*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz", /* dont compress */...
2003 Jun 07
1
patch to rsync to add options for pre- and post-transfer commands
...-b --context rsync-2.5.6.orig/loadparm.c rsync-2.5.6/loadparm.c
*** rsync-2.5.6.orig/loadparm.c 2002-08-30 17:27:26.000000000 -0600
--- rsync-2.5.6/loadparm.c 2003-04-27 20:25:42.000000000 -0600
***************
*** 140,145 ****
--- 140,147 ----
int timeout;
int max_connections;
BOOL ignore_nonreadable;
+ char *prescript;
+ char *postscript;
} service;
***************
*** 180,186 ****
"*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz", /* dont compress */
0, /* timeout */
0, /* max connections */
! False /* ignore nonreadable */
};
---...
2003 May 03
0
Storing rsync secrets in LDAP
...cility;
char *socket_options;
+ char *ldap_server;
+ int ldap_port;
+ char *ldap_root;
+ char *ldap_root_passwd;
+ char *ldap_suffix;
} global;
static global Globals;
@@ -138,6 +149,13 @@
int timeout;
int max_connections;
BOOL ignore_nonreadable;
+ char *ldap_filter;
+ char *ldap_passwd_attribute;
+ char *ldap_auth_usergroup;
+ char *ldap_auth_users_attribute;
+#ifdef WITH_MANGLE_USER
+ char *mangle_user;
+#endif
} service;
@@ -169,7 +187,15 @@
"*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *...
2004 Sep 10
1
not always making hard links?
...owing rsyncd.conf:
pid file=/var/run/rsyncd.pid
[pub]
comment = public archive
path = /extra/pub
use chroot = yes
max connections=1
lock file = /var/lock/rsyncd
read only = no
list = yes
uid = mirror
gid = nogroup
strict modes = yes
hosts allow = 192.168.1.1
ignore errors = no
ignore nonreadable = yes
transfer logging = no
timeout = 6000
refuse options = checksum dry-run
dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz
The sender is the following command line:
rsync -avz --bwlimit=5000 /extra/pub/ 192.168.1.73::pub
Virtual memory usage is 2776MB :-)
Another th...
2008 Jun 20
1
pre/post-xfer exec not executed ?
...file = /snapshots/log/rsyncd.log
lock file = /snapshots/tmp/rsyncd.lock
refuse options = rsync-path,rsync path
[myhost]
path = /snapshots/data/hosts/myhost
comment = Sauvegardes de myhost
hosts allow = 127.0.0.1
read only = no
write only = no
ignore nonreadable = yes
refuse options = checksum
exclude from = /snapshots/conf/myhost.exclude
log file = /snapshots/log/myhost.rlog
pre-xfer exec = /snapshots/conf/pre-xfer.sh
post-xfer exec = /snapshots/conf/post-xfer.sh
auth users = myhost
2009 Jun 16
0
ai_family not supported
...to rsync daemon via inetd.
reading works fine.
inetd.conf looks like this:
rsync stream tcp nowait root /path/rsync rsync --daemon --log-file=/tmp/rsync.log --config=/path/rsyncd.conf -vv
rsyncd.conf looks like this:
pid file=/tmp/rsyncd.pid
use chroot = no
list = yes
ignore errors = no
ignore nonreadable = yes
transfer logging = no
uid = root
gid = root
strict modes = no
[backup]
comment = backup
path = /path/backup/
read only = no
what does that error mean and how can this be solved ?
regards
roland
___________________________________________________________________
WE...
2005 Mar 28
4
batch mode error
Anyone,
When attempting to use batch mode to update a
second host by executing the .sh file I get:
[root@sspfedweb batch]# ./obsession_0000.sh
Batch file ./batch/obsession_0000.rsync_flist open error: No such file or directory
rsync error: syntax or usage error (code 1) at batch.c(241)
Can anyone tell me whatI'm doing wrong.
I tar and gzip the batch directory and ftp to the target
2003 Mar 22
0
Where did the files go?
...mment = My Very Own Root Rsync Server
uid = root
gid = root
read only = no
list = yes
#lock file = /var/lock/rsyncd
#max connections = 10
#auth users = root
#secrets file = /etc/rsyncd.secrets
hosts allow = 192.168.0.0/254 127.0.0.1/16 66.93.0.226 65.107.80.205
#ignore nonreadable = yes
#refuse options = checksum, dry-run
#dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz
and here is the command I ran and where did I go wrong?
[root@amy livonia]# rsync -avz --rsh=ssh root@mydomain.com:/home/anderson/ --exclude bak/
root@mydomain.com's password:...
2002 Nov 11
11
Speed problem
Mermgfurt !
I have some problem with syncing two machines which are connected
over a Gigabit-connection. I'm trying to use rsync with ssh because of
the authorisation mechanisms (keys). It starts quite ok with 18 MB/s
(this small speed may have something to do with our internal net)
and falls down to 400 KB/s (!!!). This happens over a long period
because those files I want to copy are very
2009 Aug 14
2
rsyncd.conf chroot yes problem with symlink-ing
...ter :
uid =
root
gid = root
use chroot = yes
max verbosity = 1
lock file = 1
read only
= false
write only = false
list = true
port = 873
address = 10.99.1.1
max
connections = 0
munge symlinks = false
log file =
/etc/scripts/rsync/rsync.log
hosts allow = 10.99.1.0/30
ignore errors =
false
ignore nonreadable = false
transfer logging = yes
timeout =
600
[home]
path = /home/
[mail]
path = /etc/virtual/
... and on the
slave the rsync command looks like :
rsync -vrulpHEtzhi4ogk -L
--copy-links rsync://root at 10.99.1.1::/home /home/
and the symlink message
:
root at ph:/# rsync -vrulpHEtzhi4ogk -L...
2004 Feb 12
1
[PATCH] write only
...+ {"write only", P_BOOL, P_LOCAL, &sDefault.write_only, NULL, 0},
{"list", P_BOOL, P_LOCAL, &sDefault.list, NULL, 0},
{"use chroot", P_BOOL, P_LOCAL, &sDefault.use_chroot, NULL, 0},
{"ignore nonreadable",P_BOOL, P_LOCAL, &sDefault.ignore_nonreadable,
NULL, 0},
@@ -353,6 +356,7 @@ FN_LOCAL_STRING(lp_comment, comment)
FN_LOCAL_STRING(lp_path, path)
FN_LOCAL_STRING(lp_lock_file, lock_file)
FN_LOCAL_BOOL(lp_read_only, read_only)
+FN_LOCAL_BOOL(lp_write_only, write_only)
FN_LOCAL_BOO...
2004 May 09
2
2.6.2 not displaying permissions errors on client side
...to be accessed
# exclude from =
# include =
# include from =
# auth users = #allow specific users to connect (besides anonymous)
# secrets file = /etc/rsyncd.secrets
# strict modes = yes #makes sure the secrets file has proper permissions
# hosts allow =
# hosts deny =
ignore errors = no
ignore nonreadable = no
transfer logging = no
# log format = %t: host %h (%a) %o %f (%l bytes). Total %b bytes.
# timeout = 600
# refuse options = checksum, dry-run
dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz