Create a systemd service for Superset

touch superset.service
nano superset.service
[Unit]
Description=superset
After=syslog.target network.target

[Service]
User=root
Type=simple
ExecStart=gunicorn -w 8 -b 0.0.0.0:8084 -k gevent --timeout 120 --limit-request-line 0 --limit-request-field_size 0 "superset.app:create_app()"
SuccessExitStatus=143

[Install]
Alias=superset
WantedBy=multi-user.target
sudo mv superset.service /etc/systemd/system/superset.service
sudo systemctl enable superset.service
sudo systemctl start superset.service

References
https://gist.github.com/romankierzkowski/c54c83496b3267362cc805477c4e409f
https://github.com/apache/superset/issues/8704