The post How to Start, Stop or Restart System Services on a Plesk Server? first appeared on Web Hosting Stuff.
]]>This is the most common and easiest way to manage services on a Plesk server.
Log in to your Plesk control panel. You typically access it by going to your_server_ip:8443 (for HTTPS) or your_server_ip:8880 (for HTTP) in your web browser and entering your administrator credentials.
Navigate to Tools & Settings. You’ll usually find this option in the left-hand sidebar of the Plesk interface.
Click on “Services Management” under the “Server Management” section.
Locate the desired service. You will see a list of various services running on your server, such as:
Apache (Web server)
Nginx (Web server/proxy)
MySQL/MariaDB (Database server)
Mail services (e.g., Postfix, Dovecot)
DNS services (e.g., BIND, PowerDNS)
FTP services (e.g., ProFTPD, Pure-FTPd)
And many others.
Use the action icons:
Start: Look for a green “Play” or “arrow” icon.
Stop: Look for a red “Stop” or “box” icon.
Restart: Look for a yellow “Restart” or “replay” icon.
Click the appropriate icon next to the service you want to manage.
Note: If an icon is greyed out, it means that function is currently inactive for that service, or the service might not be installed or configured correctly.
For some specific Plesk services or if you prefer command-line management, you can use SSH.
service sw-engine restart && service sw-cp-server restart
Note: The service psa stopall or service psa restart
Commands were used in older Plesk versions but are now deprecated and may not reliably restart all Plesk-related services.
3. To manage other system services (e.g., Apache, Nginx, MySQL): On Linux systems (CentOS, Ubuntu, Debian, etc.), you typically use systemctl
(for Systemd-based systems, which most modern Linux distributions use) or service (for older SysVinit systems).
Using systemctl (Recommended for modern Linux):
systemctl start <service_name>
Example: systemctl start httpd (for Apache on CentOS/RHEL) or systemctl start apache2 (for Apache on
Ubuntu/Debian) Example:systemctl start mariadb
(for MariaDB) Example: systemctl start nginx (for Nginx)
Stop a service:
systemctl stop httpdRestart a service:
systemctl restart httpdCheck service status:
systemctl status httpdUsing service (for older Linux or specific scripts):
Start a service:
service <service_name> start
Stop a service:
service <service_name> stop
Restart a service:
service <service_name> restart
On Windows Servers (via RDP):
Connect via RDP.
Plesk Services Monitor: Start Plesk Services Monitor from the tray > Select “Plesk Management Service” under the “Plesk Run-Time” section > Click Restart.
Command Prompt (as Administrator):
net stop plesksrv
net start plesksrv
Services MMC: Go to Windows Start > All Programs > Windows Administrative Tools > Services. Right-click on “Plesk Management Service” and click “Restart.”
By following these steps, you can effectively start, stop, and restart system services on your Plesk server.
The post How to Start, Stop or Restart System Services on a Plesk Server? first appeared on Web Hosting Stuff.
]]>The post How to Blacklist a Domain in Plesk? first appeared on Web Hosting Stuff.
]]>This method ensures that no email from the specified domain will reach any mailbox hosted on your Plesk server.
This method utilizes Plesk’s Spam Filter settings. You can configure it to mark emails from specific domains as spam.
Option A: Server-wide via Spam Filter Settings
There are a few ways to blacklist a domain in Plesk, depending on whether you want to block it at the server level for all mailboxes or for specific mailboxes. Here’s a breakdown of the methods:
Option B: Per Mailbox via Email Addresses
This method uses the Plesk Email Security settings.
If you have SSH access to your Plesk server, you can use the command line:
plesk bin mailserver –add-to-black-list example.com
Replace example.com with the actual domain you want to blacklist. You can insert various domains by using a comma.
plesk bin mailserver –info black-list
Choose the method that best fits your requirements and your level of access to the Plesk server. The most common and generally recommended method for server-wide blocking is through Tools & Settings > Mail Server Settings > Black List. For more granular control over specific mailboxes, the Spam Filter settings for that mailbox are the way to go.
The post How to Blacklist a Domain in Plesk? first appeared on Web Hosting Stuff.
]]>