Is it possible to put a maintenance page in Pandora FMS?
The answer is Yes.
This mode is only activated if the token ‘maintenance_mode’ in the table ‘tconfig’ is set to 1 and it will only be shown for those users that are not administrators (administrators will be able to access and make changes).
To activate it we execute the following SQL query.
UPDATE tconfig SET value =1 WHERE token ='maintenance_mode';
To disable it we execute the following SQL query.
UPDATE tconfig SET value =0 WHERE token ='maintenance_mode';
That would be it!