Dear Wiki user, You have subscribed to a wiki page or wiki category on "Lucene-hadoop Wiki" for change notification.
The following page has been changed by masukomi: http://wiki.apache.org/lucene-hadoop/QuickStart ------------------------------------------------------------------------------ {{{ ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys - You should then try - ssh-add ~/.ssh/id_dsa }}} + Now, try `ssh localhost` again. If this doesn't work you're doing to have to figure out what's going on with your `ssh-agent` on your own. - Which should prompt you for your password. Once entered anything running under this shell will be able to use that key. However if you get the following message "Could not open a connection to your authentication agent." then your session is not running under the ssh-agent. You can get around this by restarting a new shell under the ssh-agent by running - - {{{exec ssh-agent tcsh}}} - - Where tcsh can be replaced with your shell of choice. '''Mac Users''' You'll probably need to install something like [http://www.sshkeychain.org/ SSHKeychain] or [http://www.mothersruin.com/software/SSHChain/ SSHChain] (no idea which is better) to be able to ssh to a computer without having to enter the password every time. This is due to the fact that ssh-agent was designed for X11 systems and OS X isn't an X11 system.