文章介紹了關於windows+php中memcached.exe的安裝與配置和liunx中 memcached配置 ,大家可根據自己的系統來方法一或方法二來配置哦。
windows+php中memcached.exe的安裝與配置
1.Windows版本的下載地址為: http://code.jellycan.com/memcached/
將壓縮文件解壓到 c:/memcached/
2. 在CMD下輸入 “c:/memcached/memcached.exe -d install” 安裝。
3. 再輸入:”c:/memcached/memcached.exe -d start” 啟動。NOTE:以後memcached將作為windows的一個服務每次開機時自動啟動。這樣服務器端已經安裝完畢了。
4.若指定了 -m,則表示緩存大小為 -m後的數字,單位是 M,例如:
c:/memcached/memcached.exe –l 127.0.0.1 –m 32 – d start
如下設置memcached使用內存問題幫助:
按照上面的安裝步驟安裝之後,使用memcached –m 200來調整最大內存占用之後會發現沒有起作用,總是默認的64MB的內存,在網上搜了一下,原因是注冊表中並沒有寫入信息,可以這樣來修改。
1. memcached –d shutdown 首先關閉memcached服務。
2.進入注冊表,找到 HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/memcached Server, 在其中有一個ImagePath項,值為 “c:/memcached/memcached.exe” -d runservice,在後面加上 -l 127.0.0.1 -m 3000 -c 2048。
3.memcached –d start 啟動memcached服務,這樣就將memcached的最大內存修改為了3000MB。
如果下載的是二進制的版本,直接運行就可以了,可以加上參數來加以設置。
常用設置:
-p <num> 監聽的端口
-l <ip_addr> 連接的IP地址, 默認是本機
-d start 啟動memcached服務
-d restart 重起memcached服務
-d stop|shutdown 關閉正在運行的memcached服務
-d install 安裝memcached服務
-d uninstall 卸載memcached服務
-u <username> 以<username>的身份運行 (僅在以root運行的時候有效)
-m <num> 最大內存使用,單位MB。默認64MB
-M 內存耗盡時返回錯誤,而不是刪除項
-c <num> 最大同時連接數,默認是1024
-f <factor> 塊大小增長因子,默認是1.25
-n <bytes> 最小分配空間,key+value+flags默認是48
-h 顯示幫助
linux+php中memcached.exe的安裝與配置
首頁
http://www.danga.com/memcached
下載地址:
http://danga.com/memcached/download.bml
下載文件
memcached-1.2.6.tar.gz
tar zxvf memcached-1.2.6.tar.gz
./configure --prefix=/usr/local/memcached-1.2.6
make
make install
注意:
memcache需要這個包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/
下載得到文件libevent-1.4.9-stable.tar.gz
tar zxvf libevent-1.4.9-stable.tar.gz
./configure --prefix=/usr/local/libevent-1.4.9-stable.tar.gz
make
make install
由於我安裝沒有安裝在usr下面,所以最後啟動memcache報錯:
[root@localhost bin]# ./memcached -d -m 10 -p 11211 -u root -l 0.0.0.0
./memcached: error while loading shared libraries: libevent-1.4.so.2: cannot open shared object file: No such file or directory
檢查libevent安裝情況:
ls -al /usr/lib | grep libevent
把 libevent-1.4.so.2 拷貝/鏈接到 /usr/lib 中,否則 memcached 無法正常加載。
cp libevent-1.4.so.2 /usr/lib/
文章出處:http://www.diybl.com/course/6_system/linux/linuxjq/20071010/77432.html
安裝完之後要啟動服務
cd /usr/local/memcached-1.2.6/bin
./memcached -d -m 50 -p 11211 -u root -l 0.0.0.0
參數說明
-m 指定使用多少兆的緩存空間;
-p 指定要監聽的端口;
-u 指定以哪個用戶來運行