mysql innodb не видит

Здравствуйте,
пытаюсь включить движок InnoBD, но к сожалению не получается
Это и до меня уже было закомментирован

#skip-innodb

но еще хуже что:

mysql> show engines;
+------------+---------+----------------------------------------------------------------+--------------+----+------------+
| Engine     | Support | Comment                                                        | Transactions | XA | Savepoints |
+------------+---------+----------------------------------------------------------------+--------------+----+------------+
| ARCHIVE    | YES     | Archive storage engine                                         | NO           | NO | NO         |
| CSV        | YES     | CSV storage engine                                             | NO           | NO | NO         |
| MRG_MYISAM | YES     | Collection of identical MyISAM tables                          | NO           | NO | NO         |
| BLACKHOLE  | YES     | /dev/null storage engine (anything you write to it disappears) | NO           | NO | NO         |
| MyISAM     | DEFAULT | Default engine as of MySQL 3.23 with great performance         | NO           | NO | NO         |
| MEMORY     | YES     | Hash based, stored in memory, useful for temporary tables      | NO           | NO | NO         |
+------------+---------+----------------------------------------------------------------+--------------+----+------------+
6 rows in set

mysql> show plugins
;
+------------+--------+----------------+---------+---------+
| Name       | Status | Type           | Library | License |
+------------+--------+----------------+---------+---------+
| binlog     | ACTIVE | STORAGE ENGINE | NULL    | GPL     |
| ARCHIVE    | ACTIVE | STORAGE ENGINE | NULL    | GPL     |
| BLACKHOLE  | ACTIVE | STORAGE ENGINE | NULL    | GPL     |
| CSV        | ACTIVE | STORAGE ENGINE | NULL    | GPL     |
| MEMORY     | ACTIVE | STORAGE ENGINE | NULL    | GPL     |
| MyISAM     | ACTIVE | STORAGE ENGINE | NULL    | GPL     |
| MRG_MYISAM | ACTIVE | STORAGE ENGINE | NULL    | GPL     |
+------------+--------+----------------+---------+---------+
7 rows in set

Перестановка не дала результатов

[ebuild   R    ] dev-db/mysql-5.1.56  USE="community perl ssl -big-tables -cluster -debug -embedded -extraengine -latin1 -max-idx-128 -minimal -pbxt -profiling (-selinux) -static -test -xtradb" 0 kB      

Но сам движок собирает видимо

q
/usr/bin/innochecksum
/usr/lib64/mysql/plugin/ha_innodb_plugin.a
/usr/lib64/mysql/plugin/ha_innodb_plugin.la
/usr/lib64/mysql/plugin/ha_innodb_plugin.so
/usr/lib64/mysql/plugin/ha_innodb_plugin.so.0
/usr/lib64/mysql/plugin/ha_innodb_plugin.so.0.0.0
/usr/share/doc/mysql-5.1.56/support-files/my-innodb-heavy-4G.cnf.bz2
/usr/share/man/man1/innochecksum.1.bz2
/usr/share/mysql/sql-bench/innotest1
/usr/share/mysql/sql-bench/innotest1a
/usr/share/mysql/sql-bench/innotest1b
/usr/share/mysql/sql-bench/innotest2
/usr/share/mysql/sql-bench/innotest2a
/usr/share/mysql/sql-bench/innotest2b

Кто-нибудь может сказать в чет тут прикол зарыт ?

Начиная с версии mysql-5.1

Начиная с версии mysql-5.1 InnoDB выделился в плагин, который у вас живет в каталоге /usr/lib64/mysql/plugin.
Его нужно подключать. Для этого в файле /etc/mysql/my.cnf в секцию [mysqld] добавить:

ignore-builtin-innodb
plugin-load=innodb=ha_innodb_plugin.so
  ;innodb_trx=ha_innodb_plugin.so
  ;innodb_locks=ha_innodb_plugin.so
  ;innodb_lock_waits=ha_innodb_plugin.so
  ;innodb_cmp=ha_innodb_plugin.so
  ;innodb_cmp_reset=ha_innodb_plugin.so
  ;innodb_cmpmem=ha_innodb_plugin.so
  ;innodb_cmpmem_reset=ha_innodb_plugin.so

О отлично дело теперь

О отлично дело теперь сдвинулось теперь mysql вообще не стартует, но хотя бы InnoDB дает о себе знать

InnoDB: Page lsn 0 0, low 4 bytes of lsn at page end 0
InnoDB: Page number (if stored to page already) 0,
InnoDB: space id (if created with >= MySQL-4.1.1 and stored already) 0
InnoDB: Page may be a freshly allocated page
120117 15:05:12InnoDB: Error: trying to access a stray pointer 0x8000025480163ff8
InnoDB: buf pool start is at 0x25480154000, end at 0x254a0154000
InnoDB: Probable reason is database corruption or memory
InnoDB: corruption. If this happens in an InnoDB database recovery, see
InnoDB: http://dev.mysql.com/doc/refman/5.1/en/forcing-innodb-recovery.html
InnoDB: how to force recovery.
120117 15:05:12  InnoDB: Assertion failure in thread 2563749697312 in file ../../storage/innobase/include/buf0buf.ic line 264
InnoDB: We intentionally generate a memory trap.
InnoDB: Submit a detailed bug report to http://bugs.mysql.com.
InnoDB: If you get repeated assertion failures or crashes, even
InnoDB: immediately after the mysqld startup, there may be
InnoDB: corruption in the InnoDB tablespace. Please refer to
InnoDB: http://dev.mysql.com/doc/refman/5.1/en/forcing-innodb-recovery.html
InnoDB: about forcing recovery.
120117 15:05:12 - mysqld got signal 6 ;
This could be because you hit a bug. It is also possible that this binary
or one of the libraries it was linked against is corrupt, improperly built,
or misconfigured. This error can also be caused by malfunctioning hardware.
We will try our best to scrape up some info that will hopefully help diagnose
the problem, but since we have already crashed, something is definitely wrong
and this may fail.

Попробуйте оставить

Ну он говорит, что возможно у вас битая база или память.
Или проблемы с плагином хранилища. Попробуйте оставить только:

ignore-builtin-innodb
plugin-load=innodb=ha_innodb_plugin.so

Попробуйте убрать ib* файлы,

Попробуйте убрать ib* файлы, лог и дата, вынесите их из папки /var/lib/mysql куда-нибудь и рестартаните mysql

Настройки просмотра комментариев

Выберите нужный метод показа комментариев и нажмите "Сохранить установки".