Pages

12/17/2010

Replacement Hard Drives for XRAID

Currently I'm working on rebuilding our web storage infrastructure for our District. Currently we have 6 XRAID's that have 40,000+ hours on the drives and aren't currently being used right now.  I was in need of DAS to setup my Gluster Cluster, so I decided repurposing these would be the cheapest and most efficient solution.

As some of may know, XRAID's support up to 750GB per drive and require IDE drives.  Finding a 750GB is fairly easy, finding a abundance of these, not so much.  When you do find these drives, they usually range from $150-250 per drive.  So, I started to do some research to see what is out there.  I ran across one article on replacing the drives with notebook drives and IDE to SATA adapter. I then decided to try it out, ordered up one Startech IDE to SATA adapter and a Seagate Momentum 750gb 7200rpm notebook drive.  

The parts arrived, I got to work.  Connected up the adapter and power splitter. Connected the drive, and found that I could throw in one screw and some tape to hold the power in place, and then we were all done.  Slid the module into the XRaid and we were on our way.  

We are currently in process of getting this all ordered and running, I'll post up any updates on the process. 

Parts:


12/14/2010

DHTMLX Touch Alpha Released

DHTMLX has released their alpha version of mobile version of their components.  After 5 minutes of testing, I must say it's everything I expected.  Future versions are likely to be even better.

http://www.dhtmlx.com/blog/?p=791

12/08/2010

Gluster Progress

This is still a work in progress, but so far very successful.

Gluster Storage Platform allows you to basically build your own storage cloud.  It allows for CIFS, NFS, FTP, and it's own native GlusterFS connector. And here is my own experiencing with setting it up.

We had (2) Dell Poweredge 8950's and some old Apple XRaid storage not longer in production in our environment.  Trying to stay on the more conservative side in spending additional funds to improve our infrastructure, I decided these would be prime candidates.

So I take the 15 minutes to put the fibre channel cards in and get the 8950's wired into our back network and plugged into the Apple XRaid via Fibre.  On the Gluster website, they have 3 different ways you can install the OS.  First, you can download a Virtual Machine prebuilt and ready to go. Second, you can download a ISO image and use that to build a Virtual Machine from scratch, but not use it as a boot cd for a physical machine.  Last, you can download an img file and setup a bootable usb drive, this is a the method I went with.

Plug in the USB Flash Drive and open the terminal
run "dd if=Gluster-3.1.img of=/dev/sdc bs=1M", keep in mind you need to change the location of the img and location of the usb drive


This takes a few minutes. Once done, pop it into one of the server and boot it up. You will be presented with a menu. First you can to say new server cloud.

Once you do that, you need to select a OS drive and Network Config. Then it will install.

Once done, you will be given the default password.


Reboot and open a web browser on another machine and you can login. From there you can create new volumes or add more servers.  To add another server, boot the new server from the usb drive and select expand the cloud.  Then jump over to the web panel of the master server and click add new server.  This will tell it to go find the new server, install, and add it to the cluster.

Once your two machines are setup you can see storage from each server.  When creating a new volume, you have the option to mirror the two or more machines with multiple protocols.  If you have a load balancer you can input both IP's into it and load balance storage with active-mirroring.  

Very cool stuff, simple and easy to use.  Check out www.gluster.com for more information.


Logging Apache in MySQL

I'm currently in process of rebuilding our web server cluster, and thought I would do some searching on improving how our configuration and logs are stored.  Little did I know there are some modules out there that can help us do that.

First, I have completed the logging piece of the puzzle and thought it was pretty cool and easy to setup.  You'll need to need to have the mysql client libraries installed along with libDBI.  Once you have these, you can quickly build the module and add it to Apache.

You can find the source here
http://www.outoforder.cc/projects/apache/mod_log_sql/

Next you can find some simple build instructions here


Last you need to add the following to httpd.conf, make sure to change the Server Login Info

LoadModule log_sql_module modules/mod_log_sql.so
LoadModule log_sql_mysql_module modules/mod_log_sql_mysql.so
<IfModule mod_ssl.c>
LoadModule log_sql_ssl_module modules/mod_log_sql_ssl.so
</IfModule>

LogSQLLoginInfo mysql://user:pass@mysql_server_address/database
LogSQLCreateTables On

See more info here on additional configurations and customizing
http://www.outoforder.cc/projects/apache/mod_log_sql/docs-2.0/

After you give apache a restart and go to one of your virtual hosts in the browser, you should see the tables auto build with the log information.

Coming up next is mod_vhost_dbi, this will allow you to store your virtual host config in MySQL


12/05/2010

How to Add Google Documents to the Windows Explorer “New” Menu

For those who enjoyed the write up on how to set Gmail as a default email provider, you can also add Google Doc's to the right-click new menu.


12/03/2010

Cluster with Gluster

In need of a new storage platform? I suggest checking out Gluster (http://www.gluster.org/). Gluster provides an open source solution for creating basically your own cloud. Highly scalable, high-availability, and easy to setup.

Currently I'm in process of setuping up a new Shared Storage solution for our webserver cluster, in hopes of achieving the high-availability and redundancy that we require. More to come over the next week.