OK a wild shot in the dark:
If the database is installed in /usr/local/mysql, then try looking in /etc/local for my.cnf
Here is how you can tell if you have a my.cnf
Run this query
SELECT * FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
WHERE VARIABLE_NAME IN ('wait_timeout',
'innodb_buffer_pool_size','innodb_log_file_size');
or
SHOW VARIABLES LIKE = 'wait_timeout';
SHOW VARIABLES LIKE = 'innodb_buffer_pool_size';
SHOW VARIABLES LIKE = 'innodb_log_file_size';
If you should get
- wait_timeout 28800
- innodb_log_file_size 5242880
- innodb_buffer_pool_size 8M (MySQL 5.0) or 128M (MySQL 5.1+)
you are running with defaults and there is a possibility that there may not be a my.cnf present.