博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[nosql之redis]yum安装redis
阅读量:6515 次
发布时间:2019-06-24

本文共 1646 字,大约阅读时间需要 5 分钟。

1.首先对于这种nosql来说目前我用到的功能很少,所以感觉没有必要去优化他跟不需要去编译安装。今天来介绍下一个yum安装redis

步骤1:安装扩展yum库

[root@localhost ~]# yum install epel-release##在查看下yum源中是否有redis[root@localhost ~]# yum search redis[root@localhost ~]# yum -y install redis##ok安装完成!

启动:

##CentOS7[root@localhost ~]# systemctl start redis.service##CentOS7以下[root@localhost ~]# service redis start##查看启动:[root@localhost ~]# ps -ef | grep redisredis     12683      1  0 23:19 ?        00:00:00 /usr/bin/redis-server 127.0.0.1:6379root      12696  12454  0 23:20 pts/2    00:00:00 grep --color=auto redis

客户端连接:

[root@localhost ~]# redis-cli 127.0.0.1:6379> 127.0.0.1:6379> keys *(empty list or set)127.0.0.1:6379> set a 1OK127.0.0.1:6379> get a"1"127.0.0.1:6379> keys *1) "a"127.0.0.1:6379> del a (integer) 1 127.0.0.1:6379> keys * (empty list or set)

开机自启动:两种方式

方法1: 启动命令写入 /etc/rc.d/rc.local 文件里面

[root@localhost ~]# echo 'systemctl start redis.service' >> /etc/rc.d/rc.local [root@localhost ~]# cat /etc/rc.d/rc.local #!/bin/bash# THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES## It is highly advisable to create own systemd services or udev rules# to run scripts during boot instead of using this file.## In contrast to previous versions due to parallel execution during boot# this script will NOT be run after all other services.## Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure# that this script will be executed during boot.touch /var/lock/subsys/localmemcached -u memcached -p 11211 -m 64 -c 512 &systemctl start redis.service

方法2:加入系统服务 :我这里用yum安装本身就是加入了系统服务了只需要设置开机自启动就可以:

[root@localhost ~]# systemctl enable redis.service

转载于:https://www.cnblogs.com/patf/p/5805054.html

你可能感兴趣的文章
windows 下配置 Nginx 常见问题(转)
查看>>
BeanFactory not initialized or already closed - call 'refresh' before accessing beans解决办法
查看>>
dSYM 文件分析工具
查看>>
R语言合并data.frame
查看>>
linux主机下的Vmware Workstation配置NAT设置 端口映射-Ubuntu为例
查看>>
unity physics joint
查看>>
TD的访问地址
查看>>
JAVA常见面试题之Forward和Redirect的区别
查看>>
tmpFile.renameTo(classFile) failed 错误
查看>>
【甘道夫】Apache Hadoop 2.5.0-cdh5.2.0 HDFS Quotas 配额控制
查看>>
一张图看懂normal,static,sealed,abstract 的 区别
查看>>
Task的使用
查看>>
grep和正则表达式
查看>>
s:iterator巧妙控制跳出循环
查看>>
移动互联网思维
查看>>
redis-手写redis切片和非切片连接池并注入springboot中
查看>>
Kosaraju算法详解
查看>>
Serv-U 的升级及数据备份和迁移【转】
查看>>
webstorm无法显示左边文件夹目录的解决方法
查看>>
Android数据保存之文件保存
查看>>