ruby-on-rails – 上限生成部署错误Net :: SSH :: Authenticatio
发布时间:2020-12-17 01:35:41 所属栏目:百科 来源:网络整理
导读:http://www.sitepoint.com/deploy-your-rails-app-to-aws/ 我正在按照本教程将我的Rails应用程序部署到Amazon EC2,直到我告诉我这样做: cap production deploy 当我在我的代码所在的文件夹中键入它时,我收到此错误: ** Invoke production (first_time)** E
http://www.sitepoint.com/deploy-your-rails-app-to-aws/
我正在按照本教程将我的Rails应用程序部署到Amazon EC2,直到我告诉我这样做: cap production deploy 当我在我的代码所在的文件夹中键入它时,我收到此错误: ** Invoke production (first_time) ** Execute production ** Invoke load:defaults (first_time) ** Execute load:defaults ** Invoke bundler:map_bins (first_time) ** Execute bundler:map_bins ** Invoke rvm:hook (first_time) ** Execute rvm:hook ** Invoke rvm:check (first_time) ** Execute rvm:check DEBUG [be2a201f] Running ~/.rvm/bin/rvm version as deploy@54.152.90.79 DEBUG [be2a201f] Command: ~/.rvm/bin/rvm version cap aborted! SSHKit::Runner::ExecuteError: Exception while executing as deploy@54.152.90.79: Authentication failed for user deploy@54.152.90.79 /Users/Minling/.rvm/gems/ruby-2.2.1/gems/sshkit-1.7.1/lib/sshkit/runners/parallel.rb:16:in `rescue in block (2 levels) in execute' /Users/Minling/.rvm/gems/ruby-2.2.1/gems/sshkit-1.7.1/lib/sshkit/runners/parallel.rb:12:in `block (2 levels) in execute' Net::SSH::AuthenticationFailed: Authentication failed for user deploy@54.152.90.79 /Users/Minling/.rvm/gems/ruby-2.2.1/gems/net-ssh-3.0.1/lib/net/ssh.rb:239:in `start' /Users/Minling/.rvm/gems/ruby-2.2.1/gems/sshkit-1.7.1/lib/sshkit/backends/connection_pool.rb:50:in `call' /Users/Minling/.rvm/gems/ruby-2.2.1/gems/sshkit-1.7.1/lib/sshkit/backends/connection_pool.rb:50:in `create_new_entry' /Users/Minling/.rvm/gems/ruby-2.2.1/gems/sshkit-1.7.1/lib/sshkit/backends/connection_pool.rb:22:in `checkout' /Users/Minling/.rvm/gems/ruby-2.2.1/gems/sshkit-1.7.1/lib/sshkit/backends/netssh.rb:187:in `with_ssh' /Users/Minling/.rvm/gems/ruby-2.2.1/gems/sshkit-1.7.1/lib/sshkit/backends/netssh.rb:137:in `block in _execute' /Users/Minling/.rvm/gems/ruby-2.2.1/gems/sshkit-1.7.1/lib/sshkit/backends/netssh.rb:133:in `tap' /Users/Minling/.rvm/gems/ruby-2.2.1/gems/sshkit-1.7.1/lib/sshkit/backends/netssh.rb:133:in `_execute' /Users/Minling/.rvm/gems/ruby-2.2.1/gems/sshkit-1.7.1/lib/sshkit/backends/netssh.rb:77:in `capture' /Users/Minling/.rvm/gems/ruby-2.2.1/gems/capistrano-rvm-0.1.2/lib/capistrano/tasks/rvm.rake:9:in `block (3 levels) in <top (required)>' /Users/Minling/.rvm/gems/ruby-2.2.1/gems/sshkit-1.7.1/lib/sshkit/backends/netssh.rb:54:in `instance_exec' /Users/Minling/.rvm/gems/ruby-2.2.1/gems/sshkit-1.7.1/lib/sshkit/backends/netssh.rb:54:in `run' /Users/Minling/.rvm/gems/ruby-2.2.1/gems/sshkit-1.7.1/lib/sshkit/runners/parallel.rb:13:in `block (2 levels) in execute' 我想我正确地遵循了教程中的所有内容.这是我第一次使用EC2,我应该如何解决这个问题? 这是我的deploy.rb文件 # config valid only for current version of Capistrano lock '3.4.0' set :application,'studentdiscount' set :repo_url,'git@github.com:minling/StudentDiscount.git' set :branch,:master set :deploy_to,'/home/deploy/studentdiscount' set :pty,true set :linked_files,%w{config/database.yml config/application.yml} set :linked_dirs,%w{bin log tmp/pids tmp/cache tmp/sockets vendor/bundle public/system public/uploads} set :keep_releases,5 set :rvm_type,:user set :rvm_ruby_version,'jruby-1.7.19' # Edit this if you are using MRI Ruby set :puma_rackup,-> { File.join(current_path,'config.ru') } set :puma_state,"#{shared_path}/tmp/pids/puma.state" set :puma_pid,"#{shared_path}/tmp/pids/puma.pid" set :puma_bind,"unix://#{shared_path}/tmp/sockets/puma.sock" #accept array for multi-bind set :puma_conf,"#{shared_path}/puma.rb" set :puma_access_log,"#{shared_path}/log/puma_error.log" set :puma_error_log,"#{shared_path}/log/puma_access.log" set :puma_role,:app set :puma_env,fetch(:rack_env,fetch(:rails_env,'production')) set :puma_threads,[0,8] set :puma_workers,0 set :puma_worker_timeout,nil set :puma_init_active_record,true set :puma_preload_app,false set :ssh_options,{ user: 'deploy',keys: %w(~/.ssh/student-discount-ec2.pem),forward_agent: true } # Default branch is :master # ask :branch,`git rev-parse --abbrev-ref HEAD`.chomp # Default deploy_to directory is /var/www/my_app_name # set :deploy_to,'/var/www/my_app_name' # Default value for :scm is :git # set :scm,:git # Default value for :format is :pretty # set :format,:pretty # Default value for :log_level is :debug # set :log_level,:debug # Default value for :pty is false # set :pty,true # Default value for :linked_files is [] # set :linked_files,fetch(:linked_files,[]).push('config/database.yml','config/secrets.yml') # Default value for linked_dirs is [] # set :linked_dirs,fetch(:linked_dirs,[]).push('log','tmp/pids','tmp/cache','tmp/sockets','vendor/bundle','public/system') # Default value for default_env is {} # set :default_env,{ path: "/opt/ruby/bin:$PATH" } # Default value for keep_releases is 5 # set :keep_releases,5 namespace :deploy do after :restart,:clear_cache do on roles(:web),in: :groups,limit: 3,wait: 10 do # Here we can do anything such as: # within release_path do # execute :rake,'cache:clear' # end end end 有一部分我有点困惑:(但不是我认为错误的原因,因为我有这个问题,因为身份验证错误?) set :rvm_ruby_version,'jruby-1.7.19' # Edit this if you are using MRI Ruby 我不是在使用jruby,我应该把它放在那里呢?我如何找到MRI版本? 解决方法
我有同样的错误.我解决了这个问题:
ssh-add ~/.ssh/student-discount-ec2.pem (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- ruby-on-rails – 生成导轨模型用于放弃迁移
- 只需更改iPhone应用程序的应用程序可执行文件的名称即可
- ajax 检测用户名是否被占用
- ruby-on-rails – 嵌入Git提交登录Rails应用程序?
- oracle – 用于自定义类型的implode函数的PL / SQL
- objective-c – Xcode中NSManagedObject属性的默认值
- c# – 在Web Api控制器中无法识别Json方法
- 仿百度文库方案[openoffice.org 3+swftools+flexpaper](六)
- 对于oracle对session进行跟踪的分析
- vue iview实现动态路由和权限验证功能