This guide explains how to install Plesk on a Linux VPS and access the control panel. It is useful if you bought a Plesk license in My.GARMTECH or want a graphical panel to manage websites, mail, DNS and SSL.
Requirements
- A fresh or clean Linux VPS with root SSH access.
- A supported OS (common choices: Debian/Ubuntu). If you are unsure, pick a widely supported LTS version.
- Open network access to:
- 22 (SSH)
- 80 (HTTP)
- 443 (HTTPS)
- 8443 (Plesk panel)
Step 1 — Connect to your VPS via SSH
Use your VPS IP address and root credentials. Example:
ssh root@YOUR_VPS_IP
Step 2 — Update the system
It is best to update packages before installing:
apt update && apt -y upgrade
Step 3 — Run the Plesk one‑click installer
Run the official installer:
sh <(curl -s https://autoinstall.plesk.com/one-click-installer || wget -O - https://autoinstall.plesk.com/one-click-installer)
Wait until installation finishes. The installer will output the URL and credentials for the first login.
Step 4 — Open the Plesk panel
In a browser, open:
https://YOUR_VPS_IP:8443
On the first visit, you may see a browser warning (self‑signed certificate). After you complete setup, you can install a trusted certificate for the panel.
Step 5 — Complete initial setup
- Set the admin password.
- Enter the contact email.
- Choose the preferred interface settings.
Step 6 — Activate your Plesk license
If you purchased a license in My.GARMTECH, activate it in Plesk:
- Go to Tools & Settings → License Management.
- Install/enter the license key provided for your service.
Basic security tips (recommended)
- Use a strong root password and consider SSH keys.
- Enable a firewall and allow only required ports.
- Keep the OS and Plesk updated.
Troubleshooting
- Cannot open https://IP:8443: check your VPS firewall/security group and confirm port 8443 is allowed.
- Installer fails: ensure the VPS has enough disk space and that
curl or wget is installed.