赞
踩
通过flink官网下载flink安装包
https://flink.apache.org/
下载安装包
将下载好的flink-1.17.1-bin-scala_2.12.tgz安装包放到centos目录下
解压文件:
[root@localhost ~]# tar -zxvf flink-1.17.1-bin-scala_2.12.tgz
会解压出来一个目录flink-1.17.1
进入到flink-1.17.1/conf目录下修改flink-conf.yaml文件,修改rest.bind-address配置为0.0.0.0,这个非常关键,是为了能在任何地方,比如windows的浏览器上访问flink web ui,
参考这个文章,简单高效
Linux快速配置Java环境,非常详细
会用到的命令如下,
a. 查看防火墙状态:firewall-cmd --state
如果是not running状态,说明没有启动防火墙
b. 关闭防火墙:systemctl stop firewalld.service
c. 设置开机禁启:systemctl disable firewalld.service
========================
以下为常用防火墙命令
查看防火墙状态:firewall-cmd --state
查看防火墙版本:firewall-cmd --version
更多防火墙状态:systemctl status firewalld.service
开启防火墙:systemctl start firewalld.service
关闭防火墙:systemctl stop firewalld.service
重启防火墙:systemctl restart firewalld.service
设置开机自启:systemctl enable firewalld.service
设置开机禁启:systemctl disable firewalld.service
查看是否自启:systemctl is-enabled firewalld.service
查看自启列表:systemctl list-unit-files|grep enabled
在flink的bin目录下,使用如下命令:
[root@localhost bin]# ./start-cluster.sh
Starting cluster.
Starting standalonesession daemon on host localhost.localdomain.
Starting taskexecutor daemon on host localhost.localdomain.
关闭flink的命令为:./stop-cluster.sh,一定要在bin目录下执行。
在windows的浏览器中输入
http://[centos的ip地址]:8081即可
出现如下页面说明配置成功:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。