How to check the storage usage for each repository
For getting information on repository usage memory .
Check your repositories here using below URL :
For getting information on repository usage memory .
Check your repositories here using below URL :
When we want to find a list of processes running on a Linux box, we use.
ps -fax
ps -fax | grep httpd
or
ps -ef | grep httpd
To know the number of httpd processes running apply ‘wc -l’ command like
ps -fax | grep httpd | wc -l
ps -ef | grep httpd | wc -l