Cleanup Help Desk Database
Follow the steps given below to cleanup the help desk database:
- Open a command window on the central server and navigate to the below path
/program files/adventnet/me/central/mysql/bin - Execute the command mysql.exe -u root -P 23306 supportcenter
- Execute the below queries one by one
Mysql> delete from aaaaccsession;
Mysql> delete from auditrecord;
Mysql> delete from recentitems;
Mysql> delete from errorlog; - Restart the central service once
- If you want to delete the request history related info, execute the following on each of your probes:
- Connect to the probe database by following the procedures in the link below
http://help.mspcenterplus.com/Connecting-to-MySQL-DB.html - Execute the below query
delete from availabilityelementid where elementid not in (select moid from managedobject); - Restart the probe service once
Help desk database has been successfully cleaned.