The daemon for ezPanel, the open source Minecraft server panel. Please check the ezPanelWeb repository for all documentation
This Daemon runs on Java (jar) and can be set up as a service using systemctl for easy starting/stopping and auto start if your linux server needs to reboot.
The daemon also requires you to set up the MySQL database and user prior to starting. (tutorial available on the ezPanelWeb Wiki)
See the below example service file (tutorial available on the ezPanelWeb Wiki)
[Unit]
Description=ezPanel Daemon Service
After=syslog.target network.target
[Service]
SuccessExitStatus=143
User=root
Group=root
Type=simple
WorkingDirectory=/opt/ezPanel
ExecStart=/bin/java -jar /opt/ezPanel/ezPanelDaemon.jar [mysql host] [created database] [created user] [password]
ExecStop=/bin/kill -15 $MAINPID
[Install]
WantedBy=multi-user.target