centos 6.5 安装、配置redis

基于CentOS release 6.5 Final, redis版本3.0.2 [redis版本号中间位是偶数的是稳定版,奇数的为非稳定版]

一、安装redis

1)     下载redis安装包

可去官网http://redis.io ,也可通过wget命令,

[[email protected] srv]# wget http://download.redis.io/redis-stable.tar.gz

2)解压

[[email protected] srv]# tar -zxvf redis-stable.tar.gz

3)编译、安装(编译安装安装Development tools和Desktop Platfrom 开发包组工具)

[[email protected] srv]# cd redis-stable

[[email protected] redis-stable]# ll

total 200

-rw-r--r--.  1 1000 1000 78892 Oct 26 15:17 00-RELEASENOTES

-rw-r--r--.  1 1000 1000    53 Oct 26 15:17 BUGS

-rw-r--r--.  1 1000 1000  1805 Oct 26 15:17 CONTRIBUTING

-rw-r--r--.  1 1000 1000  1487 Oct 26 15:17 COPYING

drwxr-xr-x.  7 1000 1000  4096 Oct 26 15:17 deps

-rw-r--r--.  1 1000 1000    11 Oct 26 15:17 INSTALL

-rw-r--r--.  1 1000 1000   151 Oct 26 15:17 Makefile

-rw-r--r--.  1 1000 1000  4223 Oct 26 15:17 MANIFESTO

-rw-r--r--.  1 1000 1000  6834 Oct 26 15:17 README.md

-rw-r--r--.  1 1000 1000 46695 Oct 26 15:17 redis.conf

-rwxr-xr-x.  1 1000 1000   271 Oct 26 15:17 runtest

-rwxr-xr-x.  1 1000 1000   280 Oct 26 15:17 runtest-cluster

-rwxr-xr-x.  1 1000 1000   281 Oct 26 15:17 runtest-sentinel

-rw-r--r--.  1 1000 1000  7606 Oct 26 15:17 sentinel.conf

drwxr-xr-x.  2 1000 1000  4096 Oct 26 15:17 src

drwxr-xr-x. 10 1000 1000  4096 Oct 26 15:17 tests

drwxr-xr-x.  7 1000 1000  4096 Oct 26 15:17 utils

[[email protected] redis-stable]# make

CC geo.o

LINK redis-server

INSTALL redis-sentinel

CC redis-cli.o

LINK redis-cli

CC redis-benchmark.o

LINK redis-benchmark

INSTALL redis-check-rdb

CC redis-check-aof.o

LINK redis-check-aof

Hint: It‘s a good idea to run ‘make test‘ ;)

make[1]: Leaving directory `/srv/redis-stable/src‘

[[email protected] redis-stable]# make install

cd src && make install

make[1]: Entering directory `/srv/redis-stable/src‘

Hint: It‘s a good idea to run ‘make test‘ ;)

INSTALL install

INSTALL install

INSTALL install

INSTALL install

INSTALL install

