![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| 'df -k .' on remote server | dddkiran | Shell Programming and Scripting | 1 | 11-03-2008 08:19 AM |
| how do I make my workstation an installation server for a remote server?. | calsum | SUN Solaris | 3 | 04-18-2008 04:54 PM |
| Transfer file from local unix server to remote server | indira | Shell Programming and Scripting | 2 | 05-03-2007 07:35 AM |
| Transfer file from local unix server to remote server | indira | HP-UX | 2 | 05-02-2007 06:15 PM |
| FTP multiple files from remote server to local server | berlin_germany | Shell Programming and Scripting | 2 | 12-20-2006 03:24 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Remote server
I want to manipulate files that are present on another server.
I tried telnet. I get the following error: Connection to <hostname> closed by foreign host. I need to do this through a KSH. Any help is appreciated! Thanks, Edison |
|
||||
|
Yes, an ssh daemon like openssl's sshd. This is very, very common however, I would be suprised if a UNIX server didn't have something like that installed, even if maybe disabled. Just try logging in with ssh and see if it works, it easily could.
|
|
||||
|
Quote:
Code:
ssh username@hostname 'command to execute' If you omit any command to be executed, you get an interactive shell. Like Lazydog says, logging in without a password is something you must set up in advance. This involves generating a public/private key pair and placing it on the server so the server and client can recognize each other. Once this is done, you will be able to run the command without any special parameters and login without a password. Hunt for ~/.ssh/authorized_keys in ssh's manpage. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|