Mouse-zilla

April 2000, Colorado Springs

I found that a HUGE deer mouse was living in my garage.  The garage door had broken and provided a 3.5 inch clearance at one side.  I have since fixed, but it provided a haven for this mouse to drag food into a very protected environment.

This mouse was about 6 inches long, excluding his tail, which was at least 5 inches in itself.  NO he was not a RAT.  He had a furry tail.  I discovered him one evening when opening the interior garage door and having this mouse look up at me then waddle off.  I stared in disbelief because he was hurrying as fast as he could.  What a porker!

He discovered my bird seed up on a shelf, God knows how he pulled that hulk up there, so I placed the only trap I had with me, one of those sticky glue traps.

Monday night I check and I got him.  Geeez he is big, so I go get my leather gloves to take him off the shelf.  Grasping him around the body, he doubles over like a snake and bites my thumb piercing my heavy leather glove.  Well chucka Mouse became airborn and bounced off the cement wall on the other side of the garage.  He appeared to be quite dazed while still stuck on in the trap.  Meantime blood is pouring off my thumb.

Well now I am panicked thinking I just got rabies, Hanta virus, whatever…. My wife calls the doctor who proceeds to go down the list of symptoms to watch in me.  Meanwhile I find some channel lock pliers and carefully grab the sticky pad holding the dazed Mousezilla, and put into a cardboard box and set it outside the garage on the railroad tie retaining wall by the driveway.

Returning inside, my wife then asks me if I feel dizzy and nauseous.  “WHAT!?”, I say, “No!”.  

“Well the good news,” she says, “is that it appears that they don’t carry rabies and Hanta is pretty rare, but you need a Tetnus shot sometime in the next two days.  And if my thumb falls off, call the doctor immediately.”

“WHAT?!” Doctor has some sense of humor…  not well appreciated.

The bite is healing quite well, I sometimes think I feel dizzy.

I went to check out the box holding Mousezilla yesterday.  There is this big hole in the lid and inside the box is the trap covered in hair, but no mouse.  

There is now a bald butted, flat headed, GIANT Mousezilla roaming around my yard probably eating snakes and giving out the rabies he got from biting me.  Woh be to you if you come upon a bald butted, flat headed Giant Mousezilla, with a dazed stare, foaming at the mouth, while you clean out your garage…..

I think I will go lay down, I am feeling a bit dizzy….

Docker Can not set Cookie error – Check Semaphores.

Seen one of these?  Stopped a container, would not restart, got this “Can not set cookie dm_task_set_cookie failed” error.  After trying to manually remove the /dev/mapper/docker-* file systems, I got a semaphore error.

So check your semaphores and see if you need to increase.

ipcs -u

—— Messages Status ——–
allocated queues = 0
used headers = 0
used space = 0 bytes

—— Shared Memory Status ——–
segments allocated 0
pages allocated 0
pages resident 0
pages swapped 0
Swap performance: 0 attempts 0 successes

—— Semaphore Status ——–
used arrays = 128
allocated semaphores = 128

And this is it, I had used all 128 arrays….  Increasing all the values didn’t really hurt I don’t think, but I could have just increased the number of arrays.

ipcs -ls

—— Semaphore Limits ——–
max number of arrays = 256
max semaphores per array = 500
max semaphores system wide = 64000
max ops per semop call = 200
semaphore max value = 32767

Increased in /etc/sysctl.conf

#kernel.sem=250 32000 100 128 – old value  only number I really needed to increase was the 128 to 256.
kernel.sem=500 64000 200 256

This solved the issue for me.  Course you could do the windows thing and reboot….  Here is the journalctl -xe partial output.

— Subject: Unit docker.service has failed
— Defined-By: systemd
— Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel

— Unit docker.service has failed.

— The result is failed.
Jun 27 22:04:29 xxxxx.redhawk.org systemd[1]: Dependency failed for Run docker-cleanup every hour.
— Subject: Unit docker-cleanup.timer has failed
— Defined-By: systemd
— Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel

— Unit docker-cleanup.timer has failed.

— The result is dependency.
Jun 27 22:04:29 xxxxx.redhawk.org systemd[1]: Job docker-cleanup.timer/start failed with result ‘d
Jun 27 22:04:29 xxxxx.redhawk.org systemd[1]: Unit docker.service entered failed state.
Jun 27 22:04:29 xxxxx.redhawk.org systemd[1]: docker.service failed.
Jun 27 22:04:29 xxxxx.redhawk.org polkitd[639]: Unregistered Authentication Agent for unix-process
[user@xxxxx ~]#