Install memcached in linuxcentos5.8

Source: Internet
Author: User
1. Install libeventyuminstalllibevent. The x86_64libevent-devel.x86_64 does not have libevent compiling memcached for error checkingforlibeventdirectory... configure: error: libeventisrequired.Youcangetitfromwww.monkey.org ~ ProvoslibeventIfits

1. install libevent yum install libevent. x86_64 libevent-devel.x86_64 no libevent compiling memcached for error checking for libevent directory... configure: error: libevent is required. You can get it from http://www.monkey.org /~ Provos/libevent/If it's

1. Install libevent
Yum install libevent. x86_64 libevent-devel.x86_64
An error occurred while compiling memcached without libevent.

checking for libevent directory... configure: error: libevent is required.  You can get it from http://www.monkey.org/~provos/libevent/      If it's already installed, specify its path using --with-libevent=/dir/

2. Install memcached

wget http://memcached.googlecode.com/files/memcached-1.4.15.tar.gztar zxvf memcached-1.4.15.tar.gzcd memcached-1.4.15./configure --prefix=/opt/memcached-1.4.15makemake installln -s /opt/memcached-1.4.15 /opt/memcached

3. Configuration File
Vi/opt/memcached/my. conf

PORT="11200"IP="192.168.0.40"USER="root"MAXCONN="1524"CACHESIZE="3000"OPTIONS=""#memcached

4. Start/Close the script
Vi/etc/init. d/memcached

#!/bin/bash## Save me to /etc/init.d/memcached# And add me to system start# chmod +x memcached# chkconfig --add memcached# chkconfig --level 35 memcached on## Written by lei## chkconfig: - 80 12# description: Distributed memory caching daemon## processname: memcached# config: /usr/local/memcached/my.confsource /etc/rc.d/init.d/functions### Default variablesPORT="11211"IP="192.168.0.40"USER="root"MAXCONN="1524"CACHESIZE="64"OPTIONS=""SYSCONFIG="/opt/memcached/my.conf"### Read configuration[ -r "$SYSCONFIG" ] && source "$SYSCONFIG"RETVAL=0prog="/opt/memcached/bin/memcached"desc="Distributed memory caching"start() {    echo -n $"Starting $desc ($prog): "    daemon $prog -d -p $PORT -l $IP -u $USER -c $MAXCONN -m $CACHESIZE $OPTIONS    RETVAL=$?    echo    [ $RETVAL -eq 0 ] && touch /var/lock/subsys/memcached    return $RETVAL}stop() {    echo -n $"Shutting down $desc ($prog): "    killproc $prog    RETVAL=$?    echo    [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/memcached    return $RETVAL}restart() {    stop    start}reload() {    echo -n $"Reloading $desc ($prog): "    killproc $prog -HUP    RETVAL=$?    echo    return $RETVAL}case "$1" in  start)    start    ;;  stop)    stop    ;;  restart)    restart    ;;  condrestart)    [ -e /var/lock/subsys/$prog ] && restart    RETVAL=$?    ;;  reload)    reload    ;;  status)    status $prog    RETVAL=$?    ;;   *)    echo $"Usage: $0 {start|stop|restart|condrestart|status}"    RETVAL=1esacexit $RETVAL

5. Add iptables to allow access from 192.168.0.0/24

iptables -A INPUT -s 192.168.0.0/255.255.255.0 -p tcp -m tcp --dport 11200 -j ACCEPT

6. Start
/Etc/init. d/memcached start

7. web Management Interface

Http://www.junopen.com/memadmin/

Original article address: Install memcached in centos5.8 linux. Thank you for sharing it with me.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.