Friday, September 14, 2012

SSH Connection between the linux hosts


Hello  folks,

Here I would like to give steps to build a SSH connection between two Linux hosts.

Example hosts: abc.com & xyz.com

  1. Login to abc.com
  2. Navigate to "$cd .ssh/" directory from root. Incase the directory is not available simply create it in root "/".
  3. Execute the following command "ssh-keygen -t rsa"
  4. Change the permissions to "id_rsa.pub" file "chmod 600 id_rsa.pub"
  5. Do cat id_rsa.pub and copy the content.
  6. Create "authorized_keys" file in same directory. Do vi and paste the content. If file is already exist paste the content at bottom of the file.
  7. Create "authorized_keys" file in .ssh/ directory in remote host (xyz.com). Do vi and paste the content.
  8. Perform steps 1 to 6 in remote host (xyz.com) and copy the content in "id_rsa.pub" and paste it in "authorized_keys" file in remote host(abc.com).
  9. Execute the following command to check the SSH connection.
    1. Login to abc.com
    2. $ssh xyz.com (First time it will ask password to login xyz.com)
    1. Execute same command in xyz.com to check ssh connection to abc.com.
Hope this post will useful.
Feel  free to post your comments if you any question regarding this…

Cheers!!!

Saturday, September 8, 2012

Oracle Access Manager 11gR2 Installation and Configuration

Hello folks,

 Here i would like to come up with information about installation and configuration of
"Oracle Access Manager 11gR2" in  Linux.

First of all let me give brief information about required setup files and OS software and hardware.

Required Dev Environment:- 
  • Linux OS
    • In my case it is Linux Redhat Enterprise edition Version 5.
  • RAM-4 GB
Required Setup files:-
  • Oracle Identity and Access Management 11g (11.1.2.0)
  • Oracle Access Manager Webgate (11.1.2.0)
  • Oracle Fusion Middleware Repository creation utility (11.1.2.0)
  • Oracle Data Base 11gR2.
All the required setups are available in Download

I will come up with all installation and configuration steps in my next post in soon.


Cheers!!!