OpenResty Redis 安装部署测试SET GET功能

参考文档

http://www.redis.cn/download.html

https://openresty.org/cn/installation.html

https://github.com/openresty/redis2-nginx-module

一,安装OpenResty

1,安装最新稳定版本的OpenResty-1.11.2.5

[[email protected] ~]# yum -y install tclyum -y install perl-devel gcc gmake

[[email protected] ~]# yum -y install tclwget https://openresty.org/download/openresty-1.11.2.5.tar.gz

[[email protected] ~]# yum -y install tcltar zxvf openresty-1.11.2.5.tar.gz

[[email protected] ~]# yum -y install tclcd openresty-1.11.2.5

[[email protected] ~]# yum -y install tcl./configure

[[email protected] ~]# yum -y install tclgmake

[[email protected] ~]# yum -y install tclgmake install

2,查看Nginx版本

[[email protected] ~]# yum -y install tclnginx -V

nginx version: openresty/1.11.2.5

built by gcc 4.4.7 20120313 (Red Hat 4.4.7-18) (GCC)

built with OpenSSL 1.0.1e-fips 11 Feb 2013

TLS SNI support enabled

configure arguments: --prefix=/usr/local/openresty/nginx --with-cc-opt=-O2 --add-module=../ngx_devel_kit-0.3.0 --add-module=../echo-nginx-module-0.61 --add-module=../xss-nginx-module-0.05 --add-module=../ngx_coolkit-0.2rc3 --add-module=../set-misc-nginx-module-0.31 --add-module=../form-input-nginx-module-0.12 --add-module=../encrypted-session-nginx-module-0.06 --add-module=../srcache-nginx-module-0.31 --add-module=../ngx_lua-0.10.10 --add-module=../ngx_lua_upstream-0.07 --add-module=../headers-more-nginx-module-0.32 --add-module=../array-var-nginx-module-0.05 --add-module=../memc-nginx-module-0.18 --add-module=../redis2-nginx-module-0.14 --add-module=../redis-nginx-module-0.3.7 --add-module=../rds-json-nginx-module-0.14 --add-module=../rds-csv-nginx-module-0.07 --with-ld-opt=-Wl,-rpath,/usr/local/openresty/luajit/lib --with-http_ssl_module

二,安装Redis

1,安装最新稳定版本的Redis-4.0.1

[[email protected] ~]# yum -y install tcl

[[email protected] ~]# wget http://download.redis.io/releases/redis-4.0.1.tar.gz

[[email protected] ~]# tar zxvf redis-4.0.1.tar.gz

[[email protected] ~]# cd redis-4.0.1

[[email protected] ~]# make

[[email protected] ~]# make test

[[email protected] ~]# make install

[[email protected] ~]# sh utils/install_server.sh

Port           : 6379

Config file    : /etc/redis/6379.conf

Log file       : /var/log/redis_6379.log

Data dir       : /var/lib/redis/6379

Executable     : /usr/local/bin/redis-server

Cli Executable : /usr/local/bin/redis-cli

2,启动

[[email protected] ~]# /etc/init.d/redis_6379 start

三,配置redis_pass

1,主配置文件

[[email protected] ~]# cat /usr/local/openresty/nginx/conf/nginx.conf |grep -Ev "^#|^$"

user  www www;

worker_processes  auto;

worker_cpu_affinity auto;

error_log  logs/error.log  error;

pid        logs/nginx.pid;

worker_rlimit_nofile 409600;

events

{

use epoll;

worker_connections 409600;

}

http {

include       mime.types;

default_type  application/octet-stream;

log_format  main  ‘$remote_addr - $remote_user [$time_local] "$request" ‘

‘$status $body_bytes_sent "$http_referer" ‘

‘"$http_user_agent" "$http_x_forwarded_for"‘;

access_log  logs/access.log  main;

sendfile        on;

tcp_nopush     on;

keepalive_timeout  65;

upstream redis{

server 127.0.0.1:6379;

keepalive 10;

}

server {

listen       80;

server_name  localhost;

location / {

root   html;

index  index.html index.htm;

}

#error_page  404              /404.html;

# redirect server error pages to the static page /50x.html

#

error_page   500 502 503 504  /50x.html;

location = /50x.html {

root   html;

}

# GET /get?key=some_key

location = /get {

set_unescape_uri $key $arg_key;  # this requires ngx_set_misc

redis2_query get $key;

redis2_pass 127.0.0.1:6380;

}

# GET /set?key=one&val=first%20value

location = /set {

set_unescape_uri $key $arg_key;  # this requires ngx_set_misc

set_unescape_uri $val $arg_val;  # this requires ngx_set_misc

redis2_query set $key $val;

redis2_pass 127.0.0.1:6380;

}

}

}

2,检测语法

[[email protected] ~]# /usr/local/openresty/nginx/sbin/nginx -t

3,启动

[[email protected] ~]# /usr/local/openresty/nginx/sbin/nginx

四,测试功能

1,SET Key

[[email protected] ~]# curl "http://172.17.6.60/set?key=name&val=minyt"

+OK

2,GET Key

[[email protected] ~]#  curl http://172.17.6.60/get?key=name