make[1]: Leaving directory `/srv/redis-stable/src‘

[[email protected] redis-stable]#

[[email protected] redis-stable]# ls /usr/local/bin

redis-benchmark  redis-check-aof  redis-check-rdb  redis-cli  redis-sentinel  redis-server

[[email protected] redis-stable]#

[[email protected] redis-stable]# /usr/local/bin/redis-server -v

Redis server v=3.2.5 sha=00000000:0 malloc=jemalloc-4.0.3 bits=64 build=661b15c1ebfa36b

注意:若此时执行redis-server –v (查看版本命令),若提示redis-server command not found,则需要将/usr/local/bin目录加到环境变量,如何添加,此处不做详细介绍,可查看修改/etc/profile,(查看环境变量命令:echo $PATH)

至此,redis安装完成,接着配置。

二、修改配置文件.conf

1)创建配置文件目录,dump file目录,进程目录,log目录等

配置文件一般放在/etc/下,创建fedis目录

[[email protected] redis-stable]# cd /etc/

[[email protected] etc]# mkdir redis

dump file、进程目录、log目录等,一般放在/var/目录下,

[[email protected] etc]# cd redis/

[[email protected] redis]# ls

[[email protected] redis]# cd /var

[[email protected] var]# mkdir redis

[[email protected] var]# cd redis/

[[email protected] redis]# mkdir data log run

[[email protected] redis]# ll

total 12

drwxr-xr-x. 2 root root 4096 Dec  5 15:58 data

drwxr-xr-x. 2 root root 4096 Dec  5 15:58 log

drwxr-xr-x. 2 root root 4096 Dec  5 15:58 run

[[email protected] redis]#

至此目录创建完毕。

2)修改配置文件,配置参数

首先拷贝解压包下的redis.conf文件至/etc/redis

[[email protected] redis-stable]# cp redis.conf /etc/re

readahead.conf    redhat-lsb/       redhat-release    redis/            resolv.conf       resolv.conf.save

[[email protected] redis-stable]# cp redis.conf /etc/redis/

[[email protected] redis-stable]# vi /etc/redis/redis.conf  最好备份一份redis.conf.bak

# Accept connections on the specified port, default is 6379 (IANA #815344).

# If port 0 is specified Redis will not listen on a TCP socket.

port 6379

#####修改默认端口

# Creating a pid file is best effort: if Redis is not able to create it

# nothing bad happens, the server will start and run normally.

pidfile /var/run/redis_6379.pid

#####修改pid目录为新建的目录

# The working directory.

#

# The DB will be written inside this directory, with the filename specified

# above using the ‘dbfilename‘ configuration directive.

#

# The Append Only File will also be created inside this directory.

#

# Note that you must specify a directory here, not a file name.

dir ./

#####修改dump目录为新建目录

# Specify the log file name. Also the empty string can be used to force

# Redis to log on the standard output. Note that if you use standard

# output for logging but daemonize, logs will be sent to /dev/null

logfile ""

#####修改log存储目录为新建目录

3)持久化
默认rdb,可选择是否开启aof,若开启,修改配置文件appendonly

4)启动redis,查看各目录下文件

[[email protected] redis-stable]# redis-server /etc/redis/redis.conf

查看dump,log,pid等

[[email protected] redis]# cd data

[[email protected] data]# ll

total 0

[[email protected] data]# ll../log

-bash: ll../log: No such file or directory

[[email protected] data]# ll ../log

total 4

-rw-r--r--. 1 root root 1861 Dec  5 16:15 redis.log

[[email protected] data]# ll ../run

total 4

-rw-r--r--. 1 root root 6 Dec  5 16:15 redis_6379.pid

[[email protected] data]#

发现只有日志,没有dump和pid信息,是因为当前redis服务仍然是console模式运行的,且没有数据存储操作

停止redis服务,修改配置文件使得redis在background运行

改成yes,保存,重启redis服务

5)客户端连接redis

[[email protected] run]# redis-cli

127.0.0.1:6379>    #####默认端口6379

6)至此,redis基础配置完毕,若有其他相关配置调整,可查找文档在修改
三、服务及开机自启动

1)创建redis启动脚本

拷贝解压包下utils下redis启动脚本至/etc/init.d

[[email protected] redis-stable]# cd /srv/redis-stable/utils/

[[email protected] utils]# cp redis_init_script /etc/init.d/

修改脚本名称为redis 并修改脚本pid及conf路径为实际路径

至此,在/etc/init.d目录下,已经可以通过service redis start/stop 启动/关闭redis服务了。

2、给启动脚本添加删除权限

#chmod +x /etc/init.d/redis  给启动脚本添加权限

#chmod -x /etc/init.d/redis  删除权限

3、设置自启动

#chkconfig redis on

如果运行报错,提示

[[email protected] init.d]# chkconfig redis on

service redis does not support chkconfig

是因为没有在启动脚本里加入redis启动优先级信息,可添加如下

再次执行chkconfig redis on,成功,至此自启动配置完毕。

本实验参考http://blog.csdn.net/ludonqin/article/details/47211109此文档完成。

时间: 2024-10-21 12:24:16

centos 6.5 安装、配置redis的相关文章

CentOS下Redisserver安装配置

1.CentOS 6.6下Redis安装配置记录 2.CentOS下Redisserver安装配置

CentOS 6.5安装配置LNMP服务器(Nginx+PHP+MySQL)

CentOS 6.5安装配置LNMP服务器(Nginx+PHP+MySQL) 一.准备篇: 1 /etc/init.d/iptables stop #关闭防火墙 2 关闭SELINUX 3 vi /etc/selinux/config 4 #SELINUX=enforcing #注释掉 5 #SELINUXTYPE=targeted #注释掉 6 SELINUX=disabled #增加 7 :wq 8 shutdown -r now #重启系统 二.安装篇 1.安装nginx 1 yum re

CentOS 7.0安装配置Vsftp服务器步骤详解

安装Vsftp讲过最多的就是在centos6.x版本中了,这里小编看到有朋友写了一篇非常不错的CentOS 7.0安装配置Vsftp服务器教程,下面整理分享给各位. 一.配置防火墙,开启FTP服务器需要的端口 CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙. 1.关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止

CentOS 7.0安装配置LAMP服务器(Apache+PHP+MariaDB)

原文 CentOS 7.0安装配置LAMP服务器(Apache+PHP+MariaDB) 一.配置防火墙,开启80端口.3306端口 CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙. 1.关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 2.安装iptables防火墙 yum insta

[LTMP搭建] Centos 6.5 安装配置 PHP

接上篇:http://www.cnblogs.com/antarctican/p/3748427.html (安装Mysql) 下载PHP. 我选择了日本线路,比内地和台湾线路快得多. [[email protected] src]# wget -c http://jp2.php.net/distributions/php-5.3.28.tar.gz 4. 安装 tengine 2.0.4 查看 version时, 提示 libssl.so.1.0.0 找不到 ? 1 2 [[email pro

Centos 6.4安装配置apache平台的svn服务器

一.安装apache.subversion服务 #yum install httpd subversion subversion-devel mod_dav_svn -y 二.配置apache服务器 # sed '{/^$/d;/#/d}' /etc/httpd/conf/httpd.conf ServerTokens OS ServerRoot "/etc/httpd" PidFile run/httpd.pid Timeout 60 KeepAlive Off MaxKeepAli

CentOS 7.x安装配置

简述 VMware可以创建多个虚拟机,每个虚拟机上都可以安装各种类型的操作系统.安装方法也有很多种.下面,主要以ISO镜像安装为例,介绍CentOS 7.x的安装过程及相关的参数设置. 简述 创建虚拟机 安装CentOS 重启 更多参考 创建虚拟机 打开VMware,单击右侧的[创建新虚拟机]选项,开始创建虚拟机. 选择[稍后安装操作系统],单击[下一步]按钮. 选择要在虚拟机上安装的[客户机操作系统]及对应的[版本],选择"Linux"与"CentOS"(注意:如

CentOS 7.0 安装配置LAMP服务器方法(Apache+PHP+MariaDB)

一.配置防火墙,开启80端口.3306端口 CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙. 1.关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 2.安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/ip

如何在CentOS系统中安装配置SNMP服务

CentOS(Community Enterprise Operating System,中文意思是:社区企业操作系统)是Linux发行版之一,现在有一大部分服务器在使用此操作系统:SNMP(简单网络管理协议)能够使网络管理员提高网络管理效能,及时发现并解决网络问题以及规划网络的增长.网络管理员还可以通过SNMP接收网络节点的通知消息以及告警事件报告等来获知网络出现的问题.本文主要介绍如何在CentOS系统中安装配置SNMP服务. 工具/原料 CentOS操作系统 方法/步骤 使用SNMP服务前

Centos 6.x 安装配置senginx

一.软件模块依赖性: [[email protected]] # yum -y install gcc+ gcc-c++ gcc* make* libpcre.so* openssl* pcre* zlib* libtool* libxml2* libxslt* gd* lua* 二.安装GeoIP 安装 MaxMind 的 GeoIP 库 MaxMind 提供了免费的 IP 地域数据库(GeoIP.dat),不过这个数据库文件是二进制的,需要用 GeoIP 库来读取,所以除了要下载 GeoIP