• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

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

tanasis

Basic 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