all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Ted Zlatanov <tzz@lifelogs.com>
To: help-gnu-emacs@gnu.org
Subject: Re: run ssh in emacs
Date: Thu, 15 Jan 2015 16:10:21 -0500	[thread overview]
Message-ID: <m24mrr92de.fsf@lifelogs.com> (raw)
In-Reply-To: 87d26frdrl.fsf@bach.histomat.net

On Thu, 15 Jan 2015 15:26:54 -0500 Haines Brown <haines@histomat.net> wrote: 

HB> Ted Zlatanov <tzz@lifelogs.com> writes:
>> What does `auth-sources' contain?
>> 
>> Turn `auth-source-debug' to 'trivia to see useful debug logs in
>> *Messages*.  That will help you figure out what's going wrong, and what
>> specifically is needed in the .authinfo file.

HB> Thanks, Ted, but I've made no progress. Auth-sources is new to me. I've
HB> managed for years without being aware of it. I suppose that's because
HB> its defaults suited my needs. Now I'm variouly told it is both a library
HB> and a variable, which leaves me uncomfortable.

`auth-sources' is a variable (the `quoted' format is standard in the
Emacs community).  So is `auth-source-debug'.  auth-source.el is a library.

You may want to consult (info "auth") to learn more about the library.

HB> This ~/.emacs.d/elisp/tramp is an init file that has only these lines:

HB>      (set auth-source-debug `trivia)
HB>      (setq tramp-default-method "ssh")
HB>      (require 'auth-source) 
HB>      (customize-variable 'auth-sources) 

HB> The second line is because I use SSH most often with LAN hosts. The
HB> third and fourth lines probably unecessary.

Yes, the third is superfluous and the fourth is probably wrong.

More importantly, (set auth-source-debug `trivia) is just wrong.  You
mean to use `setq' there, but you should just customize the variable:

`M-x customize-variable RET auth-source-debug'

Save the customization.  Done.  Learn this method and use it for all
variables you want to change.  The interface is very helpful.

Do the same for `tramp-default-method' to set it to "ssh" as you desire.
There's no reason to run these only when you use Tramp.

HB> I now do C-x C-f /HostName.com:

HB>   ssh: Could not resolve hostname HostName.com. Name or server not known
HB>   Tramp: Waiting for prompts...

HB>   In *Messages* buffer:

HB>     Loading tramp... done
HB>     Tramp: Opening Connection for HostName.com using ssh
HB>     Tramp: Sending command `exec ssh -e None HostName.com

Erm, you're using SSH in your example but we started with FTP...

With SSH, this will have nothing to do with auth-source. SSH has its own
authentication system, typically managed through ssh-agent and so on.

HB> Beucase the web server wants the ftp protocol, my .authinfo file has the
HB> line:
 
HB>   machine HostName.com port ftp login Benutzer password Geheim

HB> apparently this value for port is not seen. It seems the authinfo file
HB> not being accessed at all, although it is accessed when I SSH to LAN
HB> hosts.

Set `auth-source-debug' to 'trivia as requested, then open
`/ftp:username@hostname.com' and see what shows up in the *Messages*
buffer (to see it, type `C-x b *Messages*').

Ted


  reply	other threads:[~2015-01-15 21:10 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-12 19:32 run ssh in emacs Haines Brown
2015-01-12 19:42 ` Tory S. Anderson
2015-01-13 12:38   ` Haines Brown
2015-01-13 13:04     ` Nikolay Kudryavtsev
2015-01-13 13:18       ` Tory S. Anderson
2015-01-13 13:21       ` Michael Albinus
2015-01-13 13:18     ` Tory S. Anderson
2015-01-13 13:28       ` Michael Albinus
2015-01-13 14:29     ` Tory S. Anderson
2015-01-13 15:16       ` Haines Brown
2015-01-13 15:23         ` Tory S. Anderson
2015-01-13 18:11           ` Haines Brown
2015-01-14  4:26             ` Bob Proulx
     [not found]         ` <mailman.17817.1421162618.1147.help-gnu-emacs@gnu.org>
2015-01-15 16:26           ` Haines Brown
2015-01-15 17:19             ` Ted Zlatanov
2015-01-15 20:26               ` Haines Brown
2015-01-15 21:10                 ` Ted Zlatanov [this message]
2015-01-16 17:18                   ` Haines Brown
2015-01-16 19:59                     ` Michael Albinus
     [not found]                     ` <mailman.18043.1421438398.1147.help-gnu-emacs@gnu.org>
2015-01-16 20:55                       ` Haines Brown
2015-01-16 21:34                         ` Dan Espen
2015-01-16 21:36                         ` Michael Albinus
2015-01-17 12:17                           ` Haines Brown
2015-01-17 17:12                             ` Michael Albinus
     [not found]                             ` <mailman.18073.1421514787.1147.help-gnu-emacs@gnu.org>
2015-01-17 20:15                               ` Haines Brown
2015-01-17 23:32                                 ` Dan Espen
2015-01-18 12:29                                   ` Haines Brown
2015-01-19  2:15                                     ` Dan Espen
     [not found]                           ` <mailman.18064.1421497097.1147.help-gnu-emacs@gnu.org>
2015-01-17 14:13                             ` Dan Espen
     [not found]       ` <mailman.17814.1421162216.1147.help-gnu-emacs@gnu.org>
2015-01-13 16:59         ` Dan Espen
     [not found]     ` <mailman.17800.1421154285.1147.help-gnu-emacs@gnu.org>
2015-01-14 12:14       ` Haines Brown
2015-01-14 19:55         ` Bob Proulx

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m24mrr92de.fsf@lifelogs.com \
    --to=tzz@lifelogs.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.