CentOS6.4 安裝OpenResty和Redis 並在Nginx中利用lua簡單讀取Redis資料

來源:互聯網
上載者:User

標籤:

1、下載OpenResty和Redis

OpenResty:wget http://openresty.org/download/ngx_openresty-1.4.3.6.tar.gz

Redis:wget http://download.redis.io/releases/redis-2.8.6.tar.gz

2、安裝依賴包

yum install -y gcc gcc-c++ readline-devel pcre-devel openssl-devel tcl perl

3、安裝OpenResty

首先安裝LuaJIT 

wget http://luajit.org/download/LuaJIT-2.0.2.tar.gztar zxvf LuaJIT-2.0.2.tar.gzmakemake installexport LUAJIT_LIB=/usr/local/libexport LUAJIT_INC=/usr/local/include/luajit-2.0

安裝OpenResty 

tar zxvf ngx_openresty-1.4.3.6.tar.gzcd ngx_openresty-1.4.3.6./configure --with-luajitmakemake install

lua和redis等相關模組就已經安裝完成,利用下面命令查看

/usr/local/openresty/nginx/sbin/nginx -V

設定Nginx為服務和開機啟動 

vi /etc/rc.d/init.d/nginx
#!/bin/bash# Tengine Startup script# processname: nginx# chkconfig: - 85 15# description: nginx is a World Wide Web server. It is used to serve# pidfile: /var/run/nginx.pid# config: /usr/local/nginx/conf/nginx.confnginxd=/usr/local/openresty/nginx/sbin/nginxnginx_config=/usr/local/openresty/nginx/conf/nginx.confnginx_pid=/usr/local/openresty/nginx/logs/nginx.pidRETVAL=0prog="nginx"# Source function library.. /etc/rc.d/init.d/functions# Source networking configuration.. /etc/sysconfig/network# Check that networking is up.[ ${NETWORKING} = "no" ] && exit 0[ -x $nginxd ] || exit 0# Start nginx daemons functions.start() {if [ -e $nginx_pid ];thenecho "tengine already running...."exit 1fiecho -n $"Starting $prog: "daemon $nginxd -c ${nginx_config}RETVAL=$?echo[ $RETVAL = 0 ] && touch /var/lock/subsys/nginxreturn $RETVAL}# Stop nginx daemons functions.stop() {echo -n $"Stopping $prog: "killproc $nginxdRETVAL=$?echo[ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /usr/local/nginx/logs/nginx.pid}reload() {echo -n $"Reloading $prog: "#kill -HUP `cat ${nginx_pid}`killproc $nginxd -HUPRETVAL=$?echo}# See how we were called.case "$1" instart)start;;stop)stop;;reload)reload;;restart)stopstart;;status)status $progRETVAL=$?;;*)echo $"Usage: $prog {start|stop|restart|reload|status|help}"exit 1esacexit $RETVAL

 儲存退出

chmod 775 /etc/rc.d/init.d/nginx   #賦予檔案執行許可權chkconfig  --level 012345 nginx on   #設定開機啟動service nginx start

4、安裝Redis

tar zxvf redis-2.8.6.tar.gz
mv redis-2.8.6 redis
cd redis
make MALLOC=libc
make install

設定Redis的設定檔

vi /usr/local/redis/redis.conf
#是否作為守護進程運行daemonize yes#如以後台進程運行,則需指定一個pid,預設為/var/run/redis.pidpidfile redis.pid#綁定主機IP,預設值為127.0.0.1#bind 127.0.0.1#Redis預設監聽連接埠port 6379#用戶端閑置多少秒後,中斷連線,預設為300(秒)timeout 300#日誌記錄等級,有4個可選值,debug,verbose(預設值),notice,warningloglevel verbose#指定日誌輸出的檔案名稱,預設值為stdout,也可設為/dev/null屏蔽日誌logfile stdout#可用資料庫數,預設值為16,預設資料庫為0databases 16#儲存資料到disk的策略#當有一條Keys資料被改變是,900秒重新整理到disk一次save 900 1#當有10條Keys資料被改變時,300秒重新整理到disk一次save 300 10#當有1w條keys資料被改變時,60秒重新整理到disk一次save 60 10000#當dump .rdb資料庫的時候是否壓縮資料對象rdbcompression yes#本機資料庫檔案名稱,預設值為dump.rdbdbfilename dump.rdb#本機資料庫存放路徑,預設值為 ./dir ./

