Getting started
- Go to https://my.cubepath.com/deploy
- Select a VPS plan (recommended: gp.micro or higher)
- Under Operating System, choose "Easypanel"
- Click Deploy
Your Easypanel instance will be ready in approximately 5-7 minutes. Access http://YOUR-IP:3000 to create your administrator account.
Deploy via API
Using CubeCLI
cubecli vps deploy \
--plan gp.micro \
--os easypanel \
--hostname easypanel-server
Direct API
curl -X POST https://api.cubepath.com/vps/deploy \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"plan": "gp.micro",
"os": "easypanel",
"hostname": "easypanel-server"
}'
Technical information
Access credentials:
- URL: http://YOUR-IP:3000
- User: Created during first access
- Password: Configured during first access
Installed software:
- Easypanel (Latest)
- Docker Engine
Ports:
- 80 (HTTP - Applications)
- 443 (HTTPS - Applications)
- 3000 (TCP - Easypanel Panel)
Data location:
- Configuration: Managed by Easypanel
- Applications: /etc/easypanel/projects/
Installation time: 5-7 minutes
Useful commands
# Check Easypanel status
systemctl status easypanel
# Restart Easypanel
systemctl restart easypanel
# View Easypanel logs
journalctl -u easypanel -f
# View deployed containers
docker ps
# View application logs
docker logs <container-name>