最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

linuxcentos5.8安裝memcached

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-09 13:23:16
文檔

linuxcentos5.8安裝memcached

linuxcentos5.8安裝memcached:1.安裝libevent yum install libevent.x86_64 libevent-devel.x86_64 沒有l(wèi)ibevent編譯memcached為出錯 checking for libevent directory... configure: error: libevent is required. You can get
推薦度:
導(dǎo)讀linuxcentos5.8安裝memcached:1.安裝libevent yum install libevent.x86_64 libevent-devel.x86_64 沒有l(wèi)ibevent編譯memcached為出錯 checking for libevent directory... configure: error: libevent is required. You can get

1.安裝libevent yum install libevent.x86_64 libevent-devel.x86_64 沒有l(wèi)ibevent編譯memcached為出錯 checking for libevent directory... configure: error: libevent is required. You can get it from http://www.monkey.org/~provos/libevent/ If it's

1.安裝libevent
yum install libevent.x86_64 libevent-devel.x86_64
沒有l(wèi)ibevent編譯memcached為出錯

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.安裝memcached

wget http://memcached.googlecode.com/files/memcached-1.4.15.tar.gz
tar zxvf memcached-1.4.15.tar.gz
cd memcached-1.4.15
./configure --prefix=/opt/memcached-1.4.15
make
make install
ln -s /opt/memcached-1.4.15 /opt/memcached

3.配置文件
vi /opt/memcached/my.conf

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

4.啟動/關(guān)閉腳本
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.conf
source /etc/rc.d/init.d/functions
### Default variables
PORT="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=0
prog="/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=1
esac
exit $RETVAL

5.添加iptables 充許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.啟動
/etc/init.d/memcached start

7.web 管理界面

http://www.junopen.com/memadmin/

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

linuxcentos5.8安裝memcached

linuxcentos5.8安裝memcached:1.安裝libevent yum install libevent.x86_64 libevent-devel.x86_64 沒有l(wèi)ibevent編譯memcached為出錯 checking for libevent directory... configure: error: libevent is required. You can get
推薦度:
標簽: 安裝 linux centos
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top