• 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

Switch all domains to use dedicated application pools

It was not tested but I think that it should work fine for Plesk 11.
 
Just a FYI, Step B "switch_all_subscriptions_to_dedicated_pool"...
This script has a syntax error on line 8 (states "and and").

change the code from this:
Code:
mysql -uadmin -p%p% -P8306 psa -Ne"select d.name,d.id from domains d, dom_param dp where dp.dom_id=d.id and and dp.param='iis_app_pool' and dp.val='false'" > "c:\dom_params.sql"

to this, to make it work:
Code:
mysql -uadmin -p%p% -P8306 psa -Ne"select d.name,d.id from domains d, dom_param dp where dp.dom_id=d.id and dp.param='iis_app_pool' and dp.val='false'" > "c:\dom_params.sql"

(Note: This does appear to work with Plesk 11)
 
Back
Top