Hello,
First of all, you have to verify your DB is well configured :
- On the mysql server, did you copy file my-huge.cnf (typically located in /usr/share/mysql/my-huge.cnf) to /etc/my.cnf ?
- In this file my.cnf, did you make the following changes :
- Add the max_connections parameter under [mysqld]. If this parameter already exists, you can change the value.
[mysqld]
max_connections=200
[mysqld]
default-character-set=latin1
[mysqld]
default-storage-engine = INNODB
[mysqld]
lower_case_table_names=1
[mysqld]
#log-bin=mysql-bin
[mysqld]
innodb_buffer_pool_size=512M
innodb_additional_mem_pool_size=16M
[mysqld]
max_allowed_packet = 200M
After all that conf, you'll have to restart mysql
Then if this is still not working verify you don't use any special character in your admin db password (such as @ for example), IMC doesn't support it.
Hopes this help.
Fabien