How do you apply patches on a web project at production server? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T02:41:37Z http://stackoverflow.com/feeds/question/337060 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/337060/how-do-you-apply-patches-on-a-web-project-at-production-server 5 How do you apply patches on a web project at production server? Shriti Gupta 2008-12-03T13:17:22Z 2008-12-04T08:16:14Z <p>We recently had a project where we released beta of a big web app on our client's server. Our client requested us to do bug fixes as they come, and we tried to do it same way. Normally while building an app on our prototype server is way easier, as I just have to issue simple 'svn up' command which takes a second. </p> <p>But on production environment, we do not have any version control tool available. Is it possible to automate the patching work, so that we need not to login to ftp and upload each a every file one by one? </p> <p>Its very difficult to work this way. As I'm having this problem, its for sure that some of you have already solved the problem. Please share your solutions.</p> <p>Looking forward to your replies... Thanks a lot for reading guys.</p> http://stackoverflow.com/questions/337060/how-do-you-apply-patches-on-a-web-project-at-production-server/337083#337083 0 Answer by Janko Mivšek for How do you apply patches on a web project at production server? Janko Mivšek 2008-12-03T13:25:03Z 2008-12-03T13:25:03Z <p>Depends on the programming environment you use. In Smalltalk and the web application server like <a href="http://www.aidaweb.si" rel="nofollow">Aida/Web</a> we can upgrade the live web applications on the fly, without stopping it. </p> <p>The server is connected to the SCM of choice like Monticello for Squeak Smalltalk or Store for VisualWorks. New versions are then manually or automatically loaded to the server's Smalltalk image. </p> http://stackoverflow.com/questions/337060/how-do-you-apply-patches-on-a-web-project-at-production-server/337092#337092 2 Answer by mat for How do you apply patches on a web project at production server? mat 2008-12-03T13:29:16Z 2008-12-03T13:29:16Z <p>Depending on the tools available on the server, you could either do a <code>svn diff -r x:y</code> where x is the revision you last updated too and y the last revision you want to update to (probably the last revision on your repository) to generate a patch and then apply the patch with the <code>patch</code> command.</p> <p>If <code>rsync</code> is available on the production platform, and you can use it (though ssh for instance) you could set up a production ready tree, rsync it on the production server, and when an update comes in, svn update your production tree, and rsync it again.</p> http://stackoverflow.com/questions/337060/how-do-you-apply-patches-on-a-web-project-at-production-server/337298#337298 1 Answer by Aaron Digulla for How do you apply patches on a web project at production server? Aaron Digulla 2008-12-03T14:30:49Z 2008-12-04T08:16:14Z <p>What is stopping you from installing a Subversion client on the production server?</p> <p>[EDIT] So someone doesn't allow you to install the software you need on the server. The question is: What is more important? A stable production server or an arbitrary policy? If the someone doesn't listen to arguments, go to your computer, start MS Word and write this letter:</p> <p>"I hereby refuse to accept any responsibility for the stability of our production system based on the fact that [insert name here] refuses to equip me with the tools to make sure that the production system contains all the necessary files and data after an installation."</p> <p>Sign this, have your boss sign it and then send a copy to [insert name here]. All of a sudden, any problem that might arise after an installation will be on his turf. Or to put it more clearly: He will be responsible for any mistake you might make.</p> <p>Now, all you have to do is wait. :)</p>