Hi,
We have disabled Flink Web UI for security reasons however we want to use REST Api for monitoring purpose. For that I have set jobmanager.web.port = -1 , rest.port=8888, rest.address=myhostBut I am not able to access any REST api using https://myhost:8888/<endpoint> Is it mandatory to have Flink Web UI running or am I missing any configuration ? Regards, Vinay Patil |
Hi Vinay, On 2018-07-20 22:48 , [hidden email] Wrote: Did job manager run in node "myhost"? Did you check the port you specified open for remote access? Can you try to start web UI, but just forbid its port? ---- Vino yang Thanks.
|
Effectively you can't disable them
selectively; reason being that they are actually one and the same.
The ultimate solution is to build flink-dist yourself, and exclude "flink-runtime-web" from it, which removes the required files. Note that being able to selectively disable them _for security reasons_ wouldn't do you much good as far as I can tell; if you have access to the REST API you can do anything the UI does. Similarly, if you can restrict access to the REST API, you also do that for the UI. On 20.07.2018 18:14, Vino yang wrote:
|
Thanks Chesnay for your inputs. I am actually starting the cluster using bootstrap application where in I am calling Job Manager and Task Manager main class to form the cluster. So I have removed flink-runtime-web dependency and used only flink_runtime dependency for forming the cluster , but still not able to hit the rest api's, Is there anything else I can do here ? Yes, you are right about separating the API's into two parts. Regards, Vinay Patil On Sat, Jul 21, 2018 at 1:46 AM Chesnay Schepler <[hidden email]> wrote:
|
Free forum by Nabble | Edit this page |