How to enable rsh in aix

        1. How to enable rsh in aix
        2. On each node, use this command to verify that users can....

          To enable rsh, create a /.rhosts file on each target system.

        3. $HOME/.rhosts defines a list of client users who are not required to supply a login passw.
        4. On each node, use this command to verify that users can.
        5. Starting Veritas Volume Manager (VxVM) on the new node.
        6. Hi there, I am running a shell script on AIX machine (AIX-1).
        7. How to to rsh in AIX

          Hi, furthermore to ssh withoout password you can use below procedure.
          I hope the following steps will be helpful to you –

          1. Create a public ssh key, if you haven’t one already.

          Look at ~/.ssh.

          If you see a file named id_dsa.pub then you obviously
          already have a public key. If not, simply create one. ssh-keygen -t dsa
          should do the trick.

          Please note that there are other types of keys, e.g. RSA instead of DSA.

          I
          simply recomend DSA, but keep that in mind if you run into errors.

          1. Make sure your .ssh dir is 700:
            chmod 700 ~/.ssh

          2. Get your public ssh key on the server you want to login automatically.
            A simple scp ~/.ssh/id_dsa.pub [email protected]: is ok.

          3. Append the contents of your public key to the ~/.ssh/authorized_keys and
            remove it.

          Important: This must be done on the server you just copied your public key
          to.

          Otherwise you wouldn’t have had to copy it on your server.

          Simply issue something like —
          cat id_dsa.pub >> .ssh/authorized_keys while at your home directory.

          1. Instead of steps 3 and 4, you can issue something lik