Downloading Backup Files from Plesk Server
To download a backup file from a backup repository within the control panel
Access the repository you need.
To access your own repository of backup files, go to Home > Backup Manager (in the Server group).
To access a repository of a reseller or client, go to Resellers > reseller’s name > Backup Manager (in the Files group) or Clients > client’s name > Backup Manager (in the Files group).
To access a repository related to a specific Web site, go to Domains > domain name > Backup Manager (in the Files group).
Click the icon corresponding to the backup file you wish to download.
Select the location where you wish to save the backup file and click Save.
The backup file will be downloaded from the backup repository.
Tags: Add new tag, backup, Downloading, Files, plesk, server
Changing Tomcat Java Connector Ports
The default port numbers for Coyote and Warp connectors in Parallels Plesk Panel are 9080 and 9008.
If you want Tomcat Java to work on other ports (e.g. 8090 and 8009), you should connect to the Parallels Plesk Panel database and add two parameters to the database as in the following example:
insert into misc (param,val) values (’coyote_connector_port’, ‘8090′);
insert into misc (param,val) values (’warp_connector_port’, ‘8009′);
Note: It is recommended that you change the Tomcat Java ports right after Parallels Plesk Panel is installed on server, or prior to enabling the Tomcat Java service for your domains.
Tags: Changing, Connector, Java, Panel, plesk, ports, Tomcat
Including Directives into Web Server Configuration File - Plesk
Note: you can change the location of virtual host directories using the transvhosts.pl utility, which is located either in /usr/local/psa/bin/ or /opt/psa/bin/ directory, depending on your operating system.
You can include domain-specific Apache configuration directives into web server configuration file. In Parallels Plesk Panel, each domain has virtual hosts configuration stored in a separate file httpd.include.
On all Linux systems, this file is located in the directory /var/www/vhosts/domain-name/conf/.
On FreeBSD systems, this file is located in the directory /usr/local/psa/home/vhosts/domain-name/conf/.
To use custom directives or redefine those inserted by Parallels Plesk Panel, you need to create the files vhost.conf or vhost_ssl.conf with necessary directives in the directory /path_to_vhosts/domain-name/conf/ for a domain, and /path_to_vhosts/domain-name/subdomains/subdomain-name/conf/ for a subdomain.
Resource: http://parallels.com/Plesk/
Tags: configuration, Directives, file, Including, plesk, web server
Restoring Mail Configuration in Plesk
Sometimes, Parallels Plesk Panel mail server configuration becomes corrupt and it is necessary to restore it. The restoration is carried out by internal mchk utility, intended for use by Parallels Plesk Panel.
However, as administrator, you can use it for restoring the Qmail and Courier-imap configuration when needed.
By default mchk is running in the background mode.
To execute it in the foreground, use the -v option. For example:
/usr/local/psa/admin/sbin/mchk -v
Reference : http://parallels.com/Plesk/
Tags: configuration, mail, plesk, Restoring
Blocking Access to Updater Functions from the Control Panel Linux Hosting
If you delegate server administration tasks to other users, but do not want them to use the Updates function or change the updating settings from the control panel, you can remove the screens related to Updater settings and the Updates icon from the control panel.
To do this, use the following MySQL command:
echo ‘REPLACE misc SET param=”disable_updater”, val=”true”‘ | mysql psa -uadmin -p`cat /etc/psa/.psa.shadow`
To restore the Updates icon and screens in the control panel, use the following MySQL command:
echo ‘REPLACE misc SET param=”disable_updater”, val=”false”‘ | mysql psa -uadmin -p`cat /etc/psa/.psa.shadow`
Reference : parallels.com/Plesk/
Tags: Access, Blocking, Control Panel, Functions, Linux Hosting, Updater