0

enter image description here

Configured in Ubuntu of superset, unable to star with my own ip address. Its taking default ip address i.e http://127.0.0.1:8088/.

Shanky
  • 1
  • 2

2 Answers2

1

You can also use the command like this:

superset run -h 0.0.0.0 -p 8088
xiaoting chen
  • 156
  • 2
  • 4
0

Use gunicorn. For example:

$ gunicorn -w 4 -b <your_ip_addr>:<port_num> "superset:app"
rniamke
  • 1
  • 1