Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Seedbox & Hosting (http://www.bvlist.com/forumdisplay.php?f=50)
-   -   Memcached Help (http://www.bvlist.com/showthread.php?t=7035)

FTWR 26th September 2011 23:04

Memcached Help
 
Hello again Tbdev members!! I have bought a VPS for my tracker, I installed kloxo cpanel and configured it, but...how to install the mamcached for centos 5.0 32 bits ( i wanna use u232 source code)? I find this site but I can't make it work, can somebody help me? Thank you!!

xDev 27th September 2011 00:13

Quote:

Originally Posted by FTWR (Post 30300)
Hello again Tbdev members!! I have bought a VPS for my tracker, I installed kloxo cpanel and configured it, but...how to install the mamcached for centos 5.0 32 bits ( i wanna use u232 source code)? I find this site but I can't make it work, can somebody help me? Thank you!!

have you tryed installing thou your ssh root

FTWR 27th September 2011 08:29

Quote:

Originally Posted by Developer (Post 30301)
have you tryed installing thou your ssh root

I don't understand you so good. I have access to root if you asked for that...but, i don't know which are the commands to install memcached (after login)

x360zone 27th September 2011 09:16

try this
 
This is a step by step guide to installing memcached from source on CentOS. To install using yum instead, run yum install memcached. The version of CentOS that I am using is CentOS release 5.2 (Final);

to find what version you are using: cat /etc/redhat-release

First, install the dependency libevent:
cd /usr/local/src curl -O http://monkey.org/~provos/libevent-1.4.14b-stable.tar.gz tar xzvf libevent-1.4.14b-stable.tar.gz cd libevent-1.4.14b-stable ./configure --prefix=/usr/local make && make install

Next, install memcached:
cd /usr/local/src curl -O http://memcached.googlecode.com/file...d-1.4.5.tar.gz tar xzvf memcached-1.4.5.tar.gz cd memcached-1.4.5 LDFLAGS='-Wl,--rpath /usr/local/lib' ./configure --prefix=/usr/local make && make install

Verify that memcached starts:
memcached -u root -d If there were no errors, make sure it is running:
ps aux | grep memcached

And finally, to stop memcached: pkill memcached or tutorial 2:

memcached up and running on your CentOS 5 server. First, we start with installing libevent; at least version 1.1 is required. This one’s easy, we can install it using yum.

yum install libevent libevent-devel

Now, onto memcached. Change your working directory to /usr/local/src and download the memcached source:

cd /usr/local/src
wget http://memcached.googlecode.com/file...d-1.4.1.tar.gz

Uncompress the tarball you download and change into the directory that is created:

tar xvzf memcached-1.4.1.tar.gz
cd memcached-1.4.1
Memcached is actively developed, so the version used in this tutorial may be out of date by the time you read this. As of this writing, 1.4.1 is the latest stable version. Check http://danga.com/memcached/download.bml for a newer version before proceeding with the installation.

Up next, configuring our Makefile.

This can be as simple as:
./configure

Additional configure flags are available and can improve performance if your server is capable. For 64-bit OSes, you can enable memcached to utilize a larger memory allocation than is possible with 32-bit OSes:

./configure --enable-64bit
If your server has multiple CPUs or uses mutli-core CPUs, enable threading:
./configure --enable-threads

If you’ve got both a 64-bit OS and multiple CPUs, use both:
./configure --enable-threads --enable-64bit

Once the configure script completes, build and install memcached:
make && make install

Last but not least, start a memcached server:
memcached -d -u nobody -m 512 -p 11211 127.0.0.1

Put another way, the previous command can be laid out like this:
memcached -d -u [user] -m [memory size] -p [port] [listening IP]

Let’s go over what each switch does in the above command:
-dTell memcached to start up as a backgrounded daemon process-uSpecify the user that you want to run memcached-mSet the memory that you want to be allocated my memcached-p

The port on which memcached will listen.
And that’s it. Now go forth and speed up your sites!

Optix 27th September 2011 13:35

There is a simple way to do the same :

Code:

sudo yum install memcached php5-memcache
;)


All times are GMT +2. The time now is 13:46.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.