Snow
Snow

Reputation: 1138

How to run apache-superset in production?

I have built apache-superset from source on my local pc. I git pushed it to my server and now I'm trying to use it in production and access the webapp like: ip:port

I built it the same way as in my local environment, but I cannot access it on the browser using the url ip:port. This is the way I ran it

I used port 8088 on localhost, and I was using the same on the server.

Upvotes: 1

Views: 3809

Answers (2)

Nishant Singh
Nishant Singh

Reputation: 511

For example if your server public ip is - 10.65.88.31

Then you can access the application as http://10.65.88.31:8088.

If you are not able to access from above example, then try to run your docker this way


docker run -p 8089:8088 --name superset f70e3db91324

8089:8088 -> local port 8089 bind with container port 8088.

-p is for port

--name is for container name

f70e3db91324 - this is image id

So you can access now via

http://<public ip address>:8089/
http://10.65.88.31:8089/ - Example.

Upvotes: 0

Nice-Guy
Nice-Guy

Reputation: 1524

Try to access the web app by entering your <public IP of your server>:8088.

Upvotes: 1

Related Questions