Install EzyPlatform
Updated at
1700055974000
Installation Steps
- Install Mysql, you can refer to the MySQL documentation.
- Go to the Ezyplatform home page and download the installation package.
- Extract the downloaded file to obtain the EzyPlatform folder. Open this folder.
- Open the
settings/setup.properties
file and modify the corresponding datasource information.
For Linux
- Open the terminal and navigate to the downloaded EzyPlatform folder using the
cd
command.
- Run the command:
bash cli.sh "console admin"
. If you see EZYHTTP READY
displayed, it means you have successfully installed it. If an exception occurs, it means you have misconfigured the datasource
.
- Access the following URL: http://localhost:9090/setup-admin.
- Fill in the necessary information to create a super admin account.
- After successfully entering the information, click the
submit
button to complete the EzyPlatform installation.
- Return to the terminal and press
crlt + C
to exit the console mode.
- Run the command:
bash cli.sh "start admin" ; tail -f logs/admin-server.log
to start EzyPlatform in the background and monitor any error logs thrown. However, usually there won't be any errors at this step.
- If you want to start the website, access the following URL: http://localhost:9090/dashboard/web and click the
start
button. However, at this point, only the default theme will be started, so you will need to download a different theme according to your preference.
- If you want to start the socket server, access the following URL: http://localhost:9090/dashboard/socket and click the
start
button.
For Windows
- Open the command prompt (cmd) and navigate to the downloaded EzyPlatform folder using the
cd
command.
- Run the command:
.\cli.bat "console admin"
. If you see EZYHTTP READY
displayed, it means you have successfully installed it. If an exception occurs, it means you have misconfigured the datasource
.
- Access the following URL: http://localhost:9090/setup-admin.
- Fill in the necessary information to create a super admin account.
- After successfully entering the information, click the
Submit
button to complete the EzyPlatform installation.
Stop EzyPlatform
- For Linux: Run the command:
bash cli.sh stop
.
- For Windows: Close all cmd windows.