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
mpm
module usingapachectl
utility:apachectl -M | grep mpm
If the option
prefork
is enabled instead ofworker
, the first step is to disablephp7.0
:a2dismod php7.0
Next, disable the
prefork
option and enable theworker
option:a2dismod mpm_prefork a2enmod mpm_worker
Restart
apache2
:systemctl restart apache2
Check that
worker
is enabled:apachectl -M | grep mpm