Need a server cert that has no password. Commands are:
(1) change directory into the grid-security directory: cd /etc/grid-security
(2) Generate the server key (with password): openssl genrsa -des3 -out server.key 1024
(3) Generate certificate *without a password*: openssl rsa -in server.key -out server.pem
(4) Create CSR (Certificate Signing Request) to affirm that the server key is valid. The server.pem is used in place of server.key as we don’t require a password:
openssl req -new -key server.pem -out server.csr
The information you are about to be asked to enter information will be incorporated into your certificate request as the Distinguished Name or a DN of the signed cert. [ If you enter ‘.’, the field will be left blank ]

