search for: desthost

Displaying 20 results from an estimated 31 matches for "desthost".

Did you mean: testhost
2009 Aug 03
1
the protect flag - P doesn't work with --relative option ?
...choose to use --filter option mentioned in rsync man pages. I noticed that --filter option works as expected when I don't have --relative option used but in below case it doesn't work. rsync -avz --relative --delete --filter='H /mydir2' --exclude='- /preserve' mydir1/. destHost:/tmp/mydir I want to sync "/tmp/mydir/mydir1", delete "mydir2" and protect and hide "preserve" directory on destination host. I noticed that rsync doesn't deletes the "mydir2" on destination host but if I remove --relative then it does. Could anyone tel...
2015 Jun 11
2
Migrating guests
Hi, I'm experimenting with the migration function of virsh. I'm doing the migrate with following commands: virsh migrate --life --persistent --copy-storage-all --verbose --abort-on-error domain qemu+ssh://root@destination/system virsh migrate-setmaxdowntime domain 20000 However sometimes at the end of the migration, the guest isn't started on the destination host. So I'm left
2009 May 19
2
incremental directory searche in rsync 3.0.6
...rsync 3.0.5/3.0.6 creates all the missing directories in the path but I think I am wrong. Could any one tell me is it possible to create all missing dirs in path at destination side if not exists. Currently, I have been getting below errors. rsync -avz /tmp/mytest/rsync-test/dir-test/parent-dir/ desthost:/tmp/mytest/rsync-test/dir-test/parent-dir/ sending incremental file list rsync: mkdir "/tmp/mytest/rsync-test/dir-test/parent-dir/" failed: No such file or directory (2) rsync error: error in file IO (code 11) at main.c(576) [receiver=3.0.6] rsync: connection unexpectedly closed (9 bytes...
2003 Dec 02
1
rsync -vt shows directories considered?
...seems to cause -v to show each directory that is considered, while -v without -t doesn't. Is this a known bug or intended feature? Or is there a way to defeat this? I'd like -v to show the files transmitted, but not the directories that were considered. This command: rsync -urzCv ./ desthost:/path ...shows only the files transferred. While this command: rsync -urzCtv ./ desthost:/path ...shows all directories that it looked at, and decided not to transfer files in. (rsync version 2.5.6 protocol version 26, stock Darwin 10.3.1 build). James.
2015 Jun 12
0
Re: Migrating guests
...est on destination host doesn't start, but I've previously successfully tested wih qemu+tcp URI and these three variants, without shared storage: (1) Native migration, client to two libvirtd servers $ virsh migrate --verbose --copy-storage-all \ --live cvm1 qemu+tcp://kashyapc@desthost/system (2) Native migration, peer2peer between two libvirtd servers: $ virsh migrate --verbose --copy-storage-all \ --p2p --live cvm1 qemu+tcp://kashyapc@desthost/system (3) Tunnelled migration, peer2peer between two libvirtd servers: $ virsh migrate --verbose --copy-storage-...
2009 Jul 26
1
Need help of exclusion options in rsync-3.0.6
..." and also deletes "old-baz". I want to preserve the "old-baz" and "baz" directories on destination side and want "abc" to gets deleted. Could you tell me how to tell rsync to do this? rsync -avz /foo/bar/ --delete-excluded --exclude=/baz --exclude=/abc desthost:/foo/bar/ Is there any option like --preserve-excluded available? Thanks, Jignesh -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.samba.org/pipermail/rsync/attachments/20090726/a877d8a3/attachment.html>
2000 Apr 20
0
Solaris upgrade (Samba panic)
...ersions 2.6 to 2.7 Solaris. | After reloading SAMBA I get an internal error in my logs and users an not | connect even though it shows up in the network. Below is the error in the | log ... That's a failure in --- BOOL attempt_netbios_session_request(struct cli_state *cli, char *srchost, char *desthost, struct in_addr *pdest_ip) { --- The line number points to the DEBUG statement in: ---- if (!nmb_name_equal(&called, &smbservername) || !cli_initialise(cli) || !cli_connect(cli, desthost, pdest_ip) || !cli_session_request(cli, &calling, &called)) {...
2000 Jul 17
0
[PATCH] `smbclient -M' ignores `-p port'
...Peter > > --- samba-2.0.x/source/client/client.c~ Mon Jul 3 01:15:21 2000 > +++ samba-2.0.x/source/client/client.c Sun Jul 16 15:33:34 2000 > @@ -2164,7 +2164,8 @@ > ip = ipzero; > if (have_ip) ip = dest_ip; > > - if (!(cli=cli_initialise(NULL)) || !cli_connect(cli, desthost, &ip)) { > + if (!(cli=cli_initialise(NULL)) || !cli_set_port(cli, port) || > + !cli_connect(cli, desthost, &ip)) { > DEBUG(0,("Connection to %s failed\n", desthost)); > return 1; > }
2000 Jul 16
1
"smbclient -p <port>" appears to be broken in Samba 2.x
I posted this problem as a question to this list a while ago and got no reply. I submitted it as a bug, but found that "samba-bugs@samba.org", no longer accepts bug reports, even though the web page says to send them to that address. Wondering if the option had been intentionally discontinuted without updating the man page, I made a quick check of the source and found that the "-p
2016 Apr 15
3
Domain member seems to work, wbinfo -u not
...the log.wb-DOMAIN seems to state an immediate (!!!) timeout on wbinfo -u   [2016/04/14 12:17:26.558350,  3, pid=2873, effective(0, 0), real(0, 0)] ../lib/krb5_wrap/krb5_samba.c:2502(kerberos_get_principal_from_service_hostname)   kerberos_get_principal_from_service_hostname: cannot get realm from, desthost host.domain.de or default ccache. Using default smb.conf realm DOMAIN.DE [2016/04/14 12:17:26.591090,  3, pid=2873, effective(0, 0), real(0, 0)] ../source3/libads/ldap.c:904(ads_do_paged_search_args)   ads_do_paged_search_args: ldap_search_with_timeout((objectCategory=user)) -> Time limit exceed...
2006 Nov 07
2
ssh catch 22
...d secure as much as I could and did the following. what I did: -------------- a) in the sshd_config of the destination PC I set "AllowUsers" to root@sourcehost b) in the certificate, I specified the command that could be run... the likes of: "command="rsync -av ./source root@desthost:/destination" ssh-rsa" my problem: ----------------- Now if the command was "ls" the source would only be able to return the result of an "ls" on the destination PC. The problem I am facing is that my rsync command found in the certificate won't execute an rs...
2000 Jan 05
1
Signal 11 in attempt_netbios_session_request
> I have just upgraded to Samba 2.0.6 and can no longer connect to Samba > shares on my FreeBSD 3.4-RELEASE machine. When I attempt to connect, the > smb.log contains the following information: > > [2000/01/04 17:54:42, 3] libsmb/namequery.c:resolve_lmhosts(566) > resolve_lmhosts: Attempting lmhosts lookup for name > NTWEB2.AIS.MSU.EDU<0x20> > [2000/01/04
2010 Sep 08
5
--delete-during acts like --delete-before
...f you have any questions, and thanks in advance for any advice. -cheers, CSB P.S. My workaround is to run a separate rsync session for each subdirectory, followed by a final run from the top level. That seems to work alright, but it's rather a kludge. -c -------------------------------- desthost $ ls -l */* -rw-r--r-- 1 user group 1048576 Sep 1 16:32 0/file-0 -rw-r--r-- 1 user group 1048576 Sep 1 16:32 1/file-1 -rw-r--r-- 1 user group 1048576 Sep 1 16:32 2/file-2 -rw-r--r-- 1 user group 1048576 Sep 1 16:32 3/...
1998 Jul 22
0
BUG-with-fix: smbclient ignores WORKGROUP= in smb.conf
...roup=""; BOOL got_pass = False; BOOL no_pass = False; BOOL connect_as_printer = False; *************** *** 664,671 **** goto get_pass; } ! DEBUG(0,("Session setup failed for username=%s myname=%s destname=%s %s\n", ! username,myname,desthost,smb_errstr(inbuf))); DEBUG(0,("You might find the -U, -W or -n options useful\n")); DEBUG(0,("Sometimes you have to use `-n USERNAME' (particularly with OS/2)\n")); DEBUG(0,("Some servers also insist on uppercase-only passwords\n")); --- 664,6...
2009 Jun 28
2
[storage-discuss] ZFS snapshot send/recv "hangs" X4540 servers
On Fri, Jun 26, 2009 at 10:14 AM, Brent Jones<brent at servuhome.net> wrote: > On Thu, Jun 25, 2009 at 12:00 AM, James Lever<j at jamver.id.au> wrote: >> >> On 25/06/2009, at 4:38 PM, John Ryan wrote: >> >>> Can I ask the same question - does anyone know when the 113 build will >>> show up on pkg.opensolaris.org/dev ? >> >> On
1998 Aug 31
1
samba error message - "broken (and insecure) behavior"
...i, user, (char *)badpass, sizeof(badpass), (char *)badpass, sizeof(badpass), domain)) { if ((SVAL(cli.inbuf,smb_vwv2) & 1) == 0) { DEBUG(0,("server_validate: password server %s allows users as non-guest \ with a bad password.\n", cli.desthost)); DEBUG(0,("server_validate: This is broken (and insecure) behaviour. Please do not \ use this machine as the password server.\n")); cli_ulogoff(&cli); return False; } cli_ulogoff(&cli); } WHAT versions of NT4 have...
1997 Dec 31
1
security = server not working properly (PR#2786)
...the bug that this code is designed to avoid. --- password.c 1997/10/21 10:09:28 1.25.2.4 +++ password.c 1997/12/31 06:43:06 @@ -1619,6 +1619,7 @@ } +#if 0 if (!cli_NetWkstaUserLogon(&cli,user,local_machine)) { DEBUG(1,("password server %s failed NetWkstaUserLogon\n", cli.desthost)); cli_tdis(&cli); @@ -1638,6 +1639,7 @@ cli_tdis(&cli); return False; } +#endif DEBUG(3,("password server %s accepted the password\n", cli.desthost)); Cheers, Andrew -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Andrew Tridgel...
2000 Jan 26
2
[2.0.6] doesn't run under Solaris 7/sparc, Internal Error
Is the following a known problem: =============================================================== [2000/01/26 09:41:03, 0] lib/fault.c:fault_report(41) INTERNAL ERROR: Signal 11 in pid 22273 (2.0.6) Please read the file BUGS.txt in the distribution [2000/01/26 09:41:03, 0] lib/fault.c:fault_report(43) =============================================================== This is using the same
2012 Mar 27
1
[Bug 8829] New: rsync -uav --delete --dry-run prints delete file list in reverse order
...is makes attempting to read and compare the files being deleted and updated very awkward. To fix this issue, the --delete list should be presented in the same order as the --verbose list (especially when --dry-run is given). Example, currently rsync behaves like this: rsync --delete -uavn ../dir1 desthost:~/dir2 dir1/ deleting dir2/file-z ... deleting dir2/file-a dir1/ file-a ... file-z For long lists, that is very awkward. Real world example: 13:50 alchemy:~/tde/pbf> rsync --delete -uavn ../pbf nirvana:~/tde sending incremental file list pbf/ deleting pbf/ts.txt deleting pbf/p...
2008 Aug 26
2
Live Migration
Hello, somene knows who to realize a Live Migration and what I need to do it? Thanks. Gustavo Alkmim _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users