Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2006 02:43 PM
10-09-2006 02:43 PM
RSYNC
I can RSYNC from one file system to another on a same server but can not do from server to another server. It give following error:
borpru70:root:/usr/local/bin> ./rsync -av /bor/ovsdp/ftp/nis bordcu70:/bor/o>
Password:
sh: rsync: not found.
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: remote command not found (code 127) at io.c(463) [sender=2.6.8]
Any clue please ?
Thanks in advance
Nisar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2006 03:17 PM
10-09-2006 03:17 PM
Re: RSYNC
If it is installed, you may need to use the rsync option to tell it WHERE it is installed on the remote machine.
Last, the more recent versions of rsync use SSH as their default protocol. So make sure you have SSH installed on both machines and have exchanged keys so that you don't need a password to ssh between the machines.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2006 03:46 PM
10-09-2006 03:46 PM
Re: RSYNC
Yes, I have installed RSYNC on both servers. The version is HP-UX 11.11 and I am not sure how can I check if SSH is there. I tried "swlist |grep -i ssh" but nothing showed up.
Could you explain bit more how I avoid not supplying the password ?
Thanks a lot
Nisar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2006 06:30 PM
10-09-2006 06:30 PM
Re: RSYNC
seems like a path problem in the default profile.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2006 06:34 PM
10-09-2006 06:34 PM
Re: RSYNC
I think it is not a path issue. Loook at this:
which rsync
/usr/local/bin/rsync
BORDCU70:root:/tmp/patches> echo $PATH "/usr/local/bin"
/usr/sbin:/usr/bin:/usr/ccs/bin:/usr/contrib/bin:/opt/hparray/bin:/opt/nettladm/
bin:/opt/upgrade/bin:/opt/fcms/bin:/opt/pd/bin:/usr/bin/X11:/usr/contrib/bin/X11
:/opt/resmon/bin:/opt/perf/bin:/opt/prm/bin:/opt/gnome/bin:/opt/ignite/bin:/opt/
mozilla:/opt/wbem/bin:/opt/wbem/sbin:/opt/hpsmh/bin:/opt/perl/bin:/opt/ssh/bin:/
opt/gwlm/bin:/usr/sbin/diag/contrib:/opt/graphics/common/bin:/opt/omni/bin:/opt/
OV/bin/OpC:/opt/OV/bin:/opt/soex/bin:/usr/local/bin:/sbin:/home/root /usr/local/
bin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2006 08:01 PM
10-09-2006 08:01 PM
Re: RSYNC
rsync host command has a more restrictive environment than a interactive shell (which is what u have shown).
not sure which version of rsync u are using but u can try adding this parameter:
--rsync-path=/usr/local/bin/rsync to your rsync command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2006 01:00 AM
10-10-2006 01:00 AM
Re: RSYNC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2006 03:44 PM
10-10-2006 03:44 PM
Re: RSYNC
How we set user's PATH ?
Nisar