Linux : sudo yum updates not working
Try to do a sudo yum updates
command this morning on one of my DigitalOcean droplets today and encounter weird error messages.
Everything was running fine until it suddenly stops and vomit out the word Killed
. Further attempts of sudo yum updates
and yum-complete-transaction
also did not end well.
Only after doing a ps -ef | grep defunct
command that I realized what is the problem. There are couple of zombie Apache processes that sucking up the memory and thus causing yum updates to fail.
To fix the problem :
shutdown Apache with
sudo /etc/init.d/httpd stop
kill -9
all the zombie process
and this time sudo yum updates
works!
NOTE : this situation is unique to me and as for yours...you need to find out which process is taking up the memory. It could be something other that Apache.
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+26.6k Golang : dial tcp: too many colons in address
+29k Golang : Get time.Duration in year, month, week or day
+11.6k Golang : Pagination with go-paginator configuration example
+6.6k Golang : Fixing Gorilla mux http.FileServer() 404 problem
+7.5k Golang : Get all countries phone codes
+10.2k Golang : Simple File Server
+15.2k Golang : Convert date format and separator yyyy-mm-dd to dd-mm-yyyy
+5.1k Unix/Linux/MacOSx : Get local IP address
+12.6k Golang : Calculate elapsed years or months since a date
+15.6k Golang : convert string or integer to big.Int type
+15.5k Golang : Loop each day of the current month example
+22.2k Golang : Read a file into an array or slice example