一、redis簡介
我們提供的服務(wù)有:網(wǎng)站制作、成都網(wǎng)站制作、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、密山ssl等。為近千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的密山網(wǎng)站制作公司Redis是一種高級key-value數(shù)據(jù)庫。它跟memcached類似不過數(shù)據(jù)可以持久化而且支持的數(shù)據(jù)類型很豐富。有字符串鏈表集 合和有序集合。支持在服務(wù)器端計算集合的并交和補集(difference)等還支持多種排序功能。所以Redis也可以被看成是一個數(shù)據(jù)結(jié)構(gòu)服務(wù)器。
Redis的所有數(shù)據(jù)都是保存在內(nèi)存中然后不定期的通過異步方式保存到磁盤上(這稱為“半持久化模式”)也可以把每一次數(shù)據(jù)變化都寫入到一個append only file(aof)里面(這稱為“全持久化模式”)
二、安裝部署
mkdir /soft cd /soft安裝插件
wget http://downloads.sourceforge.net/tcl/tcl8.6.1-src.tar.gz tar zxvf tcl8.6.1-src.tar.gz cd tcl8.6.1 ./configure make && make install安裝redis
wget http://redis.googlecode.com/files/redis-2.6.14.tar.gz tar zxvf redis-2.6.14.tar.gz cd redis-2.6.14 make test make --prefix=/storage/redisdb make intsall三、安裝完成后在src目錄下生成5個可執(zhí)行文件redis-server、redis-cli、redis-benchmark、redis-check-aof、redis-check-dump它們的作用如下redis-serverRedis服務(wù)器的daemon啟動程序redis-cliRedis命令行操作工具。當(dāng)然你也可以用telnet根據(jù)其純文本協(xié)議來操作redis-benchmarkRedis性能測試工具測試Redis在你的系統(tǒng)及你的配置下的讀寫性能redis-check-aof更新日志檢查
redis-check-dump用于本地數(shù)據(jù)庫檢查
redis啟動
cd src ./redis-server [5056] 04 Apr 03:33:50.744 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect. [5056] 04 Apr 03:33:50.744 * The server is now ready to accept connections on port 6379四、設(shè)置內(nèi)存分配策略
可選值0、1、2。0 表示內(nèi)核將檢查是否有足夠的可用內(nèi)存供應(yīng)用進(jìn)程使用如果有足夠的可用內(nèi)存內(nèi)存申請允許否則內(nèi)存申請失敗并把錯誤返回給應(yīng)用進(jìn)程。1 表示內(nèi)核允許分配所有的物理內(nèi)存而不管當(dāng)前的內(nèi)存狀態(tài)如何。2 表示內(nèi)核允許分配超過所有物理內(nèi)存和交換空間總和的內(nèi)存值得注意的一點是redis在dump數(shù)據(jù)的時候會fork出一個子進(jìn)程理論上child進(jìn)程所占用的內(nèi)存和parent是一樣的比如parent占用的內(nèi)存為8G這個時候也要同樣分配8G的內(nèi)存給child,如果內(nèi)存無法負(fù)擔(dān)往往會造成redis服務(wù)器的down機或者IO負(fù)載過高效率下降。所以這里比較優(yōu)化的內(nèi)存分配策略應(yīng)該設(shè)置為 1表示內(nèi)核允許分配所有的物理內(nèi)存而不管當(dāng)前的內(nèi)存狀態(tài)如何
echo "vm.overcommit_memory = 1" >> /etc/sysctl.conf sysctl -p驗證
src/redis-cli redis> set foo bar OK redis> get foo bar shutdownRedis遠(yuǎn)程連接
telnet 127.0.0.1 6379
安全設(shè)置
關(guān)閉掉selinux
/usr/sbin/setenforce 0 立刻關(guān)閉 SELINUX #/sbin/iptables -I INPUT -p tcp --dport 6379 -j ACCEPT #/etc/rc.d/init.d/iptables save五、配置自啟動
cp redis.conf /etc
mkdir -p /storage/redis db文件放在這里要修改redis.conf
mkdir -p /var/log/redislog log文件放在這里要修改redis.conf
修改redis.conf db文件位置
cp redis.conf /etc/ vim /etc/redis # The working directory. # The DB will be written inside this directory, with the filename specified # above using the 'dbfilename' configuration directive. # Also the Append Only File will be created inside this directory # daemonize yes //改為后臺啟動 # Note that you must specify a directory here, not a file name. dir /storage/redis // db文件位置 logfile=/var/log/redislog //修改redis.conf log文件位置配置自啟動:vi /etc/init.d/redis
startup腳本代碼如下所示將其建立為/etc/init.d/redis文件
#!/bin/bash # # Init file for redis # # chkconfig: - 80 12 # description: redis daemon # # processname: redis # config: /etc/redis.conf # pidfile: /var/run/redis.pid source /etc/init.d/functions #BIN="/usr/local/bin" BIN="/usr/local/bin" CONFIG="/etc/redis.conf" PIDFILE="/var/run/redis.pid" ### Read configuration [ -r "$SYSCONFIG" ] && source "$SYSCONFIG" RETVAL=0 prog="redis-server" desc="Redis Server" start() { if [ -e $PIDFILE ];then echo "$desc already running...." exit 1 fi echo -n $"Starting $desc: "daemon $BIN/$prog $CONFIG RETVAL=$? echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$prog return $RETVAL } stop() { echo -n $"Stop $desc: " killproc $prog RETVAL=$? echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$prog $PIDFILE return $RETVAL } restart() { stop start } case "$1" in start) start ;; stop) stop ;; restart) restart ;; condrestart) [ -e /var/lock/subsys/$prog ] && restart RETVAL=$? ;; status) status $prog RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|restart|condrestart|status}" RETVAL=1 esac exit $RETVAL chmod +x /etc/init.d/redis重新啟動
/etc/init.d/redis restart Stop Redis Server: [ OK ] Starting Redis Server: [ OK ]六、配置php擴(kuò)展支持redis
1、下載php-redis zip安裝包
https://github.com/nicolasff/phpredis2、找到PHP安裝路徑
命令whereis phpize和whereis php-config 找到phpize和php-config路徑
3、生成configure
# /usr/bin/phpize4、編譯安裝
# ./configure --with-php-config=/usr/bin/php-config# make && make install5、加入安裝的redis.so模塊
# vim /etc/php.ini extension=redis.so6、重啟apache或nginx
7、測試
<?php $redis = new Redis(); $redis->connect('127.0.0.1',6379); $redis->set('test','hello world!'); echo $redis->get('test'); ?>另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
網(wǎng)頁名稱:Redis安裝與(php-redis)擴(kuò)展-創(chuàng)新互聯(lián)
標(biāo)題URL:http://m.newbst.com/article4/dissoe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供做網(wǎng)站、域名注冊、服務(wù)器托管、動態(tài)網(wǎng)站、網(wǎng)頁設(shè)計公司、Google
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容