How to speed up Dashboard?¶
If your stand on Debian 9 is experiencing delays in the execution of actions in the Dashboard, perhaps the reason is that the prefork option of the mdm module is used, while for faster graphics performance, the worker option is preferable. To enable the worker work, do the following:
Check the state of the
mpmmodule usingapachectlutility:apachectl -M | grep mpm
If the option
preforkis enabled instead ofworker, the first step is to disablephp7.0:a2dismod php7.0
Next, disable the
preforkoption and enable theworkeroption:a2dismod mpm_prefork a2enmod mpm_worker
Restart
apache2:systemctl restart apache2
Check that
workeris enabled:apachectl -M | grep mpm