Announcements

SecurID® Discussions

Browse the SecurID discussion board to get product help and collaborate with other SecurID users.
ManiBhushan
Contributor
Contributor

Self-service certificate information from command line using SSH

Jump to solution

Hi

 

My RSA self-service certificating is expiring ,   I know from RSA Operational Console , we can view the expiry date. 

But I would also like to know the other way using command using SSH , to view the Certificate Information.

 

Thank you

Mani

Labels (1)
0 Likes
2 Solutions

Accepted Solutions
EdwardDavis
Employee
Employee

example: if Self Service IP is 10.101.99.150....

 

openssl s_client -connect 10.101.99.150:7004 2>/dev/null | openssl x509 -noout -text

View solution in original post

SrirangaPrasan1
Employee
Employee

Alternatively you can check for certificates directly from the java key store too.

cd to /opt/rsa/am/server/security and run command  ls -l *.jks

 

Run command - ../../appserver/jdk/jre/bin/keytool -list -keystore webserver-identity.jks -v to display certificates in the webserver keystore.

When you run this command it would prompt for a password and you can just use"enter" key and no password is required.

View solution in original post

2 Replies
EdwardDavis
Employee
Employee

example: if Self Service IP is 10.101.99.150....

 

openssl s_client -connect 10.101.99.150:7004 2>/dev/null | openssl x509 -noout -text

SrirangaPrasan1
Employee
Employee

Alternatively you can check for certificates directly from the java key store too.

cd to /opt/rsa/am/server/security and run command  ls -l *.jks

 

Run command - ../../appserver/jdk/jre/bin/keytool -list -keystore webserver-identity.jks -v to display certificates in the webserver keystore.

When you run this command it would prompt for a password and you can just use"enter" key and no password is required.