• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • 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.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Issue can't apply config due to big number of associated websites

technique-web

New Pleskian
Hi,
I'm trying to enable ipv6 for a website who have 350 associated websites. Plesk (18.0.38) takes several minutes to load then says something like this : "the task took too much time, please check the result later"
Is there a timeout I can increment so Plesk can terminate the task ?
1632394429747.png
 
That's not an error message, just a notification that the task is still running.
(Assuming you want the task to actually finish and not have it terminated.)
 
If you really need it, you can try to increase the timeout like this:
  1. Open /etc/sw-cp-server/config file and adjust timeout limits for FastCGI to the following:
    Code:
    fastcgi_read_timeout 1200
    fastcgi_send_timeout 1200
  2. Open /usr/local/psa/admin/conf/php.ini file and adjust timeout limits for PHP:
    Code:
    max_execution_time = 1200
  3. Restart sw-engine and sw-cp-server services:
    Code:
    # service sw-engine restart
    # service sw-cp-server restart
If the issue still persists increase timeout limits even greater.
 
Hi,
I'm trying to enable ipv6 for a website who have 350 associated websites. Plesk (18.0.38) takes several minutes to load ...
When you enable or disable something that affects all websites, Plesk will replace all existing webserver configuration files domain by domain with the new version, then remove the symbolic links in the /etc/nginx and /etc/httpd (/etc/apache2) directories and recreate these, too. This is not done in bulk, but one at a time from a batch file. For that reason, such general reconfigurations can take a very long time - depending on your cpu power, hard disk speed and other load of the server. If the GUI responds that the task is not finished yet and results should be checked later, the process is still ongoing. That is no problem. Simply wait. For 350 domains it can easily take 20 minutes or longer to process the reconfigurations. If you want to check them, look for anything with a "mng" string in a process name in the Linux process list. Normally you'll see the reconfiguration processes right there still working.
 
Back
Top