$5

minyt

五,备注

经了解,目前OpenResty第三方Redis模块都不支持集群协议

[[email protected] ~]# ./configure --help|grep redis

--without-http_redis2_module       disable ngx_http_redis2_module

--without-http_redis_module        disable ngx_http_redis_module

--without-lua_redis_parser         disable the lua-redis-parser library

--without-lua_resty_redis          disable the lua-resty-redis library

时间: 2024-10-13 11:46:59

OpenResty Redis 安装部署测试SET GET功能的相关文章

【转】linux平台Redis安装部署

Redis是一种高级key-value数据库.它跟memcached类似,不过数据可以持久化,而且支持的数据类型很丰富.有字符串,链表,集 合和有序集合.支持在服务器端计算集合的并,交和补集(difference)等,还支持多种排序功能.所以Redis也可以被看成是一个数据结构服务 器. Redis的所有数据都是保存在内存中,然后不定期的通过异步方式保存到磁盘上(这称为“半持久化模式”):也可以把每一次数据变化都写入到一个append only file(aof)里面(这称为“全持久化模式”).

Kibana+Logstash+Elasticsearch+Redis安装部署

最近做日志分析,发现logstash较符合自己的需求, Logstash:做系统log收集,转载的工具.同时集成各类日志插件,对日志查询和分析的效率有很大的帮助.一般使用shipper作为log收集.indexer作为log转载. Logstash shipper收集log 并将log转发给redis 存储 Logstash indexer从redis中读取数据并转发给elasticsearch redis:是一个db,logstash shipper将log转发到redis数据库中存储.Log

Linux Redis安装部署操作指南(一)

一.Redis安装部署 1.1.环境介绍 系统环境:Red HatEnterprise Linux Server release 6.2 (Santiago) 内核版本:Linux zxt-02.com2.6.32-220.el6.x86_64 #1 SMP Wed Nov 9 08:03:13 EST 2011 x86_64 x86_64 x86_64GNU/Linux 软件版本:redis-3.0.5 主机名:zxt-1.com 主机IP:192.168.1.108 安装所需软件环境: 1.

Redis安装部署维护

Redis是个高性能的key-value数据库,它的key具有丰富的数据结构:string,hash,list set和sorted set.作为NOSQL,比起memcache之类,不仅仅key数据结构丰富,而且具有持久化的功能,并且能够支持主从复制,很方便构建集群. redis高性能很大程度上源于它是个内存型数据库,它的高性能表现在:set操作11w/s,get操作8.1w/s,与其他类型数据库性能差异,可以 而参考:http://timyang.net/data/mcdb-tt-redis

linux+php5.4+nginx+支持redis安装部署

系统环境 [[email protected]~]# cat /etc/redhat-release CentOSrelease 6.5 (Final) [[email protected]~]# uname -a Linuxlocalhost.localdomain 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013x86_64 x86_64 x86_64 GNU/Linux php5.4 yum源 rpm -Uvhhttp://

Redis笔记系列(二)——Redis安装部署与维护详解

本文介绍Redis2.8的安装部署和维护方法. Redis在linux上的安装 步骤1: 首先从官网下在redis正式版的压缩包redis-2.8.19.tar.gz http://download.redis.io/releases/redis-2.8.19.tar.gz 步骤2:编译源程序: tar zxvf redis-2.8.19.tar.gz [[email protected] Downloads]$ tar zxvf redis-2.8.19.tar.gz [[email prot

redis安装部署

1.下载安装包 http://download.redis.io/releases/redis-3.2.6.tar.gz http://download.redis.io/releases/ 2.更新现有linux环境 sudo yum –y update; sudo yum -y install telnet curl nmap vim gcc gcc-c++ tcl ruby; 3.安装 1 tar -xvf redis-3.2.6.tar.gz 2 cd redis-3.2.6 3 mak

麒麟开源堡垒机安装部署测试及优缺点总结

近期出于管理和检查需要,单位领导要求上堡垒机系统,测试了几个商业堡垒机,因为价格超过预算等原因都未购买,又测试了三个开源的堡垒机,感觉麒麟开源堡垒机功能最全,基本上和商业堡垒机一样,唯一的问题就是图形部分不开源,但因为我们的服务器基本上全是LINUX环境,TELNET.SSH.FTP.SFTP已经足够了因此将这套堡垒机已经用于生产环境. 现在市场商业堡垒机价格太高,基本上都要到10万左右,我结合在公司部署开源堡垒机的经验,将过程写成文档与大家分享. 我测试的其它开源堡垒机基本上还是半成品,麒麟堡

Redis安装部署【转】

Redis是一种高级key-value数据库.它跟memcached类似,不过数据可以持久化,而且支持的数据类型很丰富.有字符串,链表,集 合和有序集合.支持在服务器端计算集合的并,交和补集(difference)等,还支持多种排序功能.所以Redis也可以被看成是一个数据结构服务 器. Redis的所有数据都是保存在内存中,然后不定期的通过异步方式保存到磁盘上(这称为"半持久化模式"):也可以把每一次数据变化都写入到一个append only file(aof)里面(这称为"