There's no good documentation on how to do this online, so here's a quick tutorial on how to get Ruby's DBI and MySQL packages installed on CentOS 5.2. There aren't any pre-packaged binaries for this, so building from scratch is pretty much your only option.
# download
wget http://tmtm.org/downloads/mysql/ruby/mysql-ruby-2.7.tar.gz
# extract
tar zxvf mysql-ruby-2.7.tar.gz
# change dir
cd mysql-ruby-2.7
# configure (requires mysql development package AND gcc)
ruby extconf.rb --with-mysql-config
checking for mysql_ssl_set()... yes
checking for mysql.h... yes
creating Makefile
# finish (as root)
make install
(ignore warnings)
Now DBI:
# download
wget http://rubyforge.org/frs/download.php/41303/dbi-0.2.2.tar.gz
# extract
tar zxvf dbi-0.2.2.tar.gz
# change dir
cd dbi-0.2.2
# setup
ruby setup.rb config --with=dbi,dbd_mysql
ruby setup.rb setup
# finish (as root)
ruby setup.rb install
Subscribe to:
Post Comments (Atom)
1 comment:
I want to and will install ruby dbi on my centos linux, thanks already to guide how to install.
Post a Comment