您好,登錄后才能下訂單哦!
一、redis簡介
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 shutdown
Redis遠(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擴展支持redis
1、下載php-redis zip安裝包
https://github.com/nicolasff/phpredis
2、找到PHP安裝路徑
命令whereis phpize和whereis php-config 找到phpize和php-config路徑
3、生成configure
# /usr/bin/phpize
4、編譯安裝
# ./configure --with-php-config=/usr/bin/php-config
# make && make install
5、加入安裝的redis.so模塊
# vim /etc/php.ini extension=redis.so
6、重啟apache或nginx
7、測試
<?php $redis = new Redis(); $redis->connect('127.0.0.1',6379); $redis->set('test','hello world!'); echo $redis->get('test'); ?>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。