One of the dependencies of memcache is libevent, so firstly download the source files for Libevent. wget http://www.monkey.org/~provos/libevent-1.3b.tar.gz tar -xvf libevent-1.3b.tar.gz cd libevent-1.3b ./configure;make;make install; Download the latest Memcached source code from danga.com wget http://danga.com/memcached/dist/memcached-1.2.1.tar.gz gunzip memcached-1.2.1.tar.gz tar -xvf memcached-1.2.1.tar cd memcached-1.2.1 ./configure;make;make install; Often libevent.so cannot be found when executing memcache. A useful command [...]
Archive for the ‘INSTALLATION’ Category
Installing memcached
Posted in INSTALLATION, Php on October 4, 2009 | Leave a Comment »
RVSkin Installation
Posted in Cpanel, INSTALLATION on October 4, 2009 | Leave a Comment »
SSH as root to server that was registered while purchasing the license and run: mkdir /root/rvadmin; cd /root/rvadmin; wget http://download.rvglobalsoft.com/download.php/download/rvskin-auto/saveto/rvauto.tar.bz2; bunzip2 -d rvauto.tar.bz2; tar -xvf rvauto.tar; perl /root/rvadmin/auto_rvskin.pl Answer a couple of questions on your shell, and wait until it finishes. First installation will take 2- 5 minutes to install. Installer will create a new [...]
How to install mod_evasive on a cPanel server
Posted in Cpanel, INSTALLATION, SECURITY on October 4, 2009 | Leave a Comment »
mod_evasive is an evasive maneuvers module for Apache to provide evasive action in the event of an HTTP DoS or DDoS attack or brute force attack. It is also designed to be a detection and network management tool, and can be easily configured to talk to ipchains, firewalls, routers, and etcetera. mod_evasive presently reports abuses [...]
How to install ClamAV in cPanel
Posted in INSTALLATION, SCRIPT on October 4, 2009 | Leave a Comment »
I was reading through my post on how to virus scan ftp uploads, and I realized, I never mentioned how to setup ClamAV, the antivirus software. So, here we go:1. Log into you WHM control panel as root 2. Go to Cpanel >> Manage Plugins 3. Click on clamavconnector to install and then click Save [...]
ffmpeg instalation on Centos 5.3
Posted in INSTALLATION on September 11, 2009 | Leave a Comment »
You can easily install ffmpeg on CentOS 5.3. you can enable dag repo for CentOS. Edit /etc/yum.repos.d/CentOS-Base.repo and add those lines at bottom of the [dag] name=Dag RPM Repository for Centos baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag enabled=1 Then install all ffmpeg binaries using yum. yum -y install ffmpeg ffmpeg-devel mplayer mencoder flvtool2 libogg libvorbis lame Then install ffmpeg-php latest [...]
ffmpeg FFmpeg installation on CentOS 5.x i386
Posted in INSTALLATION, SCRIPT on September 11, 2009 | Leave a Comment »
Installing ffmpegh: cd /root wget http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.e l5.rf.i386.rpm rpm -vi rpmforge-release-0.3.6-1.el5.rf.i386.rpm rm -f /root/rpmforge-release-0.3.6-1.el5.rf.i386.rpm yum -y install ffmpeg ffmpeg-devel mplayer mencoder flvtool2 libogg libvorbis lame yum clean all Installing ffmpeg-php wget http://internap.dl.sourceforge.net/sourceforge/ffmpeg-php/ffmpeg-php-0.5.3.t bz2 tar jxf ffmpeg-php-0.5.3.tbz2 cd ffmpeg-php-0.5.3 /usr/local/bin/phpize ./configure make make install echo “extension=ffmpeg.so” >> /usr/local/lib/php.ini cd /root rm -rf ffmpeg-php-0.5.3 ffmpeg-php-0.5.3.tbz2 service httpd restart [...]
Redmine installation.
Posted in INSTALLATION on September 7, 2009 | Leave a Comment »
Follow the steps in the link below: http://www.redmine.org/wiki/redmine/RedmineInstall
Install Ghostscript
Posted in INSTALLATION, LINUX, SERVICES on January 11, 2009 | Leave a Comment »
What is Ghostscript: ======================== hostscript is a set of software that provides a PostScript(TM) interpreter, a set of C procedures (the Ghostscript library, which implements thegraphics capabilities in the PostScript language) and an interpreter for Portable Document Format (PDF) files. Ghostscript translates PostScript code into many common, bitmapped formats, like those understood by your printer [...]
Install CURL
Posted in INSTALLATION, Php on January 10, 2009 | Leave a Comment »
Instructions to install CURL: ================== 1. cd /usr/local/src 2. wget http://curl.haxx.se/download/curl-7.19.0.tar.gz 3. tar zxf curl-7.19.0.tar.gz 4. cd curl-7.19.0 5. ./configure –prefix=/usr/local –with-ssl=/usr/include/openssl 6. make 7. make install CURL should now be installed.
Java/Tomcat Installation
Posted in Articles, INSTALLATION, SERVICES on January 10, 2009 | Leave a Comment »
Java Installation: ====================== I chose to install Sun’s Java 2 Platform, Standard Edition, which can be downloaded from http://java.sun.com/j2se/). I chose the J2SE v1.4.2 SDK Linux self-extracting binary file. Change to the directory where you downloaded the SDK and make the self-extracting binary executable: chmod +x j2sdk-1_4_2-linux-i586.bin Run the self-extracting binary: ./j2sdk-1_4_2-linux-i586.bin here should now [...]