調整記憶體配置策略

查看一下記憶體配置策略vi /proc/sys/vm/overcommit_memory 注意用vi或vim是不能修改裡面的值的,需要使用下面的方法echo "1" >>/proc/sys/vm/overcommit_memory

該檔案指定了核心針對記憶體配置的策略,其值可以是0、1、2。
0,表示核心將檢查是否有足夠的可用記憶體供應用進程使用;如果有足夠的可用記憶體,記憶體申請允許;否則,記憶體申請失敗,並把錯誤返回給應用進程。
1,表示核心允許分配所有的實體記憶體,而不管當前的記憶體狀態如何。
2,表示核心允許分配超過所有實體記憶體和交換空間總和的記憶體。
Redis在dump資料的時候,會fork出一個子進程,理論上child進程所佔用的記憶體和parent是一樣的,比如parent佔用的記憶體為 8G,這個時候也要同樣分配8G的記憶體給child, 如果記憶體無法負擔,往往會造成redis伺服器的down機或者IO負載過高,效率下降。所以這裡比較最佳化的記憶體配置策略應該設定為 1(表示核心允許分配所有的實體記憶體,而不管當前的記憶體狀態如何)

啟動服務

redis-server /usr/local/redis/redis.conf

通過redis-cli命令來實際操作一下

關閉服務

redis-cli shutdown如果連接埠變化可以指定連接埠redis-cli -p 6380 shutdown

儲存/備份
資料備份可以通過定期備份該檔案實現。
因為redis是非同步寫入磁碟的,如果要讓記憶體中的資料馬上寫入硬碟可以執行如下命令:
redis-cli save 或者 redis-cli -p 6380 save(指定連接埠)
注意,以上部署操作需要具備一定的許可權,比如複製和設定核心參數等。
執行redis-benchmark命令時也會將記憶體資料寫入硬碟。

設定Redis開機自啟

vi /etc/rc.d/init.d/redis
#!/bin/bash## redis - this script starts and stops the redis-server daemon## chkconfig:   - 80 12# description:  Redis is a persistent key-value database# processname: redis-server# config:      /etc/redis/redis.conf# pidfile:     /var/run/redis.pidsource /etc/init.d/functionsBIN="/usr/local/bin"CONFIG="/usr/local/redis/redis.conf"PIDFILE="/var/run/redis.pid"### Read configuration[ -r "$SYSCONFIG" ] && source "$SYSCONFIG"RETVAL=0prog="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=1esacexit $RETVAL

儲存退出

chmod 777 /etc/rc.d/init.d/redischkconfig redis onservice redis start    #stop,restart

5、在Nginx中調用lua指令碼簡單讀取Redis中的資料

vi /usr/local/openresty/nginx/conf/nginx.conf

在server配置節中增加

location /test {            default_type text/plain;            content_by_lua_file /usr/local/test.lua;        }

儲存退出,然後建立lua指令檔

vi /usr/local/test.lua
local redis = require "resty.redis"local cache = redis.new()cache.connect(cache, ‘127.0.0.1‘, ‘6379‘)local res = cache:get("foo")if res==ngx.null then    ngx.say("This is Null")    returnendngx.say(res)

儲存退出,重啟Nginx

service nginx restart

6、測試

修改Nginx中html目錄下的index.html檔案來測試,增加JQuery引用和Ajax請求

<script type="text/javascript"  src="jquery-1.8.3.min.js"></script><script type="text/javascript">$(function() {                        $.ajax({                    type : "GET",                                        url : "http://192.168.0.106/test",                    success : function(data) {                        alert(data);                    }                });            });</script>

訪問Nginx地址 http://192.168.0.106/,如果key值為foo沒有資料時會彈出

利用redis-cli命令向Redis中增加資料

redis-cli set foo test

再訪問地址會彈出

 分類: Linux

CentOS6.4 安裝OpenResty和Redis 並在Nginx中利用lua簡單讀取Redis資料

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.