transfer code from one server to other server.
Posted
by
Kamlesh Bhure
on Server Fault
See other posts from Server Fault
or by Kamlesh Bhure
Published on 2010-12-20T06:58:30Z
Indexed on
2010/12/21
20:55 UTC
Read the original article
Hit count: 263
I wanted to transfer new code into my new production server.
I have code files on my development server.
Instead of uploading files using FTP from my local machine, there is other way to transfer code from one server to other.
What I am thinking I will make zip file of whole code to be transfer and place it in webroot. So that it would be accessible in internet with some link http://www.mydomain.com/code.tar.gz now on the other server i will just run command
wget http://www.mydomain.com/code.tar.gz
Will this transfer done in few seconds...? May I know is this correct approach?
© Server Fault or respective owner