BSP
BSP

Reputation: 775

Bokeh Server not working when deployed from windows server

We are trying to execute bokeh server from a Windows Server. Everything looks fine. But when trying to reach the it from another device we get the following error in the web browser: "403: Forbidden". Even though the bokeh server is executed allowing all ports and incoming IPs, we still get a message telling us that the host is not in the whitelist. This is the server output when executing bokeh and trying to reach it from another computer:

What we get at server level when executing bokeh Server and try to reach the it from another computer.

Every device is connected to local network.

I attach what we get when log level is in debug:

Debug level logs

Upvotes: 2

Views: 626

Answers (1)

bigreddot
bigreddot

Reputation: 34568

There is a difference in how shell quoting works between platforms. On Windows, you need to do

--host=*

with no quotes around the asterisk.

Upvotes: 1

Related Questions