shell脚本安装 redis
时间: 2023-08-12 21:10:33 浏览: 114
redis安装shell脚本
你可以使用以下的Shell脚本来安装Redis:
```shell
#!/bin/bash
# 更新系统软件包
sudo apt update
# 安装Redis
sudo apt install redis-server
# 启动Redis服务
sudo systemctl start redis-server
# 设置Redis开机自启动
sudo systemctl enable redis-server
```
将以上脚本保存为一个名为`install_redis.sh`的文件,然后在终端中执行以下命令来运行脚本:
```shell
chmod +x install_redis.sh
./install_redis.sh
```
执行完毕后,Redis将会成功安装在你的系统中。你可以使用`redis-cli`命令来连接到Redis服务器,并进行相关的操作和配置。
阅读全文