Displaying 20 results from an estimated 10000 matches similar to: "ssh problem"
2009 Apr 16
3
deprec problem
I install deprec with gem install deprec
but when i write deprec --apply-to . this message display to me
" ''deprec'' is not recognized as an internal or external command,
operable program or batch file. "
what can i do?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on
2007 Jun 06
0
Capistrano: Port in SVN
. . .
* executing "sudo chmod -R g+w /usr/local/svn/project_name"
servers: ["project_name.com"]
[project_name.com] executing command
command finished
* executing task svn_import
Adding branches and tags
ssh: connect to host project_name.com port 22: Connection refused
svn: Connection closed unexpectedly
Importing application.
ssh: connect to host
2006 Dec 04
0
deprec - deployment recipes for capistrano
http://codemode.blogspot.com/2006/11/deprec-install-rails-stack-and-deploy.html
deprec is a new rubygem to make deployment of your Rails app with
Capistrano a breeze.
cap install_rails_stack
This recipe installs everything you need to prepare an Ubuntu linux
6.06 server to host
your Rails application:
- apache 2.2 with mod_proxy_balancer
- mongrel & mongrel cluster
- rails
- mysql
These
2006 Apr 22
1
Capistrano - SSH Port
I''ve been deploying with Capistrano for a while now, and have had no
problems... until now.
When I try and do a "cap deploy", cap tries to connect to my remote server
via SSH on port 22... even though in my deploy.rb, I''ve had the following
set:
ssh options[:port] = 8081
I did a "sudo gem update --remote capistrano", and I''m up to speed on the
2006 Sep 10
0
capistrano ssh login problem
Hi all,
When I run rake remote:exec ACTION=setup, I''m prompted for my password and
then I get an error and can''t connect. The trace is:
/usr/lib/ruby/gems/1.8/gems/net-ssh-1.0.9/lib/net/ssh/session.rb:129:in
`initialize''
/usr/lib/ruby/gems/1.8/gems/net-ssh-1.0.9/lib/net/ssh.rb:47:in `start''
2006 Jul 10
0
ssh issues with capistrano
Hi all,
I am trying to deploy my rails app on my remote host to another subdomain on
the same remote host
e.g from staging.mydomain.com to live.mydomain.com
but I can''t get ssh to authenticate in capistrano when I run >> rake
remote:exec ACTION=setup --trace (of cap-a setup)
I get this error:
[DEBUG] 2006-07-09T20:44:20.189599 -- userauth.driver: all authorization
methods
2007 Aug 25
3
Capistrano / Net-ssh install errors skipping require of...
I''m trying to find out why capistrano will not run on my computer.
I am running Ubuntu 6.06 dapper drake.
Rails 1.2.3
I get errors when i try to run cap -h or cap anything...
/usr/lib/ruby/gems/1.8/gems/net-ssh-1.1.2/lib/net/ssh/transport/ossl/hmac/none.rb:27:
uninitialized constant Net::SSH::Transport::OSSL::HMAC::Abstract
(NameError)
When i install net-ssh i get the message
2011 Jan 11
0
CentOS, mahmoud mansy has invited you to open a Gmail account
I've been using Gmail and thought you might like to try it out. Here's an
invitation to create an account.
You're Invited to Gmail!
mahmoud mansy has invited you to open a Gmail account.
Gmail is Google's free email service, built on the idea that email can be
intuitive, efficient, and fun. Gmail has:
*Less spam*
Keep unwanted messages out of your inbox with Google's
2007 Jan 12
1
capistrano setup bails with RegexpErr on show_tasks
I am new to RoR, but I have had RoR running with Capistrano on a
different box. However I''m installing a fresh copy now and am finding
constant regex errors from the standard.rb file while attempting to
"show_tasks". As this is a new installation, everything is up-to-date.
Here''s the environment:
FreeBSD 6.2-RC2
ruby 1.8.5
gem 0.9.0
rake 0.7.1
net-ssh 1.0.10, 1.0.9
2015 Sep 07
1
[PATCH] customize: Create .ssh as 0700 and .ssh/authorized_keys as 0600 (RHBZ#1260778).
Both ssh-copy-id and ssh create .ssh as 0700. ssh-copy-id creates
.ssh/authorized_keys as 0600.
Thanks: Ryan Sawhill for finding the bug.
---
customize/ssh_key.ml | 4 ++--
src/guestfs.pod | 17 +++++++++++++++++
2 files changed, 19 insertions(+), 2 deletions(-)
diff --git a/customize/ssh_key.ml b/customize/ssh_key.ml
index 09664bf..dd6056f 100644
--- a/customize/ssh_key.ml
+++
2006 Jun 28
0
Capistrano Command Worries
Hey all,
I have a problem that I cannot wrap my head around. I have a
capistrano task to kill my lighttpd process and restart it. Here is
the subtask, stop_lighttpd, that fails:
task :stop_lighttpd, :roles => :web do
run "kill -9 `ps aux | grep lighttpd | grep #{deploy_to} | awk
''{print $2}''` > /dev/null"
end
I know for a fact that when stop_lighttp is
2006 Apr 20
1
Capistrano not working for me
Hello fellow railers,
I''m new to the whole RoR thing and I have finished installing and setting
everything up on my OSX G4 Powerbook. I followed the step by step
instructions at Hivelogic, running lighttpd and everything else. I''m having
an issue with Capistrano.
I''m following the tutorial at Apple:
http://developer.apple.com/tools/rubyonrails.html
Everything in
2006 Mar 28
1
Capistrano: env not setup properly over ssh
Hi,
If I make a Capistrano task like
task :test, :roles => :app do
run "env"
end
It prints something completely different than if I just do
ssh login@host env
I need all my login scripts to run so all my environment vars (including
PATH) are set. All my Capistrano tasks are failing because the paths
are setup properly.
Thanks for the help.
--
Posted via
2007 Jul 29
3
capistrano problems
I installed capistrano and have tried several things. Can''t seem to get
it working.
This is what i am getting.
C:\ruby\radrails\modernfossil>cap deploy
* executing `deploy''
* executing `deploy:update''
** transaction: start
* executing `deploy:update_code''
svn: Can''t create tunnel: The system cannot find the file specified.
***
2006 May 17
1
capistrano and svn+ssh on non-standard port
Hi,
I have ssh configured with a non-standard port, and I use svn+ssh to
access to my repository. As the svn+ssh protocol doesn''t support the
colon convention to specify the port, I export the SVN_SSH variable in
.bashrc, like this...
SVN_SSH="ssh -p 2323"
Now I can do a checkout from the command like using something like
this...
svn checkout
2006 May 25
5
Weird Capistrano problem
I''m having problems launching the spin process via the deploy.rb task.
Everything works great when is run the script manually via:
% ssh admin@monterey.example.net /Web/Rails/Example/current/script/spin
However, when I run ''cap spinner'' or ''rake remote:exec ACTION=spinner'',
I get the following errors:
% cap spinner
loading configuration
2016 Mar 19
3
ssh-copy-id no newline bug
When editing ~/.ssh/authorized_keys manually, sometimes users forget
to add a newline at the end of the file, causing the next ssh-copy-id
call to append a new key to an existing key, invalidating both keys.
This can be fixed by simply adding a newline before appending the key.
Something like this change to
openssh-source/openssh-6.7p1/contrib/ssh-copy-id might work:
# Assuming that the remote
2016 Mar 22
4
ssh-copy-id no newline bug
Michael Stone <mstone at mathom.us> writes:
> On Sun, Mar 20, 2016 at 08:30:33PM +0000, Colin Watson wrote:
>>How about something like:
>>
>> if [ "$(sed -n '${s/.*//;p}' ~/.ssh/authorized_keys | wc -l)" = 0 ]; then
>> echo >> ~/.ssh/authorized_keys
>> fi
>>
>>I feel like there must be a neater but still portable way
2003 Aug 22
0
[PATCH] Small tweak to contrib/cygwin/ssh-user-config
Hi,
could somebody with checkin rights please apply the following patch
to contrib/cygwin/ssh-user-config? It just appends the RSA2 and DSA
keys to .ssh/authorized_keys instead of .ssh/authorized_keys2.
TIA,
Corinna
Index: contrib/cygwin/ssh-user-config
===================================================================
RCS file: /cvs/openssh_cvs/contrib/cygwin/ssh-user-config,v
retrieving
2008 Jan 31
1
RFC: ssh-copy-id tweaks
I'd like to propose a couple of tweaks to ssh-copy-id:
o Change the default ID_FILE from identity.pub to id_dsa.pub or perhaps
{id_dsa,id_rsa,identity}.pub to cover all the bases, although the
patch below deals only with id_dsa.pub - it would need some more
tweaking to deal with more than one (possibly non-existent) file.
o If the destination authorized_keys file already contains the