This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Flexera Community
- :
- Software Vulnerability Management
- :
- Software Vulnerability Manager Knowledge Base
- :
- Quick SVM On-Prem Diagnosis
Subscribe
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
Quick SVM On-Prem Diagnosis
Quick SVM On-Prem Diagnosis
This KB article provides a list of handy commands to quickly check the health status of your Software Vulnerability Manager On-Prem Server. We will update the article over time, so feel free to bookmark it.
Check system resources
View installed RAM on your server system:
cat /proc/meminfo
Show system memory usage in real-time:
top
Show the disk space consumption on the server:
df -h
Alternatively, you can install monitoring tool like Zabbix.
Check Important SVM Services
On Red Hat 6.x systems:
service --status-all | grep -e scandaemon -e mariadb -e sgdaemon -e httpd -e crond –e haproxy
On Red Hat 7.x systems:
systemctl list-units | grep -e scandaemon -e mariadb -e sgdaemon -e httpd -e crond - e haproxy
Verify server RPM version
rpm –qa | grep csi
Check Server Synchronization
Use this command to check the sync.log file when you need to determine if your server instance is actively downloading advisory updates from Flexera servers:
tail –n 30 /usr/local/Secunia/csi/log/sync.log
Test connections to Flexera (universal)
curl –v https://sync.secunia.com
Few Relevant Logs
/usr/local/Secunia/csi/logs/*
/var/log/messages
/var/log/mariadb/mariadb.log or
Re-run the Server Configuration Script
cd /usr/local/Secunia/csi/install
./installationProcess.sh
1
1493
No ratings
Comments
Nov 03, 2020
11:33 AM
- Mark as Read
- Mark as New
- Permalink
- Report Inappropriate Content
Nov 03, 2020
11:33 AM
Thank you, very much appreciated.