Flink cluster environment deployment

1.1 Basic environment
jdk1.8 and above [Configure JAVA_HOME environment variable]
SSH password-free login [Password-free login between nodes in the cluster]
1.2 Installation package download
Provided in the supporting documentation folder, use Flink1.11.1 version
1.3 Cluster planning
linux123: JobManager +TaskManager
linux121:TaskManager
linux122:TaskManager
1.4 standalone mode deployment
Upload and decompress the installation package

tar -zxvf /opt/lagou/software/flink-1.11.1-bin-scala_2.12.tgz -C /opt/lagou/servers/

Modify flink/conf/flink-conf.yaml file
jobmanager.rpc.address: linux123
modify slave:
linux121
linux123
linux122
modify master
linux123

Start the
execution in the bin directory in standalone mode./start-cluster.sh

Guess you like

Origin blog.csdn.net/weixin_38813363/article/details/113605934