Showing posts with label large files. Show all posts
Showing posts with label large files. Show all posts

Tuesday, September 3, 2013

// // Leave a Comment

FTP Filezilla - 421 Sorry, cleartext sessions are not accepted on this server.

Some times when  you connect to the webhost via FileZilla you may encounter this error message.
"421 Sorry, cleartext sessions are not accepted on this server."

Solution:
Just add a ftpes:// before the domain name

Old One,
host : domain.com
username : xxx
pass : yyy
port : 21


New,
host : ftpes://domain.com
username : xxx
pass : yyy
port : 21

Advanced Option,

Login to  Web Host Manager
Go To : Service Configuration
Go To : FTP Server Configuration
Check that  :
TLS Encryption Support : set to  “Optional”

Try that, it will work.
Read More

Friday, April 19, 2013

// // Leave a Comment

File transfer in background using SCP

For scping large files, it is best to let them run in the background.

follow the steps below to transfer files using SCP command in the background

1) execute the normal scp command, eg:
# scp localfile.tar.bz2 user@server.ch:/path/on/server/

2) after confirming the key and authentificating (if necessary), you can "stop" the job by pressing : ctrl + Z
[1]+ Stopped scp localfile.tar.bz2 user@server.ch:/path/on/server/

3) then you can proceed the job in the background by typing
# bg
[1]+ scp localfile.tar.bz2 user@server.ch:/path/on/server/ &


4) finally, to make sure the process is working in background, issue the “jobs” command
# jobs
[1]+ Running scp localfile.tar.bz2 user@server.ch:/path/on/server/ &


Now the session can be exited with the file transfer unaffected.
Read More