Announcements

SecurID® Discussions

Browse the SecurID discussion board to get product help and collaborate with other SecurID users.
JimWhiting
Beginner
Beginner

RSA Authentication Manager version via command line?

Jump to solution

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

Labels (1)
0 Likes
1 Solution

Accepted Solutions
MHelmy
Moderator Moderator
Moderator

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

View solution in original post

2 Replies
MHelmy
Moderator Moderator
Moderator

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

JimWhiting
Beginner
Beginner

Perfect - Thank you very much

0 Likes