目前,这里的安装方式有 Macbook。
MacBook
使用 brew 进行安装
brew search redis
出现
==> Formulae
hiredis redis redis-leveldb redis@3.2 redis@4.0
==> Casks
another-redis-desktop-manager
然后我们安装
brew install redis@4.0
使用 这个使用已经作废
brew services start redis@4.0 开启
brew services stop redis@4.0 关闭
使用 2021.1.5
redis-server # 临时启动
redis-server /usr/local/etc/redis.conf 配置文件临时启动
假如想要后台启动需要
将 /usr/local/etc/redis.conf 找到 daemonize 把 on 改为 yes 保存退出
redis-server /usr/local/etc/redis.conf 配置文件后台启动
ubuntu
apt安装
在 Ubuntu 系统安装 Redi 可以使用以下命令:
$sudo apt-get update
$sudo apt-get install redis-server
启动 Redis
$ redis-server
查看 redis 是否启动?
$ redis-cli
以上命令将打开以下终端:
redis 127.0.0.1:6379>
127.0.0.1 是本机 IP ,6379 是 redis 服务端口。
以上说明我们已经成功安装了redis。
安装完成后,会自动启动
/usr/bin/redis-server 127.0.0.1:6379
如果要后台启动,方法和上面 win
的方式一样。
centos
这次 centos
的版本是 7
,按照,网络上的大部分教程,我都不成功。
不成功的网络上大部分教程
在 CentOS
和 Red Hat
系统中,首先添加 EPEL
仓库,然后更新 yum
源:
sudo yum install epel-release
sudo yum update
然后安装 Redis
数据库:
sudo yum -y install redis
这样操作下来,redis
安装的事 3.2
版本。
并且,这个 redis
还启动不起来「可以临时启动」,并且,不能设置密码和端口,总之,完全不能用。
卸载的话,使用
yum remove redis
安装最新的 redis
首先通过在 SSH 终端中运行以下命令来启用 Remi 存储库:
sudo yum install epel-release yum-utils
sudo yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
sudo yum-config-manager --enable remi
通过键入以下命令安装 Redis
包:
sudo yum install redis
这样安装的话,是 7.0.5
版本的 redis
。
但是,安装时候,可以改 IP
和密码,但是,设置端口是失败的。
运行
systemctl start redis
报错
Job for redis.service failed because the control process exited with error code. See "systemctl status redis.service" and "journalctl -xe" for details.