在Mac 上安装flink,需要通过Homebrew安装的
1、howmebrew的安装方式,在终端粘贴以下命令,或者去官网https://brew.sh/index_zh-cn 找到此代码复制粘贴到终端上,然后等待安装flink
```
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
```
2、接着开始安装flink,在终端粘贴以下命令,或者去官网https://ci.apache.org/projects/flink/flink-docs-release-1.7/ tutorials/local_setup.html 按照指示进行安装(官网的启动不是很详细)
```
brew install apache-flink
```
3、定位flink的安装目录
```
brew info apache-flink
```
复制你的安装路径,我的是
```
/usr/local/Cellar/apache-flink/1.7.2
```
4、切换到这个目录下,执行启动命令
```
cd /usr/local/Cellar/apache-flink/1.7.2
启动命令
./libexec/bin/start-cluster.sh
```
5、网页查看: http://localhost:8081 若能打开,此时表示flink已经安装好了
原文地址:https://www.cnblogs.com/lindaiyu/p/10493666.html
时间: 2024-10-10 12:38:32