- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
RSA Authentication Manager version via command line?
How can I capture the Version of RSA Authentication Manager via command line? we have a requirement to validate the version we are running on a daily bases. If we could do this via command line, I can script it, thus not going through the GUI and printing it out every day.
Thanks in advance
- Tags:
- AM
- Auth Manager
- auth mgr
- Authentication Manager
- authentication manager 8.1
- Command Line
- Community Thread
- Discussion
- Forum Thread
- RSA Authentication Manager
- RSA SecurID
- RSA SecurID Access
- SecurID
- version
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If this is for AM 8.1, then try the below command as rsaadmin (its a bit cheesy, but should do the job):
rsaadmin@am81p:~> /opt/rsa/am/utils/rsautil -l | grep manage-secrets | grep -o "Manage Secrets .*" | cut -d ' ' -f 3
8.1.1.14.0
Edit 1: A more flexible command structure:
rsaadmin@am81p:~> /opt/rsa/am/utils/rsautil -l | tail -1 | rev | cut -d ' ' -f 2 | rev
8.1.1.14.0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If this is for AM 8.1, then try the below command as rsaadmin (its a bit cheesy, but should do the job):
rsaadmin@am81p:~> /opt/rsa/am/utils/rsautil -l | grep manage-secrets | grep -o "Manage Secrets .*" | cut -d ' ' -f 3
8.1.1.14.0
Edit 1: A more flexible command structure:
rsaadmin@am81p:~> /opt/rsa/am/utils/rsautil -l | tail -1 | rev | cut -d ' ' -f 2 | rev
8.1.1.14.0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Perfect - Thank you very much
