CentOS 6/7安装Redis服务器教程
说明:redis
的缩写是REmote DIctionary Server
。它是最流行的开源,高级key-value
存储系统。这里说下CentOS 7
上安装redis
服务器方法。
项目地址:http://redis.io/
安装
1、安装EPEL
#CentOS/RHEL 6: rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm #CentOS/RHEL 7: rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
2、安装Redis服务器
1、yum
安装redis
服务器
yum install redis
两个重要的redis
服务器配置文件的路径/etc/redis.conf
和/etc/redis-sentinel.conf
。
2、启动redis
服务器
#CentOS 6 service redis start #CentOS 7 systemctl start redis.service
3、检查redis
服务器的运行状态
#CentOS 6 service redis status #CentOS 7 systemctl status redis.service
4、测试Redis
的安装
redis-cli ping
如果返回结果PONG
,则安装成功。
3、redis服务器相关命令
#CentOS 6系统 chkconfig redis on #开机自启 service redis stop #停止redis服务器 service redis restart #重新启动redis服务器 #CentOS 7系统 systemctl stop redis.service #停止redis服务器 systemctl restart redis.service #重新启动redis服务器 systemctl enable redis.service #开机启动redis服务器 systemctl disable redis.service #开机禁用redis服务器
4、Redis服务器监听端口Redis Server
默认侦听端口号6379
,可使用SS
命令查看。
ss -nlp|grep redis
学习Redis
请看:http://redis.io/documentation
下载地址:
说明:redis
的缩写是REmote DIctionary Server
。它是最流行的开源,高级<
此文章转载自互联网-《CentOS 6/7安装Redis服务器教程》
免责声明:
本站提供的一切软件、教程和内容信息仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。
本站信息来自网络收集整理,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑或手机中彻底删除上述内容。
如果您喜欢该程序和内容,请支持正版,购买注册,得到更好的正版服务。我们非常重视版权问题,如有侵权请邮件与我们联系处理。敬请谅解!
发表评论: