清华镜像源下载storm
时间: 2023-12-18 16:29:48 浏览: 145
清华镜像源,用于帮助快速下载pytorch
清华镜像源是一个常用的软件源,可以加速软件的下载和更新。以下是在清华镜像源下载storm的步骤:
1.打开清华大学软件站的CentOS镜像源页面:https://mirror.tuna.tsinghua.edu.cn/help/centos/ 。
2.根据你的CentOS版本,选择相应的镜像源链接,例如CentOS 7的链接为:https://mirrors.tuna.tsinghua.edu.cn/centos/7/os/x86_64/ 。
3.在终端中输入以下命令,下载并安装storm:
```shell
# 下载storm安装包
wget https://mirrors.tuna.tsinghua.edu.cn/apache/storm/apache-storm-2.2.0/apache-storm-2.2.0.tar.gz
# 解压安装包
tar -zxvf apache-storm-2.2.0.tar.gz
# 进入解压后的目录
cd apache-storm-2.2.0
# 配置环境变量
export STORM_HOME=`pwd`
export PATH=$PATH:$STORM_HOME/bin
# 启动storm
storm nimbus &
storm supervisor &
storm ui &
```
4.按照上述步骤,即可在清华镜像源上下载并安装storm。
阅读全文