Archive

Archive for the ‘Software’ Category

Setting up an Gearman Cluster on Debian

December 19th, 2010 Sebastian Förster No comments

First we need to download latest release of gearmand server at the gearman homepage.

#!/bin/bash
apt-get install libevent-dev uuid-dev build-essential g++
wget http://launchpad.net/gearmand/trunk/0.14/+download/gearmand-0.14.tar.gz
tar xvzf gearmand-0.14.tar.gz
cd gearmand-0.14
./configure
make
make install
ldconfig

At configure i ran in some errors. Many of them you can find at Problems on installing Gearmand.

Before we can use the gearmand Server we must install a client extension which can communicate with the server. For gearman existing some Client libraries in serveral languages. You can get a list from the download link above. In my case I use of course the php extension. Installation Instructions can be found here:

Setting up an Gearman Client on php5 as Extension

After you had sucessfully installed the Gearmand Server you can start it with following command:

gearmand -d
Categories: Software Tags: , ,

Problems on installing Gearmand

December 19th, 2010 Sebastian Förster No comments

On executing ./configure i get the following error:

configure: error: No working C++ Compiler has been found. gearmand requires a C+

The Solution is to install following Packages:

gearserver:~# apt-get install build-essential g++

No the Installation work fine.

Starting the Gearman Daemon

At command gearman I became the next error:

error while loading shared libraries: libgearman.so.4:

Google tolds me the solution:

gearserver:~# ldconfig
Categories: Software Tags: , ,

Compare MySQL Databases with Toad for MySQL

December 11th, 2010 Sebastian Förster No comments

Yesterday I´ve found a program which I looking for a long Time ago. We want comapre any MySQL Databases including Data its in.

The great Software calls Toad for MySQL and can be download here.

It support some nice Features:

  • Compare any Databases on any MySQL Server.
  • Compare Structure of an Database
  • Compare Date of an Database
  • Export the Data as SQL, Excel or CSV File
  • It´s Freeware
  • And lots more what I cant find out in this short time ;)

You should take a look to this nice App if you need some comparing functionality.

Categories: Software Tags: , ,