Skip to content

Daemon Installation

Elian edited this page Dec 17, 2021 · 3 revisions

Daemon Installation

You must have java installed already

sudo apt install openjdk-11-jdk
  1. Setup MySQL

  2. Download the latest release onto your Linux machine (you can use wget)

  3. Extract the release using unzip

  4. Move the jar file into a permanent location

     sudo mkdir /opt/ezpanel
     sudo mv ezPanelDaemon.jar /opt/ezpanel/ezPanelDaemon.jar
    
  5. Start the daemon (use the credentials you made in the MySQL console) java -jar /opt/ezpanel/ezPanelDaemon.jar 127.0.0.1 ezpanel [mysql user] [mysql password]

If you see no errors running the command your set up is successful! Unfortunately there is a bit more to it. You want to register the daemon as a service so that you have the benefit of it auto-starting upon reboot and so that you don't have to sit there with your terminal open
See the systemctl service set up

Clone this wiki locally