rcp command


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting rcp command
# 1  
Old 03-31-2009
rcp command

Hi friends,

Am trying to push a file on a remote server to my local host but getting "permission denied." error.

Please let me know the basic steps that i need to have a look at in order to let the "rcp" command work successfully.

Pl. Note:

Both the servers belong to Sun Solaris 10 SPARC family.
# 2  
Old 03-31-2009
you have to put a .rhosts file in the $home directory on the remote and local server, which contains the remote hostname and the user who wants to connect to.
# 3  
Old 03-31-2009
Tx for the reply.

I did the following

------On Local server $HOME/.rhosts----------------
remoteserverip remoteuserid
---------------------------------------------------

------On Remote server $HOME/.rhosts-------------
localserverip localuserid
---------------------------------------------------

chmod 777 given to .rhosts file on both the servers

After employing the abovesaid steps, i tried again, but got the same error"Permission denied."

Pls advice if i need to carry out any other required steps to get my desired result.

rgds,
Srini
# 4  
Old 03-31-2009
All,

I know that i am missing something basic here. A quick help is much appreciated.

Thanks in advance!

rgds,

Srini
# 5  
Old 03-31-2009
Rule # 4:

(4) Do not 'bump up' questions if they are not answered promptly. No duplicate or cross-posting and do not report a post or send a private message where your goal is to get an answer more quickly.
# 6  
Old 03-31-2009
Permissions on .rhosts should be 644 (on some systems 600) owned by the account concerned or (preferably) root. Many unixes will ignore a .rhosts file which has incorrect permissions as an anti-hack measure.

To emphasise the reply from "tahleen":
No IP addresses in .rhosts - it must be the exact host name and precisely match that server's entry in /etc/hosts.
See "man .rhosts".

Tip: If you put your own host name and username in .netrc in your home directory on your local computer you can test rcp to yourself.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Problems with rcp command

I have two servers A and B; A has redhat 5 and B has Suse10. Both of them has rhost file configuration. When i try to copy file from A to B that is OK but when try to copy from B to A i have an error: connection refused. I installed rsh and rsh-server on server A and stop iptables service. I need... (2 Replies)
Discussion started by: robinsonusp2014
2 Replies

2. Shell Programming and Scripting

rcp -r || cp -r

what different between two instruction cp -r rcp -r (1 Reply)
Discussion started by: tamer11007
1 Replies

3. HP-UX

rcp command is not working in crontab

Dear Friends, I am trying to copy SAP log file from one HPux server1 to another HPux server2 remotely through one script. following command has written in the script. rcp -rp /oracle/PRD/sapreorg/*.dbf oraprd@drsite:/oracle/PRD/sapreorg Above command working fine from command mode.... (5 Replies)
Discussion started by: BPANDEY
5 Replies

4. UNIX for Dummies Questions & Answers

RCP command

hi, When i use RCP command to copy filr from a different servers, it is showing as connection refused??? ca anyone help me out??? thanks, Arun Manas:b: (2 Replies)
Discussion started by: arunmanas
2 Replies

5. Solaris

RCP command timed out

I HAVE A PERL SCRIPT WHICH RCP files from one server to another. The script is not having any issues for years and it is running for more than 3 years . Last week it had failed with error "Command timed out " error. Please help me out (3 Replies)
Discussion started by: praviper
3 Replies

6. HP-UX

Strange- RCP command works every other time

This just started happening. I use the rcp command to copy a file from one server to another. Now when I use the command, every other time I execute the exact same command I get the error: remshd: login correct Example: 1. rcp testfile server2:/db/tmp (Work ok, verified file... (6 Replies)
Discussion started by: jrowland
6 Replies

7. Shell Programming and Scripting

using rcp command

Hi All, I am writing a shell script which will copy binaries from one remote server to local server. I am using "rcp command". But "rcp" command asks for the login password when copying to local server. Can anybody tell me how to pass the password through the shell script? Thanks ... (2 Replies)
Discussion started by: amitrajvarma
2 Replies

8. HP-UX

rcp command

Hi, Good day to you all. I am trying to use rcp command to transfer some files on the remote machine. I have already setup .rhosts on my server and on the remote machine. When I do rcp I get this error message rcmd_af: Lost connection Is anybody familiar with this one? Thanks in advance. ... (3 Replies)
Discussion started by: sodapop
3 Replies

9. UNIX for Dummies Questions & Answers

Rcp

I am trying to set up RCP so root can access a few machines for file transfer. On the target machine, I have set up a .RHOSTS file that looks like: 10.33.1.59 root However when I try to use RCP to copy a file to this machine, I get permission denied. Is it possible since another user is... (1 Reply)
Discussion started by: hshapiro
1 Replies

10. HP-UX

rcp logs

Hi, Can anyone help me to trace who has made rcp to a HP-UX machine? Is there a file that keeps such records? I know ftp's are recorded in /var/adm/syslog but i only need rcp.Thanks... (0 Replies)
Discussion started by: ilkergu
0 Replies
Login or Register to Ask a Question