Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mhauff65

  1. mhauff65

    Removing unwanted characters

    Thank You Thank You Thank You. Nice and Clean! Thanks for your help.
  2. mhauff65

    Removing unwanted characters

    Hello Here's the code ps -ef |grep pmon |grep -v grep |awk '{print $9}' which returns this: ora_pmon_DEV_ORCL1 ora_pmon_ORCL2 ora_pmon_DEV_ORCL3 ora_pmon_ORCL4 ora_pmon_DEV_ORCL5 When I tried another iteration to awk to just get the SIDS with this code: ps -ef |grep pmon |grep -v grep |awk...
  3. mhauff65

    SSH prompting for a password

    QatQat Thanks for your suggestion. Here's the output from the command: [oracle@exproserv03 ~]$ ssh -i /home/oracle/.ssh/id_rsa exproserv oracle@exproserv's password: I've created these keys without a pass phrase. The .ssh directory has the proper permissions of 600 on them. I have appended...
  4. mhauff65

    SSH prompting for a password

    Folks I apologize. I have set permissions on the authorized_keys2 to 600, and I have appended the id_rsa.pub to the authorized_keys2 file. here are the commands I've used: chmod 600 .ssh/* cat id_rsa.pub >> .ssh/authorized_keys2
  5. mhauff65

    SSH prompting for a password

    Problem: I have generated key pairs using RSA on all three servers. I have copied the id_rsa.pub to the /$HOME/.ssh of all three servers involved. The permissions on .ssh/* are 600. Server A can ssh to server B & C without a password. server B can ssh to server C and vice versa; however server...

Part and Inventory Search

Back
Top