Hey all,
I'm wondering if there is a way to get a list of installed packages on my linux servers through Solarwinds/SAM?
Thanks
Go to the node and List Resources and make sure that Asset Inventory is selected.
Then go to the Asset Inventory view for that node (once its had a chance to poll):
And you should see a Software Inventory, that lists every installed package on your system.
Awesome! Thank you! Do you know if theres a way to generate a report with a list of installed packages per node? The provided Software Inventory Report only lists applications aggregated across all selected nodes, not divided by node.
Easiest way is probably to create SQL report.
Try this for a starter, the DetailsURL will allow you to hyperlink the Caption.
SELECT n.Caption, ai.NodeID ,ai.Name ,ai.Version ,ai.Publisher ,ai.InstallDate
,'/Orion/NetPerfMon/NodeDetails.aspx?NetObject=N:'+CAST(ai.NodeID AS varchar(256)) as 'DetailsURL'
FROM AssetInventory_Software ai
INNER JOIN Nodes n ON n.NodeID = ai.NodeID
WHERE n.Vendor LIKE 'Linux'