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 2020/02/09 21:55:56 UTC

[GitHub] [incubator-superset] junwansas opened a new issue #9105: I can not start superset

junwansas opened a new issue #9105: I can not start superset
URL: https://github.com/apache/incubator-superset/issues/9105
 
 
   I get everything installed. and run ./superset run -p 8088 --with-threads --reload --debugger
   
   Get this response.
   
   [root@dvtcbddd951 bin]# ./superset run -p 8088 --with-threads --reload --debugger
   2020-02-09 16:34:22,553:INFO:root:logging was configured successfully
   2020-02-09 16:34:22,633:INFO:root:Configured event logger of type <class 'superset.utils.log.DBEventLogger'>
    * Environment: production
      WARNING: This is a development server. Do not use it in a production deployment.
      Use a production WSGI server instead.
    * Debug mode: off
   2020-02-09 16:34:23,564:INFO:werkzeug: * Running on http://127.0.0.1:8088/ (Press CTRL+C to quit)
   2020-02-09 16:34:23,564:INFO:werkzeug: * Restarting with stat
   2020-02-09 16:34:24,450:INFO:root:logging was configured successfully
   2020-02-09 16:34:24,529:INFO:root:Configured event logger of type <class 'superset.utils.log.DBEventLogger'>
   2020-02-09 16:34:25,460:WARNING:werkzeug: * Debugger is active!
   2020-02-09 16:34:25,470:INFO:werkzeug: * Debugger PIN: 554-599-075
   
   But When I go to http://myservername:8088/
   I did not get anything.
   
   Did I missing anything? Where is the log for superset? I can not find the log file. I have downgrade werkzeug to 0.16.0 and the python version is 3.7.6
   
   my os is RHEL Red Hat Enterprise Linux Server release 7.4 (Maipo).
   
   I installed the python in a different location /opt/software/hadoop/p376 and did make altinstall
   
   Thank you!
   
   Jun

----------------------------------------------------------------
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


[GitHub] [incubator-superset] stale[bot] commented on issue #9105: I can not start superset

Posted by GitBox <gi...@apache.org>.
stale[bot] commented on issue #9105: I can not start superset
URL: https://github.com/apache/incubator-superset/issues/9105#issuecomment-612313266
 
 
   This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. For admin, please label this issue `.pinned` to prevent stale bot from closing the issue.
   

----------------------------------------------------------------
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


[GitHub] [incubator-superset] dpgaspar commented on issue #9105: I can not start superset

Posted by GitBox <gi...@apache.org>.
dpgaspar commented on issue #9105: I can not start superset
URL: https://github.com/apache/incubator-superset/issues/9105#issuecomment-584017086
 
 
   Hi,
   
   127.0.0.1 is localhost so your server is listening on the loopback interface. Try:
   
   `superset run -h 0.0.0.0 -p 8088 --with-threads --reload --debugger`
   
   Note: that this way of running superset is for development, do not use it in production
   

----------------------------------------------------------------
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


[GitHub] [incubator-superset] stale[bot] closed issue #9105: I can not start superset

Posted by GitBox <gi...@apache.org>.
stale[bot] closed issue #9105: I can not start superset
URL: https://github.com/apache/incubator-superset/issues/9105
 
 
   

----------------------------------------------------------------
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


[GitHub] [incubator-superset] junwansas commented on issue #9105: I can not start superset

