X
X

Select Your Currency

Türk Lirası $ US Dollar
X
X

Select Your Currency

Türk Lirası $ US Dollar

Step-by-Step Guide to Plesk Installation

HomepageArticlesTechnical GuidesStep-by-Step Guide to Plesk Install...

What is Plesk?

Plesk is a powerful control panel used for web hosting management. It provides ease for server administrators in areas such as hosting, virtual servers, and cloud computing.

1. Check Server Status

Firstly, ensure that the server is functioning properly by using the following commands:

  • top: Checks CPU and memory usage on the server.
  • htop: Monitors system resources with a more visual interface.
  • dmesg: Checks system logs to display potential errors.

2. Steps Required for Plesk Installation

Before installing Plesk, you should perform necessary updates:

yum update -y

Then download the Plesk installation file:

wget https://autoinstall.plesk.com/plesk-installer

After downloading, run the file:

chmod +x plesk-installer
./plesk-installer

3. What to Do During Installation

Follow the installation wizard and follow these steps:

  • Select the installation type (Recommended or Custom).
  • Check requirements. If there are missing packages, ensure they are installed.
  • Create an admin account.

4. Restarting Plesk Services

After completing the Plesk installation, you may need to restart some services:

systemctl restart psa

Additionally, to restart the web server (Apache or Nginx):

systemctl restart httpd
systemctl restart nginx

5. Security Settings

It is important to take security measures after the Plesk installation:

  • Firewall: Open necessary ports.
  • SSL Certificate: Install an SSL certificate for your website.
  • DDoS Protection: Integrate necessary protection systems.

6. Final Checks

Once the installation is complete, log in to the Plesk panel to check all settings. Also, monitor server performance using the uptime command:

uptime

Conclusion

Plesk installation is an important step in hosting management. By following the steps above, you can have a smooth installation. If you encounter any issues, you can analyze the situation using the commands mentioned above and take the necessary actions.


Top