ubuntu安装redis详解大数据

1、下载安装
[email protected]:/# apt-cache search redis
[email protected]:/# apt-get install redis-server

a、redis配置文件:/etc/redis/redis.conf
b、redis服务路径:/etc/init.d/redis-server

2、启动redis
[email protected]:/# cd /etc/init.d
[email protected]:/# redis-server &
注:要先进入”/etc/init.d”目录,再执行”redis-server &”命令启动redis

3、启动client客户端连接
[email protected]:/# redis-cli
127.0.0.1:6379> set name ljq
OK
127.0.0.1:6379> get name
“ljq”
127.0.0.1:6379>

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/9788.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论