Bug #59393 | have_innodb=YES when mysqld started with --skip-innodb | ||
---|---|---|---|
Submitted: | 10 Jan 2011 12:47 | Modified: | 25 Apr 2011 13:15 |
Reporter: | Craig Thomson | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server: Options | Severity: | S2 (Serious) |
Version: | 5.5.8, 5.5.9-bzr | OS: | Any (SunOS 5.10 Generic_142910-17 i86pc i386 i86pc) |
Assigned to: | Kristofer Pettersson | CPU Architecture: | Any |
Tags: | --skip-innodb, DBD::MySQL, have_innodb, regression |
[10 Jan 2011 12:47]
Craig Thomson
[10 Jan 2011 12:59]
Valeriy Kravchuk
Please, send my.cnf and error log from your server.
[10 Jan 2011 13:11]
Craig Thomson
/etc/my.cnf
Attachment: my.cnf (text/plain), 4.63 KiB.
[10 Jan 2011 13:11]
Craig Thomson
server.err
Attachment: server.err (text/plain), 13.72 KiB.
[10 Jan 2011 13:15]
Craig Thomson
Requested files attached. The server.err log shows that innodb was disabling as requested (when mysqld was started with --skip-innodb). It also shows that I started mysqld once with innodb enabled so I could successfully install DBD::mysql.
[10 Jan 2011 14:32]
Valeriy Kravchuk
Now it is all clear. I've missed explicit setting of MyISAM as default storage engine. Verified with current mysql-5.5 tree on Mac OS X: macbook-pro:5.5 openxs$ bin/mysqld_safe --default-storage-engine=MyISAM --skip-innodb & [1] 38143 macbook-pro:5.5 openxs$ 110110 16:28:50 mysqld_safe Logging to '/Users/openxs/dbs/5.5/data/macbook-pro.err'. chown: /Users/openxs/dbs/5.5/data/macbook-pro.err: Operation not permitted 110110 16:28:50 mysqld_safe Starting mysqld daemon with databases from /Users/openxs/dbs/5.5/data macbook-pro:5.5 openxs$ bin/mysql -uroot testReading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.5.9-debug Source distribution Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> show engines; +--------------------+---------+----------------------------------------------------------------+--------------+------+------------+ | Engine | Support | Comment | Transactions | XA | Savepoints | +--------------------+---------+----------------------------------------------------------------+--------------+------+------------+ | FEDERATED | NO | Federated MySQL storage engine | NULL | NULL | NULL | | MRG_MYISAM | YES | Collection of identical MyISAM tables | NO | NO | NO | | MyISAM | DEFAULT | MyISAM storage engine | NO | NO | NO | | BLACKHOLE | YES | /dev/null storage engine (anything you write to it disappears) | NO | NO | NO | | CSV | YES | CSV storage engine | NO | NO | NO | | MEMORY | YES | Hash based, stored in memory, useful for temporary tables | NO | NO | NO | | ARCHIVE | YES | Archive storage engine | NO | NO | NO | | InnoDB | NO | Supports transactions, row-level locking, and foreign keys | NULL | NULL | NULL | | PERFORMANCE_SCHEMA | YES | Performance Schema | NO | NO | NO | +--------------------+---------+----------------------------------------------------------------+--------------+------+------------+ 9 rows in set (0.00 sec) mysql> show variables like 'have_i%'; +---------------+-------+ | Variable_name | Value | +---------------+-------+ | have_innodb | YES | +---------------+-------+ 1 row in set (0.01 sec) This does not happen in 5.1.x, so we have a regression bug here.
[12 Jan 2011 10:03]
Georgi Kodinov
This is just a matter of setting the default. Easily fixable imho.
[25 Apr 2011 10:51]
Valeriy Kravchuk
Bug #60970 was marked as a duplicate of this one.
[25 Apr 2011 13:15]
Paul DuBois
Noted in 5.5.12, 5.6.3 changelogs. When the server was started with the --skip-innodb option, it initialized the have_innodb system variable to YES rather than DISABLED. CHANGESET - http://lists.mysql.com/commits/133753
[29 Sep 2011 18:50]
Paul DuBois
Correction: No 5.6.3 changelog entry. have_innodb has been removed from 5.6.x.