Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note
You should export JAVA_HOME in your .bashrc or .profile file.

Setup Passwordless SSH 

The You need to be able to ssh to localhost without having to specify a password. The method used to set up passwordless SSH keys depends on whether you're downloading the Trafodion source directly using hub clone.

...

You've set up your ssh keys using the method described in https://github.com/settings/ssh, which means that you already have an existing set of ssh keys. Simply copy both the id_rsa.pub and  and id_rsa.ppk to pub to the ~/.ssh directory.

Then, do the following:

Code Block
languagetext
titleModify the ssh Environment
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
chmod 600 ~/.ssh/id_rsa.ppkpub
echo "NoHostAuthenticationForLocalhost=yes" >>~/.ssh/config
chmod go-w ~/.ssh/config

...