On Mon, Dec 02, 2002 at 08:53:54PM -0800, Delia Alano wrote: > > Seasons Greetings! > > Hi to all PLUG members... > > Can u please help me with this... > > I was present during the PLUG LINUX free seminar held at Asia Pacific > College.... > > Am builing a Parallel Computing Cluster... > Can u please help me.. How to configure a remote logging without > prompting a password via RSH or SSH...
For SSH: First create a public/private key pair using ssh-keygen: ssh-keygen -t dsa DO NOT ENTER A PASSPHRASE WHEN PROMPTED. This will create two files: ~/.ssh/id_dsa and ~/.ssh/id_dsa.pub. Copy id_dsa.pub to the destination server you want to SSH into without a passphrase, and place it as ~/.ssh/authorized_keys. Make sure that your .ssh directory can only be entered by you and the authorized_keys file is readable only by you. You should then be able to ssh into the destination server without a password on any machine that has your private key file. Forget about RSH; it sucks a--. HTH, -- Rafael R. Sevilla <dido at imperium dot ph> +63(2)8123151 Software Developer, Imperium Technology Inc. +63(917)4458925 _ Philippine Linux Users Group. Web site and archives at http://plug.linux.org.ph To leave: send "unsubscribe" in the body to [EMAIL PROTECTED] Fully Searchable Archives With Friendly Web Interface at http://marc.free.net.ph To subscribe to the Linux Newbies' List: send "subscribe" in the body to [EMAIL PROTECTED]
