Unkown table Engine 'InnoDB' on a RedHat server with MySQL v5!


 
Thread Tools Search this Thread
Top Forums Web Development Unkown table Engine 'InnoDB' on a RedHat server with MySQL v5!
# 1  
Old 07-20-2009
Unkown table Engine 'InnoDB' on a RedHat server with MySQL v5!

hi all,

After installing MySQL Source Code on my RedHat machine and compiling it, i no longer have access to some of my DBs having this error message.

Unkown table Engine 'InnoDB'

Before this step, i used to have another MySQL instance that used to work properly with all the DBs i do have, but after installing MySQL 5.1.36 source code and compiling it, if i try the access to some of the DBs ( using this instance of MySQL v5.xx ) i have that Error Message "Unkown table Engine 'InnoDB'" i did not have while using the other instance before.

Also, once on the "mysql" prompt, if you run "show engines" command you don't have any "InnoDB" in the result screen.

Thanx for any kind of help !
# 2  
Old 07-20-2009
Check your my.cnf file, you may need to comment the skip-innodb option.
# 3  
Old 07-20-2009
There is no "skip-innodb..." line, into my "my.cnf" file !!! Smilie

---------- Post updated at 07:40 AM ---------- Previous update was at 07:39 AM ----------

my.cnf file contains ONLY this, is it normal !!!! ??? :

# Use default setting for mysqld processes
!include default_mysqld.cnf

[mysqld.1]

# Run the master.sh script before starting this process
#!run-master-sh

log-bin= master-bin


[mysqlbinlog]
disable-force-if-open

# mysql_fix_privilege_tables.sh does not read from [client] so it
# need its own section
[mysql_fix_privilege_tables]
socket= @client.socket
port= @client.port
user= @client.user
password= @client.password

[ENV]
MASTER_MYPORT= @mysqld.1.port
MASTER_MYSOCK= @mysqld.1.socket
# 4  
Old 07-20-2009
Check this page.
# 5  
Old 07-20-2009
thank you for the link you sent to me, but i do think that is not the same problem since the error message is different, further more the "InnoDB" is starngly not mentionned at all in the "my.cnf" file, is it correct ?! we have another machine and the same file "my.cnf" is totally different from the one i send you before !
# 6  
Old 07-20-2009
Quote:
Originally Posted by mehdi1973
thank you for the link you sent to me, but i do think that is not the same problem since the error message is different, further more the "InnoDB" is starngly not mentionned at all in the "my.cnf" file, is it correct ?! we have another machine and the same file "my.cnf" is totally different from the one i send you before !
Well,
what's the output from:

Code:
show innodb status\G

and:

Code:
show global variables like 'have_innodb';

I don't know if the configuration file is correct, you may use the defaults for the missing options ...
# 7  
Old 07-20-2009
thank you so much radoulov,

i fixed it just by cancelling the DB, and than making a dump that i restored on the RedHat machine.

thank you againSmilie
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Web Development

Mysql table is marked as crashed and should be repaired

140312 13:43:54 /usr/libexec/mysqld: Table './***/phpbb_posts' is marked as crashed and should be repaired Its mysqld.log in var/log alot of messages, but before around hour i tried to "repaid table" from within phpmyadmin, but appears it has no effect.. why? How to fix? (1 Reply)
Discussion started by: postcd
1 Replies

2. Red Hat

configuring MYsql db on redhat cluster

Hello, can someone please suggest me in configuring the mysql db on redhat cluster, I have few questions. 1. where do I have to configure heart beat links, and is there any file in the redhat cluster that we update it to use these ipaddress and these interface on the node. 2. I am configuring... (0 Replies)
Discussion started by: bobby320
0 Replies

3. UNIX and Linux Applications

mysql table disappear

I have set a mysql file to excute everyday morning to generate a html file displayng 2 tables from the database. Sometime they cannot be shown, and it shows the tables are not existed. I have not drop any table, and those 2 tables are not used by any other excution. Anybody know what is happening?... (0 Replies)
Discussion started by: c203040
0 Replies

4. Programming

API C MYSQL vs lock table ???

(sorry for my english) Hi, i have an app that uses MYSQL API C.. i trying do a timeout until the table is locked by an other thread , in the docs of Mysql i can see that MYSQL_OPT_READ_TIMEOUT is not implemented for linux ¿?¿?.. any body knows a way to do a timeout until the table is locked by... (0 Replies)
Discussion started by: JEscola
0 Replies

5. Shell Programming and Scripting

Help Inserting data in mysql table

Cant understand the error #!/bin/bash temp="" A="" D=$(date +"%Y-%m-%d") H=$(date +"%R") temp=$(wget -q -O - website | grep -o "Temperature:]**" | grep \-E -o "+") mysql -D "weather_wise" -e "INSERT INTO weather (Date, Hour, Degrees) VALUES ($D,$H, $temp)"; my data types for... (11 Replies)
Discussion started by: vadharah
11 Replies

6. Shell Programming and Scripting

MySql: create table error

Hi, iam learning MySql. Iam trieing to create a table in the database "guestbook" at the command line in mysql heres what i type but i get a error mysql>create table guestbook ->( -> name varchar(40) null. -> url varchar(40) null. -> comments ... (3 Replies)
Discussion started by: perleo
3 Replies

7. UNIX for Dummies Questions & Answers

mysql installation error using redhat 7.2

i am a newbie to unix admin stuff so bare with me. -- i get this message when executing mysql_install_db during the installation of mysql. what is the cause of this and how can it be fixed. btw - i have tried installing as root and other accounts also. scripts/mysql_install_db:... (6 Replies)
Discussion started by: theDirtiest
6 Replies

8. UNIX for Dummies Questions & Answers

mysql in redhat

Does anyone know how to get mysql up and running with the installed version that comes with redhat linux? I've spent hours with no progress. Thank you (13 Replies)
Discussion started by: gparsons70
13 Replies
Login or Register to Ask a Question