赞
踩
brew install redis
使用 homebrew 安装 redis 的文件位置:
为了不影响原本 Redis 的配置文件,复制配置文件到自己的目录(以后 Redis 启动就使用自己的配置文件启动,笔者在根目录下创建了 conf 文件夹,配置文件统一管理)
~/conf
中:cp /opt/homebrew/etc/redis.conf conf
修改配置文件
vim ~/conf/redis.conf
进入vim通过 /daemonize 查找定位到该位置,设置为 yes,作用:运行后台运行
方式一(不推荐)
brew services start redis//启动服务,这种方式不太建议,因为控制台不用输出相应的日志
brew services stop redis //停止服务
方式二(推荐)
#通过自定义配置文件启动 Redis
redis-server ~/conf/redis.conf
测试使用
#查看 Redis 进程 tong@MacBook-Pro ~ % ps aux | grep redis tong 31606 0.5 0.0 409344320 3712 ?? Ss 5:09下午 0:00.12 redis-server 127.0.0.1:6379 tong 31610 0.0 0.0 408636112 1440 s000 S+ 5:10下午 0:00.00 grep redis #打开另外一个终端连接 Redis 3输入 ping 命令显示PONG 即成功 tong@MacBook-Pro ~ % redis-cli -p 6379 127.0.0.1:6379> ping PONG 127.0.0.1:6379> #再次查看 Redis 进程 tong@MacBook-Pro ~ % ps aux | grep redis tong 31606 0.6 0.0 409615680 4656 ?? Ss 5:09下午 0:00.97 redis-server 127.0.0.1:6379 tong 31643 0.0 0.0 408636112 1440 s000 S+ 5:12下午 0:00.01 grep redis tong 31626 0.0 0.0 408788512 3648 s001 S+ 5:11下午 0:00.01 #关闭退出 tong@MacBook-Pro ~ % redis-cli -p 6379 127.0.0.1:6379> ping PONG 127.0.0.1:6379> shutdown not connected> exit tong@MacBook-Pro ~ %
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。