active questions tagged capistrano - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T12:29:05Zhttp://stackoverflow.com/feeds/tag/capistranohttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1938366/railsless-deploy-in-webistrano0railsless-deploy in Webistranodeceze2009-12-21T05:27:12Z2009-12-21T05:27:12Z
<p>How do I use the <a href="http://github.com/leehambley/railsless-deploy" rel="nofollow">railsless-deploy</a> gem in Webistrano?</p>
<p>As far as I understood, it contains common presets for non-ruby apps, which I would have to otherwise all over-/rewrite manually using Webistrano recipes. I tried including the railsless-deploy gem as usual in a Webistrano recipe, but that causes an error while loading tasks.</p>
<p>I tried sym-linking the gem into Webistrano's /vendor/plugins/ folder, but that didn't help either.</p>
http://stackoverflow.com/questions/1923572/capistrano-deployment-with-usesudotrue-permissions-problem0capistrano deployment with use_sudo=true - permissions problemPavel K.2009-12-17T18:09:28Z2009-12-18T10:08:57Z
<p>i am trying to do a deployment with capistrano to newly installed Ubuntu server</p>
<p>i am deploying to directory /var/www, owned by root, so i need to set use_sudo to true</p>
<p>while i execute commands with run "#{try_sudo} command" without problem, svn checkout doesn't work with sudo prefix</p>
<p>i try</p>
<pre><code>set :deploy_via, :export
</code></pre>
<p>and it throws</p>
<pre><code>Can't make directory '/var/www/pr_name/releases/20091217171253': Permission denied
</code></pre>
<p>during checkout</p>
<p>i imagine adding "try_sudo" prefix to "svn export" would help, but where can i edit the one it uses in deploy_via?</p>
<p>--</p>
<p>if on other hand i don't use use_sudo, and set /var/www/ directory ownership to myuser, i still cannot deploy - some of my deployment commands set folders ownership to apache user www-data and then i get something like:</p>
<pre><code>changing ownership of `/var/www/pr_name/current/specificdirectory': Operation not permitted
</code></pre>
<p>which, if i understand correctly, has to be done with sudo</p>
http://stackoverflow.com/questions/1604041/creating-crontab-via-capistrano-instead-of-using-crontab-e0Creating crontab via Capistrano instead of using crontab -esbtodd2009-10-21T22:34:37Z2009-12-16T02:07:34Z
<p>I would like to include cron tasks in my Capistrano deployment files instead of using the following command to manually edit the crontab file:</p>
<p>crontab -e [username]</p>
<p>Is there a script I could use within the Capistrano run command to set the contents of the crontab?</p>
http://stackoverflow.com/questions/1896062/your-radiant-deployment-recipe0Your radiant deployment recipe.Konstantin2009-12-13T10:03:47Z2009-12-13T15:37:17Z
<p>Are you using Radiant CMS?</p>
<p>If yes, <strong>what is you deployment strategy</strong>?</p>
<p>Since lot's of configuration is stored in the database, I need to overwrite db on the server with my development db (with capistrano it is not a problem).
But this will work only if I am the only one who updates the website. And what if customer in a meanwhile has created a new page? I need to merge databases somehow.</p>
<p>So, how do <em>you</em> deploy your radiant website? How do you solve issue with "database merge"? This must have some simple answer, but I can't see one...</p>
<p>PS. It would be absolutely awesome if you share your capistrano recipe in case you use it ;) </p>
http://stackoverflow.com/questions/1888670/capistrano-deploy-rb-file-refactoring1Capistrano: deploy.rb file refactoringRoger2009-12-11T15:06:16Z2009-12-11T16:12:14Z
<p>I have following code in my deploy.rb</p>
<pre><code>namespace :app do
desc "copies the configuration frile from ~/shared/config/*.yml to ~/config"
task :copy_config_files,:roles => :app do
run "cp -fv #{deploy_to}/shared/config/hoptoad.rb #{release_path}/config/initializers"
run "cp -fv #{deploy_to}/shared/config/app_config.yml #{release_path}/config/app_config.yml"
end
end
</code></pre>
<p>I thought it would be a good idea to keep my deploy.rb file clean and I attempted to move above code to capistrano_utilities.rb under config. I am using Rails application. And I added following line of code to deploy.rb </p>
<pre><code>require File.expand_path(File.dirname(__FILE__) + "/../lib/capistrano_utilities")
</code></pre>
<p>Now I am getting following error.</p>
<pre><code>undefined method `namespace' for main:Object (NoMethodError)
</code></pre>
<p>The value of self in the deploy.rb is Capistrano::Configuration . While the value of self in capistrano_utilities is Main. So I understand why I am getting namespace method error. What is the fix for this problem?</p>
http://stackoverflow.com/questions/1878021/how-do-i-start-thinking-sphinx-delayed-delta-rake-task-from-deploy-script0How do I start Thinking Sphinx delayed delta rake task from deploy script?simon1802009-12-10T01:04:28Z2009-12-10T01:04:28Z
<p>Hi</p>
<p>I have Thinking Sphinx setup and working however I am having a problem getting the Delayed Job rake tasks to start during deployment.</p>
<p>I have the following task in deploy.rb which appears to execute, however the delayed jobs are not processed - they stack up until I run rake ts:dd from the server command line:</p>
<p><code>
namespace :thinkingsphinx do
desc 'Start Delayed Job Sphinx delta indexing'
task :dd do
run "cd #{current_path} && rake ts:dd RAILS_ENV=#{rails_env} &"
end
end
</code></p>
<p>How can I get the delayed jobs to start running from the deployment script?</p>
<p>Thanks</p>
<p>Simon</p>
http://stackoverflow.com/questions/1863974/have-capistrano-insert-password-from-prompt-into-environment-rb-file0Have Capistrano Insert Password From Prompt Into Environment.rb Filejklina2009-12-08T01:20:21Z2009-12-08T03:36:22Z
<p>I am using Action Mailer and have my configuration settings for Action Mailer in my environment.rb file. I would like to post my project in a public repository along with an environment.rb file, but I do not want to include my mail server's login information. How does one configure Capistrano's deploy.rb so that it prompts the user for the mail server settings and then modifies or creates an environment.rb file during Capistrano's deployment. </p>
<p>Thanks for looking =)</p>
http://stackoverflow.com/questions/1856682/capistrano-error-on-cached-copy0capistrano error on cached-copyJosh2009-12-06T21:30:17Z2009-12-07T14:10:04Z
<p>I am receiving the following error when running a cap deploy:update</p>
<p>failed: "sh -c 'if [ -d /home/deployer/apps/all_bout_texas/shared/cached-copy ]; then cd /home/deployer/apps/all_bout_texas/shared/cached-copy && git fetch -q origin && git reset -q --hard 2350e98662e7fe00d526ff5f69460beb868a978a && git clean -q -d -x -f; else git clone -q --depth 1 git@github.com:jpowell/all_bout_texas.git /home/deployer/apps/all_bout_texas/shared/cached-copy && cd /home/deployer/apps/all_bout_texas/shared/cached-copy && git checkout -q -b deploy 2350e98662e7fe00d526ff5f69460beb868a978a; fi'"</p>
<p>Here is my deploy.rb:</p>
<pre><code>set :application, "all_bout_texas"
# If you aren't deploying to /u/apps/#{application} on the target
# servers (which is the default), you can specify the actual location
# via the :deploy_to variable:
set :deploy_to, "/home/deployer/apps/#{application}"
# If you aren't using Subversion to manage your source code, specify
# your SCM below:
default_run_options[ty] = true
set :scm, :git
set :repository, "git@github.com:jpowell/all_bout_texas.git"
set :deploy_via, :remote_cache
set :branch, "master"
set :git_shallow_clone, 1
set :copy_cache, true
# abt
role :app, "174.143.241.236"
role :web, "174.143.241.236"
role :db, "174.143.241.236", rimary => true
set :scm_username, "my_user"
set :scm_passphrase, "my_pass"
set :scm_verbose, false
set :user, "my_user"
set :runner, "my_user"
namespace :deploy do
task :copy_database_configuration do
production_db_config = "/home/deployer/config/abt_database.yml"
run "cp #{production_db_config} #{release_path}/config/database.yml"
end
desc "Restarting mod_rails with restart.txt"
task :restart, :roles => :app, :except => { :no_release => true } do
run "touch #{current_path}/tmp/restart.txt"
end
[:start, :stop].each do |t|
desc "#{t} task is a no-op with mod_rails"
task t, :roles => :app do ; end
end
after "deploy:update_code", "deploy:copy_database_configuration"
after "deploy:update_code", "deploy:restart"
end
</code></pre>
<p>Any ideas? Thanks.</p>
<p>Josh</p>
http://stackoverflow.com/questions/1518515/deploying-with-capistrano-subversion-working-copy-locked0Deploying with Capistrano & Subversion. Working copy lockedRimian2009-10-05T06:34:29Z2009-12-05T03:19:13Z
<p>I'm deploying to a Debian server with Capistrano which fails due to locked a working copy. I narrowed it down to this:</p>
<p>svn checkout <a href="http://myrepo.net/mysite/tags/1.0" rel="nofollow">http://myrepo.net/mysite/tags/1.0</a> /var/www/mysite/releases/1234</p>
<p>So if I run:</p>
<p>cap invoke COMMAND='svn checkout <a href="http://myrepo.net/mysite/tags/1.0" rel="nofollow">http://myrepo.net/mysite/tags/1.0</a> /var/www/mysite/releases/1234'</p>
<p>I get an error:</p>
<p>svn: Working copy '/var/www/mysite/releases/1' locked</p>
<p>Clean up makes no difference. The same command runs fine from the server. When I list the files in 1234/ I can see all the .svn and working copy files.</p>
<p>Can someone please point me in the right direction to resolve this? How do I tell if the working copy is really locked? svn status shows nothing...</p>
http://stackoverflow.com/questions/1490138/reading-the-first-line-of-a-file-in-ruby2Reading the first line of a file in RubyCraig Walker2009-09-29T01:28:45Z2009-12-05T01:12:06Z
<p>I want to read <em>only</em> the first line of a file using Ruby in the fastest, simplest, most idiomatic way possible. What's the best approach?</p>
<p>(Specifically: I want to read the git commit UUID out of the REVISION file in my latest Capistrano-deployed Rails directory, and then output that to my tag. This will let me see at an http-glance what version is deployed to my server. If there's an entirely different & better way to do this, please let me know.)</p>
http://stackoverflow.com/questions/1832101/is-there-a-perl-or-lua-alternative-to-capistrano7Is there a Perl or Lua alternative to Capistrano?Htbaa2009-12-02T10:41:53Z2009-12-04T18:24:30Z
<p>For a number of web-applications I need something like Capistrano to automate deployment. I know Capistrano can be used to deploy non-ruby applications but I'm not familiar with Ruby, so I expect writing deployment configurations can be a bit of a pain.</p>
<p>So I was wondering, are there any alternatives to Capistrano written in either Perl of Lua?</p>
<p>Also, forgot to mention, the platform running the deployments is Windows (XP). So Capistrano is already more or less out of the question. Although I found out it can run with the MINGW32 Bash shell that comes with Git for Windows.</p>
http://stackoverflow.com/questions/1839244/deployment-problem-on-ruby-on-rails0deployment problem on Ruby on Railspalani2009-12-03T11:05:10Z2009-12-03T18:59:43Z
<p>Hi
when do the cap deploy for my Ruby on Rails application. i faced the following error.</p>
<pre><code>cap deploy
* executing `deploy'
* executing `deploy:update'
** transaction: start
* executing `deploy:update_code'
executing locally: "svn info https://digitalsleep.svn.beanstalkapp.com/centralbank/ -rHEAD"
svn: /usr/local/lib/libldap_r-2.4.so.2: no version information available (required by /usr/lib/libaprutil-1.so.0)
svn: /usr/local/lib/libldap_r-2.4.so.2: no version information available (required by /usr/lib/libpq.so.5)
* executing "svn checkout -q -r66 https://digitalsleep.svn.beanstalkapp.com/centralbank/ /home/monkeyg/centralbank/releases/20091203102124 && (echo 66 > /home/monkeyg/centralbank/releases/20091203102124/REVISION)"
servers: ["67.23.24.230"]
[67.23.24.230] executing command
** [67.23.24.230 :: err] Error validating server certificate for 'https://digitalsleep.svn.beanstalkapp.com:443':
** - The certificate is not issued by a trusted authority. Use the
** fingerprint to validate the certificate manually!
** Certificate information:
** - Hostname: *.svn.beanstalkapp.com
** - Valid: from Thu, 05 Mar 2009 15:23:20 GMT until Wed, 14 Apr 2010 03:34:53 GMT
** - Issuer: 07969287, http://certificates.godaddy.com/repository, GoDaddy.com, Inc., Scottsdale, Arizona, US
** - Fingerprint: b0:3b:ea:3a:72:2c:87:30:75:d3:7d:2b:01:4b:ec:d6:45:38:8f:25
** (R)eject, accept (t)emporarily or accept (p)ermanently?
** [67.23.24.230 :: err] Authentication realm: <https://digitalsleep.svn.beanstalkapp.com:443> SVN
** Password for 'root':
** [67.23.24.230 :: err] Authentication realm: <https://digitalsleep.svn.beanstalkapp.com:443> SVN
** Username:
</code></pre>
http://stackoverflow.com/questions/1821737/capistrano-hates-gemspecs0Capistrano Hates Gemspecsmedium2009-11-30T19:04:41Z2009-12-01T06:59:57Z
<p>I'm deploying a rails app on Slicehost using Capistrano. Part of the process of deployment involves rebuilding a gem and installing it.</p>
<p>Deploying the code to the server via git scm works fine, but for some reason when I try and do a...</p>
<pre><code>run 'gem build /my/app/folder/my.gemspec'
</code></pre>
<p>... in a separate task in deploy.rb, it all goes bboom. I get a wierd error telling me that the files in the gemspec aren't files...</p>
<pre><code>ERROR: While executing gem ... (Gem::InvalidSpecificationException)
[ ... , "public/images/admin/navigation_shadow.png", "public/images/admin/new_layout.png", "public/images/admin/buttons_background.png", "public/images/admin/expand.png", "public/images/admin/status_spinner
** [out :: MY.IP.ADD.RESS ] .gif", "public/images/admin/draft_page.png", "public/images/admin/vertical_tan_gradient.png", "public/images/admin/status_top_right.png", "public/images/admin/snippet.png", "public/images/admin/spacer.gif", "public/images/admin/status_bottom_right.png", "public/images/admin/spinner.gif", "CONTRIBUTORS", "script", "script/server", "script/breakpointer", "script/generate", "script/dbconsole", "script/about", "script/spec", "script/runner", "script/process", "script/process/reaper", "script/process/inspector", "script/process/spinner", "script/process/spawner", "script/version", "script/plugin", "script/console", "script/autospec", "script/destroy", "script/cucumber", "script/spec_server", "script/performance", "script/performance/profiler", "s ** [out :: MY.IP.ADD.RESS ] cript/performance/request", "script/performance/benchmarker", "script/extension", "LICENSE", "CHANGELOG", ".gitignore", "bin", "my.gemspec", "config", "config/database.mysql.yml", "config/environments", "config/environments/test.rb", "config/environments/production.rb", "config/environments/development.rb", "config/database.yml" ] are not files
</code></pre>
<p>Which is weird because the same command works perfectly when i ssh into the box and do it manually, and when i do....</p>
<pre><code>sh -c 'gem build /my/app/folder/my.gemspec'
</code></pre>
<p>which is how capistrano wraps remote command line calls, that works fine too when i do it manually.</p>
<p>Even tried wrapping in a Kernel.system() call in another ruby file and calling that from deploy.rb, but still get the same problem. Crazy.</p>
<p>Wonder if its something to do with the</p>
<pre><code>** [out :: MY.IP.A.DRES]
</code></pre>
<p>string thats being added into the output at apparently random intervals.</p>
http://stackoverflow.com/questions/1816978/capistrano-not-restarting0Capistrano not restarting JZ2009-11-29T22:20:05Z2009-12-01T03:43:15Z
<p>Capistrano is deploying cold, deploying updates and uploading the symlink fine. It will not however restart. </p>
<p>I notice that permission is denied on the /script/process/reaper file. I have found <a href="http://www.mail-archive.com/capistrano@googlegroups.com/msg04485.html" rel="nofollow">a suggestion</a> implying the file needs updated permissions. Does anyone have experience with this?</p>
<pre><code>Macintosh-5:barcoden fogonthedowns$ cap deploy:restart
* executing `deploy:restart'
* executing "/home/fogonthedowns/owens.fogonthedowns.com/current/script/process/reaper"
servers: ["owens.fogonthedowns.com"]
Password:
[owens.fogonthedowns.com] executing command
** [out :: owens.fogonthedowns.com] sh: /home/fogonthedowns/owens.fogonthedowns.com/current/script/process/reaper: Permission denied
command finished
failed: "sh -c \"/home/fogonthedowns/owens.fogonthedowns.com/current/script/process/reaper\"" on owens.fogonthedowns.com
Macintosh-5:barcoden fogonthedowns$
</code></pre>
http://stackoverflow.com/questions/1814384/css-files-not-loading-after-capistrano-deploy0css files not loading after capistrano deployShiv2009-11-29T01:55:22Z2009-11-30T03:29:14Z
<p>Hey Guys,</p>
<p>I have noticed that after I do a deploy via capistrano, the static css files dont seem to be loading, this is true when I specially specify</p>
<pre><code><%= stylesheet_link_tag 'resume',:cache => true %>
</code></pre>
<p>removing the :cache => true solves the problem, but I would like to know why that option is causing a problem in the first case, and secondly what is the best practice while deploying the rails application via capistrano</p>
http://stackoverflow.com/questions/826278/scheduling-capistrano-function-using-cron0scheduling capistrano function using cron halbert2009-05-05T18:28:08Z2009-11-28T12:00:03Z
<p>Hello,</p>
<p>I'm a php developer using capistrano, with multistage support, to deploy my application to my production servers. Hence, I have very little ruby or rails knowledge.</p>
<p>I've figured out enough to add a new function called 'flush' to my deploy.rb script which invokes a php script on all my production servers. The purpose of the 'flush' is to connect to each production server and execute a php script which writes all the logs from each server's local mysql tables to my master db.</p>
<p>I am sure that the function works since executing it from the command line (cap prod flush) produces accurate results.</p>
<p>I would like to schedule a cron job that invokes this function every hour. To start, I wrote a bash script that executes the function:</p>
<pre><code>!#/bin/bash
`/usr/bin/cap prod flush`
</code></pre>
<p>However, when the cron job runs the script, it emails me back the following error:</p>
<p>the task 'prod' does not exist</p>
<p>I believe the problem is when the cron is run, its not executing the script in the proper directory. I've tried changing the $PATH and $HOME variable in the bash scripts, but I cannot seem to get it to work. </p>
<p>Could anyone offer me assistance?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1805222/how-to-use-a-rails-environment-variable-in-capistrano-deploy-script1How to use a Rails environment variable in Capistrano deploy script?Brian Armstrong2009-11-26T19:05:41Z2009-11-27T17:55:13Z
<p>If I have a constant in my Rails environment.rb, for example...</p>
<pre><code>SOME_CONSTANT = 3
</code></pre>
<p>Is it possible to access this in my capistrano deploy.rb somehow? It seems simple but I can't figure out how.</p>
http://stackoverflow.com/questions/1807416/capistrano-custom-task-fails-because-rails-requires-rubygems-1-3-21Capistrano custom task fails because "Rails requires RubyGems >= 1.3.2"mnylen2009-11-27T08:28:42Z2009-11-27T14:50:00Z
<p>My custom capistrano task "app:sample" fails with the following error message:</p>
<pre><code>mnylen ilmo-on-rails $ cap app:sample
* executing `app:sample'
* executing "export RAILS_ENV=production; cd /home/mnylen/ilmo-on-rails/current; ruby script/coursegen 10"
servers: ["rails.cs.helsinki.fi"]
* establishing connection to gateway `melkinpaasi.cs.helsinki.fi'
* Creating gateway using melkinpaasi.cs.helsinki.fi
* establishing connection to `rails.cs.helsinki.fi' via gateway
Password:
[rails.cs.helsinki.fi] executing command
*** [err :: rails.cs.helsinki.fi] Rails requires RubyGems >= 1.3.2. Please install RubyGems and try again: http://rubygems.rubyforge.org
command finished
failed: "sh -c 'export RAILS_ENV=production; cd /home/mnylen/ilmo-on-rails/current; ruby script/coursegen 10'" on rails.cs.helsinki.fi
</code></pre>
<p>Am I missing something or doing something wrong? The task is:</p>
<pre><code>namespace :app do
desc "Run sample data on production2
task :sample do
run "export RAILS_ENV=production; cd #{current_path}; ruby script/coursegen 10"
end
end
</code></pre>
<p>If I run the same command from the actual server, it works fine.</p>
http://stackoverflow.com/questions/653774/capistrano-symlinking-problem0Capistrano symlinking problem?Millisami2009-03-17T11:06:56Z2009-11-27T12:00:01Z
<p>I've this capistrano command.</p>
<pre>
task :symlink_shared do
run "rm -rf #{current_path}/config/database.yml"
run "ln -nfs #{shared_path}/config/database.yml #{release_path}/config/database.yml"
run "rm -rf #{current_path}/config/app_config.yml"
run "ln -nfs #{shared_path}/config/app_config.yml #{release_path}/config/app_config.yml"
run "rm -rf #{current_path}/public/records"
run "ln -nsf #{shared_path}/uploads/records #{release_path}/public/records"
run "rm -rf #{current_path}/public/documents"
run "ln -nsf #{shared_path}/uploads/documents #{release_path}/public/documents"
run "rm -rf #{current_path}/public/pdf_xmls"
run "ln -nsf #{shared_path}/uploads/pdf_xmls #{release_path}/public/pdf_xmls"
run "rm -rf #{current_path}/public/pdf_xml_files"
run "ln -nsf #{shared_path}/uploads/pdf_xml_files #{release_path}/public/pdf_xml_files"
end
</pre>
<p>Everything works and the symlinks are also created.
But the last command symlink creates the symlink pdf_xml_files one step inside.
i.e. it creates a directory named pdf_xml_files and inside it, the pdf_xml_files symlink is created.
Need some help?? </p>
http://stackoverflow.com/questions/1769874/dont-know-how-to-build-task-gemsinstall0Don't know how to build task 'gems:install'richard moss2009-11-20T11:26:10Z2009-11-20T15:21:12Z
<p>hi all</p>
<p>I am deploying my rails app to a linux server and i have some of the rake tasks missing inlcuding rake gems:install and rake db</p>
<p>I am running rails 2.3.4 from GEM.</p>
<p>Does anyone know why this is?</p>
<p>How do i fix this ? can i update some how ?</p>
<p>thanks alot
richard moss</p>
http://stackoverflow.com/questions/1732415/how-to-deploy-resque-workers-in-production0How to deploy resque workers in production?Brian Armstrong2009-11-13T22:56:04Z2009-11-18T21:15:43Z
<p>The GitHub guys recently released their background processing app which uses Redis:
<a href="http://github.com/defunkt/resque" rel="nofollow">http://github.com/defunkt/resque</a>
<a href="http://github.com/blog/542-introducing-resque" rel="nofollow">http://github.com/blog/542-introducing-resque</a></p>
<p>I have it working locally, but I'm struggling to get it working in production. Has anyone got a:</p>
<ol>
<li>Capistrano recipe to deploy workers (control number of workers, restarting them, etc)</li>
<li>Deployed workers to separate machine(s) from where the main app is running, what settings were needed here?</li>
<li>gotten redis to survive a reboot on the server (I tried putting it in cron but no luck)</li>
<li>how did you work resque-web (their excellent monitoring app) into your deploy?</li>
</ol>
<p>Thanks!</p>
<p>P.S. I posted an issue on Github about this but no response yet. Hoping some SO gurus can help on this one as I'm not very experienced in deployments. Thank you!</p>
http://stackoverflow.com/questions/1524204/using-capistrano-to-deploy-from-different-git-branches2Using capistrano to deploy from different git branchesToms Mikoss2009-10-06T08:06:01Z2009-11-17T23:36:19Z
<p>I am using capistrano to deploy a RoR application. The codebase is in a git repository, and branching is widely used in development. Capistrano uses deploy.rb file for it's settings, one of them being the branch to deploy from. </p>
<p>My problem is this: let's say I create a new branch A from master. The deploy file will reference master branch. I edit that, so A can be deployed to test environment. I finish working on the feature, and merge branch A into master. Since the deploy.rb file from A is fresher, it gets merged in and now the deploy.rb in master branch references A. Time to edit again.</p>
<p>That's a lot of seemingly unnecessary manual editing - the parameter should always match current branch name. On top of that, it is easy to forget to edit the settings each and every time.</p>
<p>What would be the best way to automate this process?</p>
<p>Edit:</p>
<p>Turns out <a href="http://www.harukizaemon.com/2008/05/deploying-branches-with-capistrano.html" rel="nofollow">someone already had done exactly what I needed</a>.</p>
http://stackoverflow.com/questions/1722710/connection-failed-when-deploying-with-capistrano-in-snow-leopard0Connection Failed when Deploying with Capistrano in Snow LeopardWes Baker2009-11-12T14:48:11Z2009-11-17T15:17:33Z
<p>I'm trying to deploy a PHP project using Capistrano. When I try to do a <code>cap deploy</code>, I get an error:</p>
<pre><code>wes:/var/www/nipponpulse [svn:] → cap deploy
* executing `deploy'
** transaction: start
* executing `deploy:update_code'
executing locally: "svn info https://newcitymedia.svn.beanstalkapp.com/nippon_pulse/expressionengine -rHEAD"
/opt/local/bin/svn
* executing "svn checkout -q -r94 https://newcitymedia.svn.beanstalkapp.com/nippon_pulse/expressionengine /var/www/nipponpulse/releases/20091117150904 && (echo 94 > /var/www/nipponpulse/releases/20091117150904/REVISION)"
servers: ["192.168.2.42"]
*** [deploy:update_code] rolling back
* executing "rm -rf /var/www/nipponpulse/releases/20091117150904; true"
servers: ["192.168.2.42"]
** [deploy:update_code] exception while rolling back: Capistrano::ConnectionError, connection failed for: 192.168.2.42 (NoMethodError: private method `split' called for 42:Fixnum)
connection failed for: 192.168.2.42 (NoMethodError: private method `split' called for 42:Fixnum)
</code></pre>
<p>Here's the recipe I'm using <a href="http://pastie.textmate.org/private/7mix7xhbf3ozwjskwt5orq" rel="nofollow">http://pastie.textmate.org/private/7mix7xhbf3ozwjskwt5orq</a>. I'm using Snow Leopard and here's my list of gems (using <code>sudo gem list --local</code>):</p>
<pre><code>actionmailer (2.3.4, 2.2.2, 1.3.6)
actionpack (2.3.4, 2.2.2, 1.13.6)
actionwebservice (1.2.6)
activerecord (2.3.4, 2.2.2, 1.15.6)
activeresource (2.3.4, 2.2.2)
activesupport (2.3.4, 2.2.2, 1.4.4)
acts_as_ferret (0.4.4, 0.4.3)
adamcooke-key-installer (1.1)
capistrano (2.5.9, 2.5.2)
cgi_multipart_eof_fix (2.5.0)
daemons (1.0.10)
defunkt-github (0.3.4)
dnssd (1.3.1, 1.3, 0.6.0)
fastthread (1.0.7, 1.0.1)
fcgi (0.8.7)
ferret (0.11.6)
gem_plugin (0.2.3)
highline (1.5.1, 1.5.0)
hpricot (0.8.1, 0.6.164)
json_pure (1.1.9)
libxml-ruby (1.1.3, 1.1.2)
mongrel (1.1.5)
needle (1.3.0)
net-scp (1.0.2, 1.0.1)
net-sftp (2.0.2, 2.0.1, 1.1.1)
net-ssh (2.0.15, 2.0.4, 1.1.4)
net-ssh-gateway (1.0.1, 1.0.0)
open4 (0.9.6)
rack (1.0.1, 1.0.0)
rails (2.3.4, 2.2.2, 1.2.6)
rake (0.8.7, 0.8.3)
RedCloth (4.2.2, 4.1.1)
ruby-openid (2.1.7, 2.1.2)
ruby-yadis (0.3.4)
rubygems-update (1.3.5)
rubynode (0.1.5)
sqlite3-ruby (1.2.5, 1.2.4)
termios (0.9.4)
vlad (2.0.0)
xmpp4r (0.5, 0.4)
</code></pre>
<p>When I run <code>ruby -v</code> I see this:</p>
<pre><code>ruby 1.8.7 (2008-08-11 patchlevel 72) [universal-darwin10.0]
</code></pre>
<p>I'm not sure why it's failing. My experience with rails and ruby in general is slim to none, but I've used Capistrano in the past and it has worked on this machine. Is there something specific with Snow Leopard that I need to fix? </p>
<p><strong>Edit:</strong> updated the error</p>
http://stackoverflow.com/questions/1176652/cruisecontrol-rb-running-cruise-rake-task-with-current-revision-as-parameter1CruiseControl.rb: running cruise rake task with current revision as parameterkrautsalat2009-07-24T09:42:11Z2009-11-16T16:13:43Z
<p>Hi,</p>
<p>when CruiseControl.rb wants to perform an integration test it looks for a rake task called "cruise" within the project and executes it. </p>
<p>Is there a way to hand over the current revision number to that task?
I'm deploying an app using capistrano on a remote machine after integration tests. Because capistrano will deploy the HEAD revision if no special revision is passed, I'd like to tell it to use cc.rb's last checked revision...</p>
<p>any ideas?</p>
http://stackoverflow.com/questions/1731945/multiple-webs-on-a-server-using-capistrano1Multiple webs on a server using capistranoRichard Ibarra Ramírez2009-11-13T21:09:25Z2009-11-15T12:44:18Z
<p>Is there any way to configure Capistrano for deploying many webs on a server?
I would like to have a project on port 80 an other project on port 1000 and manage each one with different dbs.</p>
http://stackoverflow.com/questions/1736365/automate-deployment-of-files-to-amazon-s32Automate deployment of files to Amazon S3?Toby Hede2009-11-15T02:28:34Z2009-11-15T02:37:15Z
<p>I have a Rails project that I will be deploying to the spectacularly awesome <a href="http://heroku.com" rel="nofollow">Heroku</a>.</p>
<p>I would really like to be able to automate pushing my resources to Amazon S3 automatically, resources in this case being my images, stylesheets and javascript. </p>
<p>Obviously I can write some sort of capistrano task to do this myself, but does anyone know of something that does this already?</p>
<p>Note: I don't need to be able to upload user-files to S3 as I do that already via paperclip. I am talking about the actual project files required to run the site. </p>
http://stackoverflow.com/questions/1719266/starting-delayedjob-at-startup2Starting delayed_job at startupmap72009-11-12T01:23:30Z2009-11-12T08:35:11Z
<p>I'm using delayed_job with capistrano and would like a way to start delayed_job on startup of the web application using the 'script/delayed_job start'. This way capistrano can restart it on deploy. If the server gets rebooted then my delayed_jobs should start up with the project.</p>
<p>How can I do this?
Should I be looking at doing this in the environment files or as an initializer?</p>
http://stackoverflow.com/questions/1705090/passenger-nginx-and-capistrano-passenger-not-launching-rails-app-at-all0Passenger, Nginx, and Capistrano - Passenger not launching Rails app at allThrolkim2009-11-10T01:20:51Z2009-11-10T12:26:44Z
<p>Essentially, my route is working perfectly, Passenger seems to be loading - all is hunky-dory. Except that nothing Railsy happens. Here's my Nginx log from starting the server to the first request (ignore the different domain/route - it's because I haven't moved the new domain over yet, and it's returning a 403 error because there's no index file in the public folder):</p>
<pre><code>[ pid=24559 file=ext/nginx/HelperServer.cpp:826 time=2009-11-10 00:49:13.227 ]:
Passenger helper server started on PID 24559
[ pid=24559 file=ext/nginx/HelperServer.cpp:831 time=2009-11-10 00:49:13.227 ]:
Password received.
2009/11/10 00:49:53 [error] 24578#0: *1 directory index of "/var/www/imayges.co.uk/current/public/" is forbidden, client: 188.221.195.27, server: robertmay.me.uk, request: "GET / HTTP/1.1", host: "robertmay.me.uk"
2009/11/10 00:49:54 [error] 24578#0: *1 open() "/var/www/imayges.co.uk/current/public/favicon.ico" failed (2: No such file or directory), client: 188.221.195.27, server: robertmay.me.uk, request: "GET /favicon.ico HTTP/1.1", host: "robertmay.me.uk", referrer: "http://robertmay.me.uk/"
</code></pre>
<p>Someone on the RubyOnRails IRC channel suggested that it might be a webserver permissions problem. I had a suspicion that it might be a filesystem permission problem, but then Nginx runs as www-data and Passenger as root.</p>
<p>I can load static files from within the public directory fine, but no Rails application is being launched. Does anyone have an idea? My head is gradually melting away figuring this one out!</p>
<p>Edit: Here's the vhost file:</p>
<pre><code>server {
listen 80;
server_name robertmay.me.uk;
passenger_enabled on;
location / {
root /var/www/imayges.co.uk/current/public;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
</code></pre>
http://stackoverflow.com/questions/1556769/deploying-rails-application-to-multiple-environments1Deploying rails application to multiple environmentsTony2009-10-12T20:36:04Z2009-11-05T17:43:08Z
<p>I am getting ready to deploy to a true production environment. When I say true I mean that my current production environment will now be staging because there is other crap on the server and I am creating a new larger slice for what will actually be my production machine.</p>
<p>The capistrano-ext gem has made separating the deploy recipes quite easy. However, one issue I run into is getting my code from one slice to another. I have a git repo set up on my staging slice that I will be using for production. The flow will be:</p>
<p>Develop locally
Test locally
Push from local to stage
Test on stage
Push from stage to production
...</p>
<p>Therefore I obviously need a way to establish a secure connection between staging and production. When deploying to production, I get a "Permission denied (publickey)." error because this is not set up. How can I establish this connection? Do I need to generate keys on my production server and put the public on my staging? How do I know what user on my production server is trying to connect to my staging server?</p>
http://stackoverflow.com/questions/1675464/how-can-i-combine-these-git-commands1How can I combine these git commands?Shpigford2009-11-04T17:40:06Z2009-11-04T17:55:28Z
<p>I do the following string of commands for git and my fingers are getting tired of typing them. :)</p>
<pre><code>git add .
git commit -m 'Some message'
git push
cap deploy
</code></pre>
<p>How can I combine those (including adding a message) into a single command, like "git booyah" or something?</p>