• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Question change log rotation settings in Plesk for all domains at once

tanasis

Regular Pleskian
Server operating system version
AlmaLinux 8.6 (Sky Tiger)
Plesk version and microupdate number
18.0.46 Update #1
Hello all,
according to https://support.plesk.com/hc/en-us/articles/214027349- with the command
plesk bin domain -l| while read dom_name; do plesk bin domain -u $dom_name -log-bytime weekly; done
i can change log rotation settings in Plesk for all domains at once.
How can i set Maximum number of log files to 1 via the above command ?
 

Attachments

  • image2120.jpg
    image2120.jpg
    58 KB · Views: 5
Use the -log-max-num-files command. Like:

Bash:
# plesk bin domain -l| while read dom_name; do plesk bin domain -u $dom_name -log-max-num-files 1; done

(I haven't tested this, use at your own discretion).
 
Last edited:
Use the -log-max-num-files command. Like:

Bash:
# plesk bin domain -l| while read dom_name; do plesk bin domain -u $dom_name -log-max-num 1; done

(I haven't tested this, use at your own discretion).
Unrecognized option: 'log-max-num'
 
Back
Top