redis快速安装

下载包

curl -O http://download.redis.io/redis-stable.tar.gz

解压

tar xf redis-stable.tar.gz

cd 到目录

cd redis-stable

直接make 编译

make && make  install 

开始初始化配置

cd /root/redis-stable/utils
./install_server.sh
~~~~~~~~~
[root@pa1 utils]#./install_server.sh 
Welcome to the redis service installer
This script will help you easily set up a running redis server

Please select the redis port for this instance: [6379] 6379
Please select the redis config file name [/etc/redis/6379.conf] /etc/redis/6379.conf
Please select the redis log file name [/var/log/redis_6379.log] /var/log/redis_6379.log
Please select the data directory for this instance [/var/lib/redis/6379] /var/lib/redis/6379
Please select the redis executable path [/usr/local/bin/redis-server] /usr/local/bin/redis-server
Selected config:
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
Is this ok? Then press ENTER to go on or Ctrl-C to abort.
Copied /tmp/6379.conf => /etc/init.d/redis_6379
Installing service...
Successfully added to chkconfig!
Successfully added to runlevels 345!
Starting Redis server...
Installation successful!

会输出一些重要的信息

image.png

查看配置文件里面必要的参数(如有不同.请修改,只需要修改bind地址)

vim /etc/redis/6379.conf

bind 0.0.0.0 
daemonize yes
logfile "/var/log/redis.log"

启动

/etc/init.d/redis_6379 start

关闭

/etc/init.d/redis_6379 stop

查看端口是否成功开启

[root@pa1 ~]#netstat -lntup |grep redis
tcp 0 0 0.0.0.0:6379 0.0.0.0:* LISTEN 6977/redis :6379
tcp6 0 0 :::6379 :::
LISTEN 6977/redis *:6379

测试是否安装成功

[root@pa1 src]#redis-cli
127.0.0.1:6379>

成功~~~~~~~~~~

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。