Ask Question Forum:
Model Library:2025-02-08 Updated:A.I. model is online for auto reply question page
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by hdraye
at 2024-07-31 00:53:17
Point:500 Replies:6 POST_ID:828642USER_ID:11512
Topic:
Miscellaneous Web Development;;Web Servers
Hi
I would like to transfer files between 2 different servers, I have IPs (no domains) and root access for both servers, and I am using Putty for my telnet.
Appreciate any help
I would like to transfer files between 2 different servers, I have IPs (no domains) and root access for both servers, and I am using Putty for my telnet.
Appreciate any help
Expert: insoftservice replied at 2024-07-31 02:17:13
scp -rp -P 22 filename.tar.gz root@204.xxx.xxx.xx:/home/oca/public_html/filename.tar.gz
scp -r user@server:directory/SourceFolder TargetFolder
SSH Port
If your server uses a SSH port other than the default of 22, use -p portnumber option.
scp -P 2222 user@host:directory/SourceFile TargetFile
scp -r user@server:directory/SourceFolder TargetFolder
SSH Port
If your server uses a SSH port other than the default of 22, use -p portnumber option.
scp -P 2222 user@host:directory/SourceFile TargetFile
Author: hdraye replied at 2024-07-31 02:01:48
When I use SCP, I get :
stdin : Is not a tty
scp: .: not a regular file
What am I doing wrong?
stdin : Is not a tty
scp: .: not a regular file
What am I doing wrong?
Expert: duncanb7 replied at 2024-07-31 01:49:57
Be reminded supposed remote server is ftp server already or done ftp setup
if not, please refer to insoftserivce said using filezilla server client/interface
if not, please refer to insoftserivce said using filezilla server client/interface
Expert: insoftservice replied at 2024-07-31 01:45:03
use filezilla / winscp 4 the same ...download both if possible and enter ur ip , username password get connected, upload download file whenever u want
Expert: duncanb7 replied at 2024-07-31 01:44:15
just use window ftp that will be simple or easy with following command
c:/savefiledirectory> ftp
ftp> open remote server IP (such as 201.223.102.109)
ftp> ?
ftp>get filename.txt
c:/savefiledirectory> ftp
ftp> open remote server IP (such as 201.223.102.109)
ftp> ?
ftp>get filename.txt
Expert: spravtek replied at 2024-07-31 01:01:26
If it's a Windows platform you work on (not the servers but your computer) ... Then you can use something like WinSCP (http://winscp.net/eng/index.php)
On Mac OS X it would be something like Transmit or Cyberduck.
If you want to copy from server to server (without a client in between) and they are Linux servers, you can use the scp command: http://www.hypexr.org/linux_scp_help.php
On Mac OS X it would be something like Transmit or Cyberduck.
If you want to copy from server to server (without a client in between) and they are Linux servers, you can use the scp command: http://www.hypexr.org/linux_scp_help.php