You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2019/11/27 03:48:26 UTC

[GitHub] [incubator-superset] vliweihan commented on issue #8673: How to deploy superset in a production environment?

vliweihan commented on issue #8673: How to deploy superset in a production environment?
URL: https://github.com/apache/incubator-superset/issues/8673#issuecomment-558916146
 
 
   @liuhao-121  There is a solution using gunicorn , refer to the Superset documentation(https://superset.incubator.apache.org/installation.html)
   
   (superset_test) [root@localhost superset]# gunicorn \
         -w 10 \
         -k gevent \
         --timeout 120 \
         -b  0.0.0.0:6666 \
         --limit-request-line 0 \
         --limit-request-field_size 0 \
         --statsd-host localhost:8125 \
         superset:app
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org