您好,登錄后才能下訂單哦!
一、redis簡介
Redis是一種高級key-value數據庫。它跟memcached類似不過數據可以持久化而且支持的數據類型很豐富。有字符串鏈表集 合和有序集合。支持在服務器端計算集合的并交和補集(difference)等還支持多種排序功能。所以Redis也可以被看成是一個數據結構服務器。
Redis的所有數據都是保存在內存中然后不定期的通過異步方式保存到磁盤上(這稱為“半持久化模式”)也可以把每一次數據變化都寫入到一個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個可執行文件redis-server、redis-cli、redis-benchmark、redis-check-aof、redis-check-dump它們的作用如下redis-serverRedis服務器的daemon啟動程序redis-cliRedis命令行操作工具。當然你也可以用telnet根據其純文本協議來操作redis-benchmarkRedis性能測試工具測試Redis在你的系統及你的配置下的讀寫性能redis-check-aof更新日志檢查
redis-check-dump用于本地數據庫檢查
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
四、設置內存分配策略
可選值0、1、2。0 表示內核將檢查是否有足夠的可用內存供應用進程使用如果有足夠的可用內存內存申請允許否則內存申請失敗并把錯誤返回給應用進程。1 表示內核允許分配所有的物理內存而不管當前的內存狀態如何。2 表示內核允許分配超過所有物理內存和交換空間總和的內存值得注意的一點是redis在dump數據的時候會fork出一個子進程理論上child進程所占用的內存和parent是一樣的比如parent占用的內存為8G這個時候也要同樣分配8G的內存給child,如果內存無法負擔往往會造成redis服務器的down機或者IO負載過高效率下降。所以這里比較優化的內存分配策略應該設置為 1表示內核允許分配所有的物理內存而不管當前的內存狀態如何
echo "vm.overcommit_memory = 1" >> /etc/sysctl.conf sysctl -p
驗證
src/redis-cli redis> set foo bar OK redis> get foo bar shutdown
Redis遠程連接
telnet 127.0.0.1 6379
安全設置
關閉掉selinux
/usr/sbin/setenforce 0 立刻關閉 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'); ?>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。