How to daemonize superset process
See original GitHub issueMake sure these boxes are checked before submitting your issue - thank you!
- I have checked the superset logs for python stacktraces and included it here as text if any
- I have reproduced the issue with at least the latest released version of superset
- I have checked the issue tracker for the same issue and I haven’t found one similar
Superset version
0.15.0
Expected results
Detaches the server from the controlling terminal and enters the background
Actual results
can’t realize running superset at backend
Steps to reproduce
gunicorn is superset’s server, I add the parameter -D --daemon
in bin.superset.run_server(), but don’t work.
Is there any other way s to detaches the server from the controlling terminal and enters the background?
Issue Analytics
- State:
- Created 7 years ago
- Comments:20 (4 by maintainers)
Top Results From Across the Web
How to daemonize superset process · Issue #2123 - GitHub
gunicorn is superset's server, I add the parameter -D --daemon in bin.superset.run_server(), but don't work. Is there any other way s to detaches...
Read more >Run Superset as Service - daemon - Stack Overflow
[Unit] Description = Apache Superset Webserver Daemon After = network.target [Service] PIDFile = /home/superset/superset-webserver.
Read more >Setting up Apache Superset as a Systemd Service
writing PATH=$PATH:/path_to_directory_containing_gunicorn WILL NOT WORK As expected. reload the units configuration $ systemctl daemon- ...
Read more >Creating python superset daemon using systemctl in centos
Creating python superset daemon using systemctl in centos · 1. make service file. sudo vim /etc/systemd/system/superset.service · 2. make script.
Read more >Introduction to superset deployment, installation and ...
Introduction to superset deployment, installation and use Superset overview Apache Superset is an open source, modern and lightweight BI analysis tool.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@pastarace change
/var/superset/superset/
with path to your Virtualenv. It’s working I checked. You can also removePYTHONPATH
line. I added it because I am using local configuration file.Would recommend using a straight
gunicorn
in place ofsuperset runserver
to allow for more control and avoid an extra level of shelling