kishan kumar katamala
2013-Jul-25 09:41 UTC
How to move rails application from one server to another server
Hi all, I am newbie to ruby on rails, i want to move rail application from one server to another servers. can you please help me. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/126cb960-f0ee-41f6-8c3f-f55154da01c8%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Robert Walker
2013-Jul-25 16:03 UTC
Re: How to move rails application from one server to another server
kishan kumar katamala wrote in post #1116674:> Hi all, > > I am newbie to ruby on rails, i want to move rail application from one > server to another servers. > > can you please help me.You need to investigate a proper application deployment strategy. You should not have to "move" an app from one server to another. Instead you need a script to deploy your app to the new server. Many developers use Capistrano to mange their Rails deployments: https://github.com/capistrano/capistrano Rails apps should be contained within a single folder, but there''s no way to guess what all you need to configure on your server to make it ready to run your Rails application. You''ve given no details on what technologies (e.g. database server, web server, etc.) you are using to run your app. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/c5676cb3ca93383021f36c541d7f4a14%40ruby-forum.com. For more options, visit https://groups.google.com/groups/opt_out.
Colin Law
2013-Jul-25 16:13 UTC
Re: How to move rails application from one server to another server
On 25 July 2013 10:41, kishan kumar katamala <kishankatamala-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi all, > > I am newbie to ruby on rails, i want to move rail application from one > server to another servers.To understand how rails apps work, so that you can work out what you need to do for your particular application, work right through a good rails tutorial such as railstutorial.org (which is free to use online). Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAL%3D0gLs8DX_pDXN3kNX_qGuqPOha%3Do5P5KW5fw56X1CCFb%2B%2BjA%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
kishan kumar k.
2013-Aug-12 11:51 UTC
Re: How to move rails application from one server to another server
Robert Walker wrote in post #1116678:> kishan kumar katamala wrote in post #1116674: >> Hi all, >> >> I am newbie to ruby on rails, i want to move rail application from one >> server to another servers. >> >> can you please help me. > > You need to investigate a proper application deployment strategy. You > should not have to "move" an app from one server to another. Instead you > need a script to deploy your app to the new server. > > Many developers use Capistrano to mange their Rails deployments: > https://github.com/capistrano/capistrano > > Rails apps should be contained within a single folder, but there''s no > way to guess what all you need to configure on your server to make it > ready to run your Rails application. You''ve given no details on what > technologies (e.g. database server, web server, etc.) you are using to > run your app.sorry for the late reply, Existing application is running on apache web server, database mysql. can you please let me, what all needs to be installed in new servers before moving the rail applications. *like how to know which all gems the old server is using. *will it be problem if i install higher version of gems/ruby *which all config files i need to modify. And also can you point if there are any webpages which contains step by step procedure of achieving this task. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/1a5cb468aed30b2a1daca4c043e3829f%40ruby-forum.com?hl=en-US. For more options, visit https://groups.google.com/groups/opt_out.
Colin Law
2013-Aug-12 12:07 UTC
Re: Re: How to move rails application from one server to another server
On 12 August 2013 12:51, kishan kumar k. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Robert Walker wrote in post #1116678: >> kishan kumar katamala wrote in post #1116674: >>> Hi all, >>> >>> I am newbie to ruby on rails, i want to move rail application from one >>> server to another servers. >>> >>> can you please help me. >> >> You need to investigate a proper application deployment strategy. You >> should not have to "move" an app from one server to another. Instead you >> need a script to deploy your app to the new server. >> >> Many developers use Capistrano to mange their Rails deployments: >> https://github.com/capistrano/capistrano >> >> Rails apps should be contained within a single folder, but there''s no >> way to guess what all you need to configure on your server to make it >> ready to run your Rails application. You''ve given no details on what >> technologies (e.g. database server, web server, etc.) you are using to >> run your app. > > > sorry for the late reply, > Existing application is running on apache web server, database mysql. > can you please let me, > what all needs to be installed in new servers before moving the rail > applications. > *like how to know which all gems the old server is using. > *will it be problem if i install higher version of gems/ruby > *which all config files i need to modify.Have you done what I originally suggested (and to which you did not respond) which is to work through a tutorial such as railstutorial.org, which will help you to understand the basics of rails and answer several of the questions above. Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAL%3D0gLsif%3DMeBfeMH023Vv9s-0S%3De5%3DHSWREGQeqOomVVVRzzA%40mail.gmail.com?hl=en-US. For more options, visit https://groups.google.com/groups/opt_out.