TroubleShootingVOMS

From Begrid Wiki
Revision as of 09:13, 9 June 2021 by Maintenance script (talk | contribs) (Created page with " == Troubleshooting and FAQ's for VOMS == ==== VOMS at 100% CPU ==== The problem seems to be due to a MySQL performances problem. The simple solution is to check the databa...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Troubleshooting and FAQ's for VOMS

VOMS at 100% CPU

The problem seems to be due to a MySQL performances problem. The simple solution is to check the database and optimize it with the standard sqlcheck command:

mysqlcheck -u root -p -a -o -A

The meaning of the flags are:

-u for the login to use on the DBMS (here root);

-p for password authentication;

-o for optimization enabled (ask mysql to optimize DB, could take a long time if optimizations are required ;-));

-a for analyse (ask mysql to analyse DB);

-A for all databases (ask mysql to check and optimize all databases on this server).


Template:TracNotice