Plesk Utility

The plesk command line utility is used to wrap other Plesk command line utilities. Additionally, it provides administrators and developers convenient way to access Plesk database, configuration files, and log files and allows performing other important tasks such as running daily maintenance script and the Plesk installer.

Usage
plesk [command]
Example

The following command creates a subscription for the administrator's customer with the username JDoe based on the hosting plan Default Domain, sets up a site for the domain example.com, assigns IP address 192.168.1.100 to the subscription, and sets the username JDoe and password userpass_123 for access to the webspace:

plesk bin subscription --create example.com -owner admin -service-plan "Default Domain" -ip 192.168.1.100 -login JDoe -passwd "userpass_123"

Commands
Command Parameter Description Example

bin

UTILITY

Runs the specified Plesk command line utility.

This is applicable to public CLI utilities located at the “C:\Program Files (x86)\Parallels\Plesk\bin” directory.

To create a subscription for the administrator's customer with the username JDoe based on the hosting plan Default Domain, set up a site for the domain example.com, assign IP address 192.168.1.100 to the subscription, and set the username JDoe and password userpass_123 for access to the webspace:

plesk bin subscription --create example.com -owner admin -service-plan "Default Domain" -ip 192.168.1.100 -login JDoe -passwd "userpass_123"

conf

CONFNAME

Open the specified Plesk configuration file in the editor. The available configuration files are: panel.ini (Plesk internal settings), php.ini (PHP interpreter settings, for Plesk with web interface only).

To open panel.ini file in the editor:

plesk conf panel.ini

daily

[TASK_NAME]

Run daily maintenance script.

The following scripts are available:

  • CheckForUpdates
  • InstallUpdates
  • UpdateKeys
  • PleskUsage
  • Sitebuilder
  • MailUsage
  • ExecuteStatistics
  • ProcessAutoreports
  • OptimizeStatistics
  • AnalyseDomainStatistics
  • AnalyseClientStatistics
  • ExecuteSpamtrain
  • RemoveSpamTempFiles
  • LoadCustomizations
  • UpdateApsCache
  • UpdateApsApplications
  • Filesharing
  • UpgradePanel
  • UpdateModSecurityRuleSet
  • AutoresponderEndDate
  • UpdatePhpCurlCertificates
  • StopFailedRequestsTracing
  • BackupRestoreStats
  • UpgradeExtensions
  • ComposerSelfUpdate

To run daily check for updates:

plesk daily CheckForUpdates

db

[COMMAND | SQL]

Execute database specific command.

Open MySQL console if no particular command was specified.

Run an SQL query if it is provided instead of a command

Additional commands:

  • tables - Show the list of existing database tables
  • dump [databases] - Show a dump of the specified Plesk database(s) (the psa database dump is shown by default)
  • desc <table> - Show a structure of the specified database table
  • show <table> - Show content of the specified database table

 

To display the list of existing database tables:

 

plesk db tables

installer

[SHORTCUT | OPTIONS]

Run Plesk installer with given options or a predefined set of options via a shortcut.

Available shortcuts:

  • install-all-updates - Install all available updates within current Plesk version, including updates for system components such as MySQL or PHP.
  • install-panel-updates - Install only Plesk updates. Reinstall patch if the latest update is already installed. System components such asMySQL and PHP will not be updated unless it is required for proper Plesk functioning.

To install all available updates within current Plesk version:

plesk installer install-all-updates

log

LOGNAME

Display the specified Plesk log file.

Available log files:

  • php_error.log - Plesk errors
  • --all - Monitor all available log files

 

Display Plesk error log:

plesk log php_error.log

php

FILENAME.php

Run specified PHP script using the Plesk PHP interpreter ("C:\Program Files (x86)\Parallels\Plesk\admin\bin\php.exe").

 

To run the script.php script from the C:\tmp directory:

plesk php "C:\tmp\script.php"

repair

ASPECT [OPTION]

Run Plesk check and repair tool.

Provide aspect 'all' to check and repair all aspects in the interactive mode.

Available aspects: all, mail, web, dns, ftp, db, mysql, mssql.

Available options:

-y - Try to repair all found issues.

-n - Do not repair anything, check only.

-v - Display more detailed output (verbose mode).

For details, refer to Plesk Repair Tool.

To reconfigure the mail settings for all mailboxes belonging to the example.com domain, as well as domain-wide mail settings:

plesk repair mail example.com

sbin

UTILITY

Run the specified Plesk internal utility.

This applies to utilities located at "C:\Program Files (x86)\Parallels\Plesk\admin\bin" directory.

To change type of the 10.58.70.125 IP address which belongs to the JDoe's IP pool to shared:

plesk sbin ip_pool --update 10.58.70.125 -type shared -owner JDoe

 

 

version

 

Show product version information. Version, build date, revision and architecture will be shown.

To view Plesk version information:

plesk version

help

[COMMAND]

Show help and exit. If a command name is specified, the help for a particular command is displayed. If no parameters are used, the plesk utility help is displayed.

To view the help for the repair command:

 

plesk help repair