Building a Rain Barrel Water Tower for the Chicken Coup

I was given this old barrel that originally stored non-toxic antifreeze. My plan was to build a Whizbang chicken plucker, but buying a small backyard chicken plucker turned out to be nearly the same price as buying all the hardware needed to build my own. (It might be worth it if you already have all the parts on hand)

So what to do with the barrel?

I have automatic feeders and I have automatic waterers for my chickens, but the current waterers leak everywhere and I have a garden hose running across my backyard to the coup. Its time to reengineer the poultry watering system. It would be a good start to have a water source at the coup. A rain barrel is just what I need.

No plans needed!

Just need it up high enough to let gravity do the work.

That should be about right. Now we need to add the spigot

I had to cut off the cover in order to access the inside and install the spigot and give the inside a good washing. Now how to reattach the cover?

Mistakes were made, but its finally back on securely.

Now to place it behind the chicken coup. Its in just the right spot to catch the rain once I install the gutter.

Hmm, that looks a little dangerous. Better add a safety rope to keep it from tipping over and crushing someone.

Lets’ secure the bottom as well…

Ok now let’s do some plumbing.
I have a few scraps of piping left over from a different project, but it will do fine. Maybe I should buy the correct kind of elbow? Nah.

Looking good!

Water was flowing out both sides, so I had to plug up this hole until I get to the hardware store for the correct elbow.

That’s a good start!
Ok, let’s lets connect up the new chicken waterers.

Two buckets hooked up. Each bucket has a float valve and watering cups. The rain barrel is high enough for the water to flow downstream and refill the buckets when the float valves open.

I put a rock inside the bucket as a counter weight to the float.

My goal is to be able to go away for a few days without worrying about the chicken’s water. I’m using Grandfather’s Feeders for automatic feeding which hold 40lbs of food and work great. But water had always been an issue.

Previously I was using the 6 gallon buckets shown in the photo below. There is a float on the bottom that is supposed to slowly let out the water, but they only worked correctly if the buckets were perfectly level and often the water would slowly drip out the side after only a day or two. I tried hanging the buckets, but then the chickens knocked them around and splashed the water out. I also tried modifying the buckets to use a float valve on top connected to the hose, but that just lead to them continually refilling and causing an even bigger mess. The chickens would also poop in the trough causing the water to get completely dirty.

I’m really happy with how this came out. Now I have non-spilling waterers and 50 gallons of reserve water that will automatically refill itself when it rains (or I could fill up from the garden hose if there’s no rain). My next step will be to make covers for the water buckets to keep the leaves and mosquitos out.

Success! The poults like it!

Advertisement

How to Install a Certificate in ColdFusion

I have to do this so infrequently that I always have to look up the instructions again. Putting these here so I can find them easily.

I’m always surprised that there isn’t an easy way to download the cert from the command line. If there was then this could be made into a nice little script. Grabbing the cert via your browser is still the easiest way.

Step 1:
Go to https:\URL and click on lock icon, and download the cert into the C:\ColdFusion11\jre\lib\security\ directory or whatever the jre\lib\security directory is for your CF install

Step 2:
On the command line, go to your jre\bin directory
cd C:\ColdFusion11\jre\bin

Step 3:
Run the following command. (Adjust your paths and cert names as necessary.)
keytool -import -trustcacerts -keystore C:\ColdFusion11\jre\lib\security\cacerts -storepass changeit -noprompt -alias MYCERTNICKNAME -file C:\ColdFusion11\jre\lib\security\MYCERTFILENAME

The MYCERTFILENAME should match the filename, the MYCERTNICKNAME can be anything, but I like to keep it the same as the filename

Step 4:
Restart the Coldfusion Application service