- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Self-service certificate information from command line using SSH
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
- Tags:
- AM
- Auth Manager
- Authentication Manager
- Community Thread
- Discussion
- Forum Thread
- RSA Authentication Manager
- RSA SecurID
- RSA SecurID Access
- SecurID
- self-service certificate
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