Posted by GitBox <gi...@apache.org>.
junwansas commented on issue #9105: I can not start superset
URL: https://github.com/apache/incubator-superset/issues/9105#issuecomment-584158015
 
 
   It looks like working now but the -h has to be an ip address. Is it possible to run on a dns name? like servername.cox.com? I have the servername in our dns server. But I used that servername in -h option to start superset. It did not go through. Did I missing anything?
   
   Jun Wan
   Enterprise Data Services
   O 404.269.6804
   C 404.625.2056
   CTECHA.5. 112E
   6305 Peachtree Dunwoody Rd. Atlanta, GA 30328
   [signature_976828730]<https://www.cox.com/>
   
   From: Daniel Vaz Gaspar <no...@github.com>
   Sent: Monday, February 10, 2020 3:52 AM
   To: apache/incubator-superset <in...@noreply.github.com>
   Cc: Wan, Jun (CCI-Atlanta) <Ju...@cox.com>; Author <au...@noreply.github.com>
   Subject: [EXTERNAL] Re: [apache/incubator-superset] I can not start superset (#9105)
   
   
   Hi,
   
   127.0.0.1 is localhost so your server is listening on the loopback interface. Try:
   
   superset run -h 0.0.0.0 -p 8088 --with-threads --reload --debugger
   
   Note: that this way of running superset is for development, do not use it in production
   
   —
   You are receiving this because you authored the thread.
   Reply to this email directly, view it on GitHub<https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_apache_incubator-2Dsuperset_issues_9105-3Femail-5Fsource-3Dnotifications-26email-5Ftoken-3DAMWWYVO35I6ATPNZUBR7E5LRCEISJA5CNFSM4KSEUNS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOELHWJPQ-23issuecomment-2D584017086&d=DwMCaQ&c=7rU_TrP7-Aj2T1siDr9tKQ&r=AtbLFNaMC0rr_Z2fkqS6HA&m=oXQbAJp1Axmtg-6O1SZVsUwvpSCOQAXtsRvjs9c3M3U&s=FjKCHvdeW1jAEofVRQl7ZAP4MXOMiHQO4jOpxb2aXpo&e=>, or unsubscribe<https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_notifications_unsubscribe-2Dauth_AMWWYVM6D4ILACDC25SDSDDRCEISJANCNFSM4KSEUNSQ&d=DwMCaQ&c=7rU_TrP7-Aj2T1siDr9tKQ&r=AtbLFNaMC0rr_Z2fkqS6HA&m=oXQbAJp1Axmtg-6O1SZVsUwvpSCOQAXtsRvjs9c3M3U&s=7RwukXP_Wca3lta6cHM8C5IQIGMAFsLoH__04gMqvic&e=>.
   

----------------------------------------------------------------
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


[GitHub] [incubator-superset] junwansas commented on issue #9105: I can not start superset

Posted by GitBox <gi...@apache.org>.
junwansas commented on issue #9105: I can not start superset
URL: https://github.com/apache/incubator-superset/issues/9105#issuecomment-584143013
 
 
   Any instruction on production? That will be my next step if I can fix this problem.
   
   Thank you!
   
   Jun Wan
   Enterprise Data Services
   O 404.269.6804
   C 404.625.2056
   CTECHA.5. 112E
   6305 Peachtree Dunwoody Rd. Atlanta, GA 30328
   [signature_976828730]<https://www.cox.com/>
   
   From: Daniel Vaz Gaspar <no...@github.com>
   Sent: Monday, February 10, 2020 3:52 AM
   To: apache/incubator-superset <in...@noreply.github.com>
   Cc: Wan, Jun (CCI-Atlanta) <Ju...@cox.com>; Author <au...@noreply.github.com>
   Subject: [EXTERNAL] Re: [apache/incubator-superset] I can not start superset (#9105)
   
   
   Hi,
   
   127.0.0.1 is localhost so your server is listening on the loopback interface. Try:
   
   superset run -h 0.0.0.0 -p 8088 --with-threads --reload --debugger
   
   Note: that this way of running superset is for development, do not use it in production
   
   —
   You are receiving this because you authored the thread.
   Reply to this email directly, view it on GitHub<https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_apache_incubator-2Dsuperset_issues_9105-3Femail-5Fsource-3Dnotifications-26email-5Ftoken-3DAMWWYVO35I6ATPNZUBR7E5LRCEISJA5CNFSM4KSEUNS2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOELHWJPQ-23issuecomment-2D584017086&d=DwMCaQ&c=7rU_TrP7-Aj2T1siDr9tKQ&r=AtbLFNaMC0rr_Z2fkqS6HA&m=oXQbAJp1Axmtg-6O1SZVsUwvpSCOQAXtsRvjs9c3M3U&s=FjKCHvdeW1jAEofVRQl7ZAP4MXOMiHQO4jOpxb2aXpo&e=>, or unsubscribe<https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_notifications_unsubscribe-2Dauth_AMWWYVM6D4ILACDC25SDSDDRCEISJANCNFSM4KSEUNSQ&d=DwMCaQ&c=7rU_TrP7-Aj2T1siDr9tKQ&r=AtbLFNaMC0rr_Z2fkqS6HA&m=oXQbAJp1Axmtg-6O1SZVsUwvpSCOQAXtsRvjs9c3M3U&s=7RwukXP_Wca3lta6cHM8C5IQIGMAFsLoH__04gMqvic&e=>.
   

----------------------------------------------------------------
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


[GitHub] [incubator-superset] dpgaspar commented on issue #9105: I can not start superset

Posted by GitBox <gi...@apache.org>.
dpgaspar commented on issue #9105: I can not start superset
URL: https://github.com/apache/incubator-superset/issues/9105#issuecomment-584205706
 
 
   Superset is just a flask app, you can read: https://flask.palletsprojects.com/en/1.1.x/deploying/
   

----------------------------------------------------------------
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