• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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