I'm using OTRS 3.1.10 with MySQL as database (running on CentOS 5).
I have the problem that fetching email will slow down and stop after some mails completely.
So I checked the free space of my database and checked that htere is no free space.
Code: Select all
mysql> SELECT table_schema "otrs",
-> sum( data_length + index_length ) / 1024 / 1024 "Data Base Size in MB",
-> sum( data_free )/ 1024 / 1024 "Free Space in MB"
-> FROM information_schema.TABLES
-> GROUP BY table_schema;
+--------------------+----------------------+------------------+
| otrs | Data Base Size in MB | Free Space in MB |
+--------------------+----------------------+------------------+
| information_schema | 0.00390625 | 0.00000000 |
| otrs | 359.61758518 | 5.02113342 |
+--------------------+----------------------+------------------+
2 rows in set (0.01 sec)
mysql>
My question is now,
how could I get more free space for my otrs database?
Any help is welcome
Wolfgang