Re: innodb disabled

2008-05-08 Thread Krishna Chandra Prajapati
Hi Nobert,

I verified the syslog file and didn't found any error.

Krishna Chandra Prajapati

On Wed, May 7, 2008 at 8:20 AM, Norbert Tretkowski [EMAIL PROTECTED]
wrote:

 Am Mittwoch, den 07.05.2008, 01:30 schrieb Krishna Chandra Prajapati:
  Currently error log file is empty. What else can be the reason for
  disable innodb.

 You mentioned that you're using Debian. The MySQL packages in Debian
 using syslog, check /var/log/syslog for errors.

Norbert


 --
 MySQL General Mailing List
 For list archives: http://lists.mysql.com/mysql
 To unsubscribe:
 http://lists.mysql.com/[EMAIL PROTECTED]




-- 
Krishna Chandra Prajapati
MySQL DBA,
Ed Ventures e-Learning Pvt.Ltd.
1-8-303/48/15, Sindhi Colony
P.G.Road, Secunderabad.
Pin Code: 53
Office Number: 040-66489771
Mob: 9912924044
URL: ed-ventures-online.com
Email-id: [EMAIL PROTECTED]


Re: innodb disabled

2008-05-08 Thread Krishna Chandra Prajapati
Thanks a lot to all of you.

On Wed, May 7, 2008 at 8:51 PM, Srini [EMAIL PROTECTED] wrote:

 It could be the problem with permissions or sizes of iblog or ibdata files

 Can you try this back up the iblog and ibdata files and move it to some
 other location from /data/mysql
 and restart mysql to see if it shows innodb up on show engines, by doing
 this atleast u can isolate the
 problem is not with iblog or ibdata files

 -srini


 Krishna Chandra Prajapati wrote:

  Hi,
 
  What ever you have written i did the same thing, Yet innodb get
  disabled,
 
 
  On Tue, May 6, 2008 at 11:24 AM, Rolando Edwards 
  [EMAIL PROTECTED]
  wrote:
 
 
 
   If you just created the /data/mysql folder and moved the ib* files to
   that
   folder from /var/lib/mysql, you may have to contend with the internal
   data
   dictionary with ibdata1.
  
   You do the following:
  
   1) Put the mysql data back into /var/lib/mysql
   2) Configure my.cnf to set datadir=/var/lib/mysql
   3) Restart mysqld
  
   Once you put it back the way it was, then
  
   4) mysqldump -h... -u... -p... --single-transaction --all-databases
   --routines --triggers  AllData.sql
   5) Make /data/mysql TOTALLY EMPTY.
   6) Configure my.cnf to set datadir=/data/mysql
   7) Restart mysqld
  
   At this point, mysqld will regenerate a new ibdata1 file with a clean
   internal data dictionary.
  
   8) mysql -h... -u... -p...  AllData.sql
  
   All data get put into this new data folder and will reload the
   internal
   data dictionary elements pertaining to its new location.
  
   Moving MyISAM is simple. Moving InnoDB is a little more work but doing
   it
   this way ensures ibdata1 is in a proper state.
  
   -Original Message-
   From: Juan Eduardo Moreno [mailto:[EMAIL PROTECTED]
   Sent: Tuesday, May 06, 2008 9:12 AM
   To: Krishna Chandra Prajapati
   Cc: mysql
   Subject: Re: innodb disabled
  
   Hi,
  
   Can you send the error log file of mysql server in your machine?.
  
   Regards,
   Juan
  
  
   On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:
  
  
Hi Juan,
   
I have verified directory permissions, its shown below.
   
linux76:~# ls -l /data/mysql/
total 535088
drwx-- 2 mysql mysql 20480 2008-05-04 23:44 dip
-rw-rw 1 mysql mysql  10485760 2007-12-23 01:21 ibdata1
-rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile0
-rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile1
drwx-- 2 mysql root   4096 2008-03-28 02:58 mysql
   
In error log file there is error.
debian-sys-maint error
   
The above error come while starting mysql for the first time. Then i
   
   
   have
  
  
given the permissions for debian sys-maint from
 /etc/mysql/debian.cnf.
After that restart mysql don't gives any error. still innodb is
   
   
   disabled.
  
  
Thanks,
Prajapati
   
On Tue, May 6, 2008 at 7:03 AM, Juan Eduardo Moreno 
[EMAIL PROTECTED] wrote:
   
   
   
 Hi,

 The InnoDB engine was disable because some ib_log files or Ibdata
 files,  InnoDB can´t read. In some cases, could be a directory


permissions
  
  
or some error in creation of ib_logfiles when database is started.
 If


you
  
  
want , try to see in the error log file generated in order to see
 more
 details. If you don´t understand nothing in the error log file,
 please


send
  
  
this errors to the list.

 Regards,
 Juan



 On Tue, May 6, 2008 at 5:27 AM, Krishna Chandra Prajapati 
 [EMAIL PROTECTED] wrote:



  Hi all,
 
  I have change the data directory from /var/lib/mysql to
  /data/mysql
  directory and adding innodb_file_per_table. By doing this innodb
  storage
  engine get dissabled. my.cnf doesn't contains #skip-innodb. Is
 
 
 it's
  
  
adding
  will enable or not
 
  HOW CAN I ENABLE INNODB
 
  mysql show engines;
 
 
 
 

   ++--++
  
  
| Engine | Support  |
  Comment|
 
 
 
 

   ++--++
  
  
| MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with great
  performance |
  | MEMORY | YES  | Hash based, stored in memory, useful
  for
  temporary
  tables  |
  | InnoDB | DISABLED | Supports transactions, row-level
  locking,
  and
  foreign keys |
  | BerkeleyDB | NO   | Supports transactions and page-level
  locking   |
  | BLACKHOLE  | NO   | /dev/null storage engine (anything you
 
 
 write
  
  
to it
  disappears) |
  | EXAMPLE

Re: innodb disabled

2008-05-08 Thread Srini

Is your problem fixed?

what was the problem

-srini
Krishna Chandra Prajapati wrote:

Thanks a lot to all of you.

On Wed, May 7, 2008 at 8:51 PM, Srini [EMAIL PROTECTED] wrote:

  

It could be the problem with permissions or sizes of iblog or ibdata files

Can you try this back up the iblog and ibdata files and move it to some
other location from /data/mysql
and restart mysql to see if it shows innodb up on show engines, by doing
this atleast u can isolate the
problem is not with iblog or ibdata files

-srini


Krishna Chandra Prajapati wrote:



Hi,

What ever you have written i did the same thing, Yet innodb get
disabled,


On Tue, May 6, 2008 at 11:24 AM, Rolando Edwards 
[EMAIL PROTECTED]
wrote:



  

If you just created the /data/mysql folder and moved the ib* files to
that
folder from /var/lib/mysql, you may have to contend with the internal
data
dictionary with ibdata1.

You do the following:

1) Put the mysql data back into /var/lib/mysql
2) Configure my.cnf to set datadir=/var/lib/mysql
3) Restart mysqld

Once you put it back the way it was, then

4) mysqldump -h... -u... -p... --single-transaction --all-databases
--routines --triggers  AllData.sql
5) Make /data/mysql TOTALLY EMPTY.
6) Configure my.cnf to set datadir=/data/mysql
7) Restart mysqld

At this point, mysqld will regenerate a new ibdata1 file with a clean
internal data dictionary.

8) mysql -h... -u... -p...  AllData.sql

All data get put into this new data folder and will reload the
internal
data dictionary elements pertaining to its new location.

Moving MyISAM is simple. Moving InnoDB is a little more work but doing
it
this way ensures ibdata1 is in a proper state.

-Original Message-
From: Juan Eduardo Moreno [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 06, 2008 9:12 AM
To: Krishna Chandra Prajapati
Cc: mysql
Subject: Re: innodb disabled

Hi,

Can you send the error log file of mysql server in your machine?.

Regards,
Juan


On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:




Hi Juan,

I have verified directory permissions, its shown below.

linux76:~# ls -l /data/mysql/
total 535088
drwx-- 2 mysql mysql 20480 2008-05-04 23:44 dip
-rw-rw 1 mysql mysql  10485760 2007-12-23 01:21 ibdata1
-rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile0
-rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile1
drwx-- 2 mysql root   4096 2008-03-28 02:58 mysql

In error log file there is error.
debian-sys-maint error

The above error come while starting mysql for the first time. Then i


  

have




given the permissions for debian sys-maint from
 /etc/mysql/debian.cnf.
After that restart mysql don't gives any error. still innodb is


  

disabled.




Thanks,
Prajapati

On Tue, May 6, 2008 at 7:03 AM, Juan Eduardo Moreno 
[EMAIL PROTECTED] wrote:



  

Hi,

The InnoDB engine was disable because some ib_log files or Ibdata
files,  InnoDB can´t read. In some cases, could be a directory




permissions
  


or some error in creation of ib_logfiles when database is started.
  

If




you
  


want , try to see in the error log file generated in order to see
  

more
details. If you don´t understand nothing in the error log file,
please




send
  


this errors to the list.
  

Regards,
Juan



On Tue, May 6, 2008 at 5:27 AM, Krishna Chandra Prajapati 
[EMAIL PROTECTED] wrote:





Hi all,

I have change the data directory from /var/lib/mysql to
/data/mysql
directory and adding innodb_file_per_table. By doing this innodb
storage
engine get dissabled. my.cnf doesn't contains #skip-innodb. Is


  

it's



adding
  

will enable or not

HOW CAN I ENABLE INNODB

mysql show engines;




  

++--++




| Engine | Support  |
  

Comment|




  

++--++




| MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with great
  

performance |
| MEMORY | YES  | Hash based, stored in memory, useful
for
temporary
tables  |
| InnoDB | DISABLED | Supports transactions, row-level
locking,
and
foreign keys |
| BerkeleyDB | NO   | Supports transactions and page-level
locking   |
| BLACKHOLE  | NO   | /dev/null storage engine (anything you


  

write



to it
  

disappears) |
| EXAMPLE| NO   | Example storage
engine |
| ARCHIVE| YES  | Archive storage
engine |
| CSV| YES  | CSV storage
engine

Re: innodb disabled

2008-05-08 Thread Krishna Chandra Prajapati
The problem happened on production server. So i will be doing all the
testings later.
Thanks a lot to all of you

On Thu, May 8, 2008 at 2:23 PM, Srini [EMAIL PROTECTED] wrote:

 Is your problem fixed?

 what was the problem


 -srini
 Krishna Chandra Prajapati wrote:

 Thanks a lot to all of you.

 On Wed, May 7, 2008 at 8:51 PM, Srini [EMAIL PROTECTED] wrote:



 It could be the problem with permissions or sizes of iblog or ibdata
 files

 Can you try this back up the iblog and ibdata files and move it to some
 other location from /data/mysql
 and restart mysql to see if it shows innodb up on show engines, by doing
 this atleast u can isolate the
 problem is not with iblog or ibdata files

 -srini


 Krishna Chandra Prajapati wrote:



 Hi,

 What ever you have written i did the same thing, Yet innodb get
 disabled,


 On Tue, May 6, 2008 at 11:24 AM, Rolando Edwards 
 [EMAIL PROTECTED]
 wrote:





 If you just created the /data/mysql folder and moved the ib* files to
 that
 folder from /var/lib/mysql, you may have to contend with the internal
 data
 dictionary with ibdata1.

 You do the following:

 1) Put the mysql data back into /var/lib/mysql
 2) Configure my.cnf to set datadir=/var/lib/mysql
 3) Restart mysqld

 Once you put it back the way it was, then

 4) mysqldump -h... -u... -p... --single-transaction --all-databases
 --routines --triggers  AllData.sql
 5) Make /data/mysql TOTALLY EMPTY.
 6) Configure my.cnf to set datadir=/data/mysql
 7) Restart mysqld

 At this point, mysqld will regenerate a new ibdata1 file with a clean
 internal data dictionary.

 8) mysql -h... -u... -p...  AllData.sql

 All data get put into this new data folder and will reload the
 internal
 data dictionary elements pertaining to its new location.

 Moving MyISAM is simple. Moving InnoDB is a little more work but doing
 it
 this way ensures ibdata1 is in a proper state.

 -Original Message-
 From: Juan Eduardo Moreno [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, May 06, 2008 9:12 AM
 To: Krishna Chandra Prajapati
 Cc: mysql
 Subject: Re: innodb disabled

 Hi,

 Can you send the error log file of mysql server in your machine?.

 Regards,
 Juan


 On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:




 Hi Juan,

 I have verified directory permissions, its shown below.

 linux76:~# ls -l /data/mysql/
 total 535088
 drwx-- 2 mysql mysql 20480 2008-05-04 23:44 dip
 -rw-rw 1 mysql mysql  10485760 2007-12-23 01:21 ibdata1
 -rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile0
 -rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile1
 drwx-- 2 mysql root   4096 2008-03-28 02:58 mysql

 In error log file there is error.
 debian-sys-maint error

 The above error come while starting mysql for the first time. Then i




 have




 given the permissions for debian sys-maint from
  /etc/mysql/debian.cnf.
 After that restart mysql don't gives any error. still innodb is




 disabled.




 Thanks,
 Prajapati

 On Tue, May 6, 2008 at 7:03 AM, Juan Eduardo Moreno 
 [EMAIL PROTECTED] wrote:





 Hi,

 The InnoDB engine was disable because some ib_log files or Ibdata
 files,  InnoDB can´t read. In some cases, could be a directory




 permissions




 or some error in creation of ib_logfiles when database is started.


 If




 you




 want , try to see in the error log file generated in order to see


 more
 details. If you don´t understand nothing in the error log file,
 please




 send




 this errors to the list.


 Regards,
 Juan



 On Tue, May 6, 2008 at 5:27 AM, Krishna Chandra Prajapati 
 [EMAIL PROTECTED] wrote:





 Hi all,

 I have change the data directory from /var/lib/mysql to
 /data/mysql
 directory and adding innodb_file_per_table. By doing this innodb
 storage
 engine get dissabled. my.cnf doesn't contains #skip-innodb. Is




 it's




 adding


 will enable or not

 HOW CAN I ENABLE INNODB

 mysql show engines;







 ++--++




 | Engine | Support  |


 Comment|







 ++--++




 | MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with great


 performance |
 | MEMORY | YES  | Hash based, stored in memory, useful
 for
 temporary
 tables  |
 | InnoDB | DISABLED | Supports transactions, row-level
 locking,
 and
 foreign keys |
 | BerkeleyDB | NO   | Supports transactions and page-level
 locking   |
 | BLACKHOLE  | NO   | /dev/null storage engine (anything you




 write




 to it


 disappears) |
 | EXAMPLE| NO   | Example storage
 engine |
 | ARCHIVE| YES  | Archive storage
 engine |
 | CSV| YES  | CSV storage
 engine

Re: innodb disabled

2008-05-07 Thread Ananda Kumar
r u not able to create tables of type=INNODB.




On 5/7/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:

 Hi,

 What ever you have written i did the same thing, Yet innodb get disabled,


 On Tue, May 6, 2008 at 11:24 AM, Rolando Edwards [EMAIL PROTECTED]
 wrote:

  If you just created the /data/mysql folder and moved the ib* files to
 that
  folder from /var/lib/mysql, you may have to contend with the internal
 data
  dictionary with ibdata1.
 
  You do the following:
 
  1) Put the mysql data back into /var/lib/mysql
  2) Configure my.cnf to set datadir=/var/lib/mysql
  3) Restart mysqld
 
  Once you put it back the way it was, then
 
  4) mysqldump -h... -u... -p... --single-transaction --all-databases
  --routines --triggers  AllData.sql
  5) Make /data/mysql TOTALLY EMPTY.
  6) Configure my.cnf to set datadir=/data/mysql
  7) Restart mysqld
 
  At this point, mysqld will regenerate a new ibdata1 file with a clean
  internal data dictionary.
 
  8) mysql -h... -u... -p...  AllData.sql
 
  All data get put into this new data folder and will reload the internal
  data dictionary elements pertaining to its new location.
 
  Moving MyISAM is simple. Moving InnoDB is a little more work but doing
 it
  this way ensures ibdata1 is in a proper state.
 
  -Original Message-
  From: Juan Eduardo Moreno [mailto:[EMAIL PROTECTED]
  Sent: Tuesday, May 06, 2008 9:12 AM
  To: Krishna Chandra Prajapati
  Cc: mysql
  Subject: Re: innodb disabled
 
  Hi,
 
  Can you send the error log file of mysql server in your machine?.
 
  Regards,
  Juan
 
 
  On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:
  
   Hi Juan,
  
   I have verified directory permissions, its shown below.
  
   linux76:~# ls -l /data/mysql/
   total 535088
   drwx-- 2 mysql mysql 20480 2008-05-04 23:44 dip
   -rw-rw 1 mysql mysql  10485760 2007-12-23 01:21 ibdata1
   -rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile0
   -rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile1
   drwx-- 2 mysql root   4096 2008-03-28 02:58 mysql
  
   In error log file there is error.
   debian-sys-maint error
  
   The above error come while starting mysql for the first time. Then i
  have
   given the permissions for debian sys-maint
 from  /etc/mysql/debian.cnf.
   After that restart mysql don't gives any error. still innodb is
  disabled.
  
   Thanks,
   Prajapati
  
   On Tue, May 6, 2008 at 7:03 AM, Juan Eduardo Moreno 
   [EMAIL PROTECTED] wrote:
  
Hi,
   
The InnoDB engine was disable because some ib_log files or Ibdata
files,  InnoDB can´t read. In some cases, could be a directory
  permissions
or some error in creation of ib_logfiles when database is started.
 If
  you
want , try to see in the error log file generated in order to see
 more
details. If you don´t understand nothing in the error log file,
 please
  send
this errors to the list.
   
Regards,
Juan
   
   
   
On Tue, May 6, 2008 at 5:27 AM, Krishna Chandra Prajapati 
[EMAIL PROTECTED] wrote:
   
 Hi all,

 I have change the data directory from /var/lib/mysql to
 /data/mysql
 directory and adding innodb_file_per_table. By doing this innodb
 storage
 engine get dissabled. my.cnf doesn't contains #skip-innodb. Is
  it's
 adding
 will enable or not

 HOW CAN I ENABLE INNODB

 mysql show engines;


 
 ++--++
 | Engine | Support  |
 Comment|


 
 ++--++
 | MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with
 great
 performance |
 | MEMORY | YES  | Hash based, stored in memory, useful for
 temporary
 tables  |
 | InnoDB | DISABLED | Supports transactions, row-level
 locking,
 and
 foreign keys |
 | BerkeleyDB | NO   | Supports transactions and page-level
 locking   |
 | BLACKHOLE  | NO   | /dev/null storage engine (anything you
  write
 to it
 disappears) |
 | EXAMPLE| NO   | Example storage
 engine |
 | ARCHIVE| YES  | Archive storage
 engine |
 | CSV| YES  | CSV storage
 engine |
 | ndbcluster | DISABLED | Clustered, fault-tolerant, memory-based
 tables |
 | FEDERATED  | YES  | Federated MySQL storage
 engine |
 | MRG_MYISAM | YES  | Collection of identical MyISAM
 tables  |
 | ISAM   | NO   | Obsolete storage
 engine

Re: innodb disabled

2008-05-07 Thread Krishna Chandra Prajapati
No, I am not able to create table of innodb type

On Wed, May 7, 2008 at 2:48 AM, Ananda Kumar [EMAIL PROTECTED] wrote:

 r u not able to create tables of type=INNODB.




 On 5/7/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:
 
  Hi,
 
  What ever you have written i did the same thing, Yet innodb get
  disabled,
 
 
  On Tue, May 6, 2008 at 11:24 AM, Rolando Edwards 
  [EMAIL PROTECTED]
  wrote:
 
   If you just created the /data/mysql folder and moved the ib* files to
  that
   folder from /var/lib/mysql, you may have to contend with the internal
  data
   dictionary with ibdata1.
  
   You do the following:
  
   1) Put the mysql data back into /var/lib/mysql
   2) Configure my.cnf to set datadir=/var/lib/mysql
   3) Restart mysqld
  
   Once you put it back the way it was, then
  
   4) mysqldump -h... -u... -p... --single-transaction --all-databases
   --routines --triggers  AllData.sql
   5) Make /data/mysql TOTALLY EMPTY.
   6) Configure my.cnf to set datadir=/data/mysql
   7) Restart mysqld
  
   At this point, mysqld will regenerate a new ibdata1 file with a clean
   internal data dictionary.
  
   8) mysql -h... -u... -p...  AllData.sql
  
   All data get put into this new data folder and will reload the
  internal
   data dictionary elements pertaining to its new location.
  
   Moving MyISAM is simple. Moving InnoDB is a little more work but doing
  it
   this way ensures ibdata1 is in a proper state.
  
   -Original Message-
   From: Juan Eduardo Moreno [mailto:[EMAIL PROTECTED]
   Sent: Tuesday, May 06, 2008 9:12 AM
   To: Krishna Chandra Prajapati
   Cc: mysql
   Subject: Re: innodb disabled
  
   Hi,
  
   Can you send the error log file of mysql server in your machine?.
  
   Regards,
   Juan
  
  
   On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:
   
Hi Juan,
   
I have verified directory permissions, its shown below.
   
linux76:~# ls -l /data/mysql/
total 535088
drwx-- 2 mysql mysql 20480 2008-05-04 23:44 dip
-rw-rw 1 mysql mysql  10485760 2007-12-23 01:21 ibdata1
-rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile0
-rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile1
drwx-- 2 mysql root   4096 2008-03-28 02:58 mysql
   
In error log file there is error.
debian-sys-maint error
   
The above error come while starting mysql for the first time. Then i
   have
given the permissions for debian sys-maint
  from  /etc/mysql/debian.cnf.
After that restart mysql don't gives any error. still innodb is
   disabled.
   
Thanks,
Prajapati
   
On Tue, May 6, 2008 at 7:03 AM, Juan Eduardo Moreno 
[EMAIL PROTECTED] wrote:
   
 Hi,

 The InnoDB engine was disable because some ib_log files or Ibdata
 files,  InnoDB can´t read. In some cases, could be a directory
   permissions
 or some error in creation of ib_logfiles when database is started.
  If
   you
 want , try to see in the error log file generated in order to see
  more
 details. If you don´t understand nothing in the error log file,
  please
   send
 this errors to the list.

 Regards,
 Juan



 On Tue, May 6, 2008 at 5:27 AM, Krishna Chandra Prajapati 
 [EMAIL PROTECTED] wrote:

  Hi all,
 
  I have change the data directory from /var/lib/mysql to
  /data/mysql
  directory and adding innodb_file_per_table. By doing this innodb
  storage
  engine get dissabled. my.cnf doesn't contains #skip-innodb. Is
   it's
  adding
  will enable or not
 
  HOW CAN I ENABLE INNODB
 
  mysql show engines;
 
 
  
  ++--++
  | Engine | Support  |
  Comment|
 
 
  
  ++--++
  | MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with
  great
  performance |
  | MEMORY | YES  | Hash based, stored in memory, useful
  for
  temporary
  tables  |
  | InnoDB | DISABLED | Supports transactions, row-level
  locking,
  and
  foreign keys |
  | BerkeleyDB | NO   | Supports transactions and page-level
  locking   |
  | BLACKHOLE  | NO   | /dev/null storage engine (anything you
   write
  to it
  disappears) |
  | EXAMPLE| NO   | Example storage
  engine |
  | ARCHIVE| YES  | Archive storage
  engine |
  | CSV| YES  | CSV storage
  engine |
  | ndbcluster | DISABLED | Clustered, fault-tolerant,
  memory-based
  tables |
  | FEDERATED  | YES  | Federated MySQL

Re: innodb disabled

2008-05-07 Thread Ananda Kumar
when u try to create the table, what is the error ur getting.

regards
anandkl


On 5/7/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:

 No, I am not able to create table of innodb type

 On Wed, May 7, 2008 at 2:48 AM, Ananda Kumar [EMAIL PROTECTED] wrote:

  r u not able to create tables of type=INNODB.
 
 
 
 
  On 5/7/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:
  
   Hi,
  
   What ever you have written i did the same thing, Yet innodb get
   disabled,
  
  
   On Tue, May 6, 2008 at 11:24 AM, Rolando Edwards 
   [EMAIL PROTECTED]
   wrote:
  
If you just created the /data/mysql folder and moved the ib* files
   to that
folder from /var/lib/mysql, you may have to contend with the
   internal data
dictionary with ibdata1.
   
You do the following:
   
1) Put the mysql data back into /var/lib/mysql
2) Configure my.cnf to set datadir=/var/lib/mysql
3) Restart mysqld
   
Once you put it back the way it was, then
   
4) mysqldump -h... -u... -p... --single-transaction --all-databases
--routines --triggers  AllData.sql
5) Make /data/mysql TOTALLY EMPTY.
6) Configure my.cnf to set datadir=/data/mysql
7) Restart mysqld
   
At this point, mysqld will regenerate a new ibdata1 file with a
   clean
internal data dictionary.
   
8) mysql -h... -u... -p...  AllData.sql
   
All data get put into this new data folder and will reload the
   internal
data dictionary elements pertaining to its new location.
   
Moving MyISAM is simple. Moving InnoDB is a little more work but
   doing it
this way ensures ibdata1 is in a proper state.
   
-Original Message-
From: Juan Eduardo Moreno [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 06, 2008 9:12 AM
To: Krishna Chandra Prajapati
Cc: mysql
Subject: Re: innodb disabled
   
Hi,
   
Can you send the error log file of mysql server in your machine?.
   
Regards,
Juan
   
   
On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:

 Hi Juan,

 I have verified directory permissions, its shown below.

 linux76:~# ls -l /data/mysql/
 total 535088
 drwx-- 2 mysql mysql 20480 2008-05-04 23:44 dip
 -rw-rw 1 mysql mysql  10485760 2007-12-23 01:21 ibdata1
 -rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile0
 -rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile1
 drwx-- 2 mysql root   4096 2008-03-28 02:58 mysql

 In error log file there is error.
 debian-sys-maint error

 The above error come while starting mysql for the first time. Then
   i
have
 given the permissions for debian sys-maint
   from  /etc/mysql/debian.cnf.
 After that restart mysql don't gives any error. still innodb is
disabled.

 Thanks,
 Prajapati

 On Tue, May 6, 2008 at 7:03 AM, Juan Eduardo Moreno 
 [EMAIL PROTECTED] wrote:

  Hi,
 
  The InnoDB engine was disable because some ib_log files or
   Ibdata
  files,  InnoDB can´t read. In some cases, could be a directory
permissions
  or some error in creation of ib_logfiles when database is
   started. If
you
  want , try to see in the error log file generated in order to
   see more
  details. If you don´t understand nothing in the error log file,
   please
send
  this errors to the list.
 
  Regards,
  Juan
 
 
 
  On Tue, May 6, 2008 at 5:27 AM, Krishna Chandra Prajapati 
  [EMAIL PROTECTED] wrote:
 
   Hi all,
  
   I have change the data directory from /var/lib/mysql to
   /data/mysql
   directory and adding innodb_file_per_table. By doing this
   innodb
   storage
   engine get dissabled. my.cnf doesn't contains #skip-innodb.
   Is
it's
   adding
   will enable or not
  
   HOW CAN I ENABLE INNODB
  
   mysql show engines;
  
  
   
   ++--++
   | Engine | Support  |
  
   Comment|
  
  
   
   ++--++
   | MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with
   great
   performance |
   | MEMORY | YES  | Hash based, stored in memory, useful
   for
   temporary
   tables  |
   | InnoDB | DISABLED | Supports transactions, row-level
   locking,
   and
   foreign keys |
   | BerkeleyDB | NO   | Supports transactions and page-level
   locking   |
   | BLACKHOLE  | NO   | /dev/null storage engine (anything
   you
write
   to it
   disappears) |
   | EXAMPLE| NO   | Example storage
   engine |
   | ARCHIVE| YES

Re: innodb disabled

2008-05-07 Thread Norbert Tretkowski
Am Mittwoch, den 07.05.2008, 01:30 schrieb Krishna Chandra Prajapati:
 Currently error log file is empty. What else can be the reason for
 disable innodb.

You mentioned that you're using Debian. The MySQL packages in Debian
using syslog, check /var/log/syslog for errors.

Norbert


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: innodb disabled

2008-05-07 Thread Srini

It could be the problem with permissions or sizes of iblog or ibdata files

Can you try this back up the iblog and ibdata files and move it to some 
other location from /data/mysql
and restart mysql to see if it shows innodb up on show engines, by doing 
this atleast u can isolate the

problem is not with iblog or ibdata files

-srini

Krishna Chandra Prajapati wrote:

Hi,

What ever you have written i did the same thing, Yet innodb get disabled,


On Tue, May 6, 2008 at 11:24 AM, Rolando Edwards [EMAIL PROTECTED]
wrote:

  

If you just created the /data/mysql folder and moved the ib* files to that
folder from /var/lib/mysql, you may have to contend with the internal data
dictionary with ibdata1.

You do the following:

1) Put the mysql data back into /var/lib/mysql
2) Configure my.cnf to set datadir=/var/lib/mysql
3) Restart mysqld

Once you put it back the way it was, then

4) mysqldump -h... -u... -p... --single-transaction --all-databases
--routines --triggers  AllData.sql
5) Make /data/mysql TOTALLY EMPTY.
6) Configure my.cnf to set datadir=/data/mysql
7) Restart mysqld

At this point, mysqld will regenerate a new ibdata1 file with a clean
internal data dictionary.

8) mysql -h... -u... -p...  AllData.sql

All data get put into this new data folder and will reload the internal
data dictionary elements pertaining to its new location.

Moving MyISAM is simple. Moving InnoDB is a little more work but doing it
this way ensures ibdata1 is in a proper state.

-Original Message-
From: Juan Eduardo Moreno [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 06, 2008 9:12 AM
To: Krishna Chandra Prajapati
Cc: mysql
Subject: Re: innodb disabled

Hi,

Can you send the error log file of mysql server in your machine?.

Regards,
Juan


On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:


Hi Juan,

I have verified directory permissions, its shown below.

linux76:~# ls -l /data/mysql/
total 535088
drwx-- 2 mysql mysql 20480 2008-05-04 23:44 dip
-rw-rw 1 mysql mysql  10485760 2007-12-23 01:21 ibdata1
-rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile0
-rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile1
drwx-- 2 mysql root   4096 2008-03-28 02:58 mysql

In error log file there is error.
debian-sys-maint error

The above error come while starting mysql for the first time. Then i
  

have


given the permissions for debian sys-maint from  /etc/mysql/debian.cnf.
After that restart mysql don't gives any error. still innodb is
  

disabled.


Thanks,
Prajapati

On Tue, May 6, 2008 at 7:03 AM, Juan Eduardo Moreno 
[EMAIL PROTECTED] wrote:

  

Hi,

The InnoDB engine was disable because some ib_log files or Ibdata
files,  InnoDB can´t read. In some cases, could be a directory


permissions


or some error in creation of ib_logfiles when database is started. If


you


want , try to see in the error log file generated in order to see more
details. If you don´t understand nothing in the error log file, please


send


this errors to the list.

Regards,
Juan



On Tue, May 6, 2008 at 5:27 AM, Krishna Chandra Prajapati 
[EMAIL PROTECTED] wrote:



Hi all,

I have change the data directory from /var/lib/mysql to /data/mysql
directory and adding innodb_file_per_table. By doing this innodb
storage
engine get dissabled. my.cnf doesn't contains #skip-innodb. Is
  

it's


adding
will enable or not

HOW CAN I ENABLE INNODB

mysql show engines;


  

++--++


| Engine | Support  |
Comment|


  

++--++


| MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with great
performance |
| MEMORY | YES  | Hash based, stored in memory, useful for
temporary
tables  |
| InnoDB | DISABLED | Supports transactions, row-level locking,
and
foreign keys |
| BerkeleyDB | NO   | Supports transactions and page-level
locking   |
| BLACKHOLE  | NO   | /dev/null storage engine (anything you
  

write


to it
disappears) |
| EXAMPLE| NO   | Example storage
engine |
| ARCHIVE| YES  | Archive storage
engine |
| CSV| YES  | CSV storage
engine |
| ndbcluster | DISABLED | Clustered, fault-tolerant, memory-based
tables |
| FEDERATED  | YES  | Federated MySQL storage
engine |
| MRG_MYISAM | YES  | Collection of identical MyISAM
tables  |
| ISAM   | NO   | Obsolete storage
engine

Re: innodb disabled

2008-05-06 Thread Ananda Kumar
looks like your mn.cnf has this commented

#set default_storage_engine=InnoDB

Can u please uncomment it, if u want INNODB as ur default storage engine.

On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:

 Hi all,

 I have change the data directory from /var/lib/mysql to /data/mysql
 directory and adding innodb_file_per_table. By doing this innodb storage
 engine get dissabled. my.cnf doesn't contains #skip-innodb. Is it's
 adding
 will enable or not

 HOW CAN I ENABLE INNODB

 mysql show engines;

 ++--++
 | Engine | Support  |
 Comment|

 ++--++
 | MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with great
 performance |
 | MEMORY | YES  | Hash based, stored in memory, useful for
 temporary
 tables  |
 | InnoDB | DISABLED | Supports transactions, row-level locking, and
 foreign keys |
 | BerkeleyDB | NO   | Supports transactions and page-level
 locking   |
 | BLACKHOLE  | NO   | /dev/null storage engine (anything you write to
 it
 disappears) |
 | EXAMPLE| NO   | Example storage
 engine |
 | ARCHIVE| YES  | Archive storage
 engine |
 | CSV| YES  | CSV storage
 engine |
 | ndbcluster | DISABLED | Clustered, fault-tolerant, memory-based
 tables |
 | FEDERATED  | YES  | Federated MySQL storage
 engine |
 | MRG_MYISAM | YES  | Collection of identical MyISAM
 tables  |
 | ISAM   | NO   | Obsolete storage
 engine|

 ++--++
 12 rows in set (0.00 sec)


 # /etc/mysql/my.cnf: The global mysql configuration file.
 # $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/files/my.cnf-4.1-r1,v 1.3
 2006/02/01 20:25:56 vivo Exp $
 #
 # $Revision:$
 # $Id:$

 # The following options will be passed to all MySQL clients
 [client]
 #password   =
 port= 3306
 socket  =
 /var/run/mysqld/mysqld.sock

 [mysql]
 character-sets-dir=utf8
 default-character-set=utf8

 [mysqladmin]
 character-sets-dir=utf8
 default-character-set=utf8

 [mysqlcheck]
 character-sets-dir=utf8
 default-character-set=utf8

 [mysqldump]
 character-sets-dir=utf8
 default-character-set=utf8

 [mysqlimport]
 character-sets-dir=utf8
 default-character-set=utf8

 [mysqlshow]
 character-sets-dir=utf8
 default-character-set=utf8

 [myisamchk]
 character-sets-dir=utf8
 default-character-set=utf8

 [myisampack]
 character-sets-dir=utf8


 # use [safe_mysqld] with mysql-3
 [mysqld_safe]
 err-log = /var/log/mysql/mysql.err

 # add a section [mysqld-4.1] or [mysqld-5.0] for specific configurations.
 [mysqld]
 old_passwords = false # inserted by debconf
 character-set-server= utf8
 default-character-set   = utf8
 user= mysql
 port= 3306
 socket  = /var/run/mysqld/mysqld.sock
 pid-file= /var/run/mysqld/mysqld.pid
 log-error   = /var/log/mysql/mysqld.err
 basedir = /usr
 #datadir= /var/lib/mysql
 skip-locking
 #set default_storage_engine=InnoDB
 key_buffer  = 384M
 max_allowed_packet  = 16M
 table_cache = 1024

 sort_buffer_size= 9M

 net_buffer_length   = 8K
 read_buffer_size= 2M
 read_rnd_buffer_size= 32M
 myisam_sort_buffer_size = 64M

 query_cache_type= 1
 query_cache_size= 100M

 language= /usr/share/mysql/english

 set-variable = max_connections=1024

 # Begin replication section
 log-bin=/var/db/db05-master-bin.log
 server-id=5

 # End replication section

 #security:
 #using localhost in connects use sockets by default
 #skip-networking
 #bind-address   = 127.0.0.1

 # Point the following paths to different dedicated disks
 tmpdir  = /tmp/
 #log-update = /path-to-dedicated-directory/hostname

 # you need debug use flag enabled to use this ones.
 # if needed uncomment them, start the server and issue
 # #tail -f /tmp/mysqld.sql /tmp/mysqld.trace
 # this will show you *exactly* what's appening in your server ;)

 #log= /tmp/mysqld.sql
 #gdb
 #debug  = d:t:i:o,/tmp/mysqld.trace
 

Re: innodb disabled

2008-05-06 Thread Krishna Chandra Prajapati
hi

I want MYISAM to be the default storage engine.


On Tue, May 6, 2008 at 4:42 AM, Ananda Kumar [EMAIL PROTECTED] wrote:

 looks like your mn.cnf has this commented

 #set default_storage_engine=InnoDB

 Can u please uncomment it, if u want INNODB as ur default storage engine.

 On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:
 
  Hi all,
 
  I have change the data directory from /var/lib/mysql to /data/mysql
  directory and adding innodb_file_per_table. By doing this innodb storage
  engine get dissabled. my.cnf doesn't contains #skip-innodb. Is it's
  adding
  will enable or not
 
  HOW CAN I ENABLE INNODB
 
  mysql show engines;
 
  ++--++
  | Engine | Support  |
  Comment|
 
  ++--++
  | MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with great
  performance |
  | MEMORY | YES  | Hash based, stored in memory, useful for
  temporary
  tables  |
  | InnoDB | DISABLED | Supports transactions, row-level locking, and
  foreign keys |
  | BerkeleyDB | NO   | Supports transactions and page-level
  locking   |
  | BLACKHOLE  | NO   | /dev/null storage engine (anything you write
  to it
  disappears) |
  | EXAMPLE| NO   | Example storage
  engine |
  | ARCHIVE| YES  | Archive storage
  engine |
  | CSV| YES  | CSV storage
  engine |
  | ndbcluster | DISABLED | Clustered, fault-tolerant, memory-based
  tables |
  | FEDERATED  | YES  | Federated MySQL storage
  engine |
  | MRG_MYISAM | YES  | Collection of identical MyISAM
  tables  |
  | ISAM   | NO   | Obsolete storage
  engine|
 
  ++--++
  12 rows in set (0.00 sec)
 
 
  # /etc/mysql/my.cnf: The global mysql configuration file.
  # $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/files/my.cnf-4.1-r1,v
  1.3
  2006/02/01 20:25:56 vivo Exp $
  #
  # $Revision:$
  # $Id:$
 
  # The following options will be passed to all MySQL clients
  [client]
  #password   =
  port= 3306
  socket  =
  /var/run/mysqld/mysqld.sock
 
  [mysql]
  character-sets-dir=utf8
  default-character-set=utf8
 
  [mysqladmin]
  character-sets-dir=utf8
  default-character-set=utf8
 
  [mysqlcheck]
  character-sets-dir=utf8
  default-character-set=utf8
 
  [mysqldump]
  character-sets-dir=utf8
  default-character-set=utf8
 
  [mysqlimport]
  character-sets-dir=utf8
  default-character-set=utf8
 
  [mysqlshow]
  character-sets-dir=utf8
  default-character-set=utf8
 
  [myisamchk]
  character-sets-dir=utf8
  default-character-set=utf8
 
  [myisampack]
  character-sets-dir=utf8
 
 
  # use [safe_mysqld] with mysql-3
  [mysqld_safe]
  err-log =
  /var/log/mysql/mysql.err
 
  # add a section [mysqld-4.1] or [mysqld-5.0] for specific
  configurations.
  [mysqld]
  old_passwords = false # inserted by debconf
  character-set-server= utf8
  default-character-set   = utf8
  user= mysql
  port= 3306
  socket  = /var/run/mysqld/mysqld.sock
  pid-file= /var/run/mysqld/mysqld.pid
  log-error   = /var/log/mysql/mysqld.err
  basedir = /usr
  #datadir= /var/lib/mysql
  skip-locking
  #set default_storage_engine=InnoDB
  key_buffer  = 384M
  max_allowed_packet  = 16M
  table_cache = 1024
 
  sort_buffer_size= 9M
 
  net_buffer_length   = 8K
  read_buffer_size= 2M
  read_rnd_buffer_size= 32M
  myisam_sort_buffer_size = 64M
 
  query_cache_type= 1
  query_cache_size= 100M
 
  language= /usr/share/mysql/english
 
  set-variable = max_connections=1024
 
  # Begin replication section
  log-bin=/var/db/db05-master-bin.log
  server-id=5
 
  # End replication section
 
  #security:
  #using localhost in connects use sockets by default
  #skip-networking
  #bind-address   = 127.0.0.1
 
  # Point the following paths to different dedicated disks
  tmpdir  = /tmp/
  #log-update = /path-to-dedicated-directory/hostname
 
  # you need debug use flag enabled to use this ones.
  # if needed 

Re: innodb disabled

2008-05-06 Thread Ananda Kumar
U also need innodb tables?.

As you have myisam as ur default, SHOW STATUS is showing it correctly.

regards
anandkl


On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:

 hi

 I want MYISAM to be the default storage engine.


 On Tue, May 6, 2008 at 4:42 AM, Ananda Kumar [EMAIL PROTECTED] wrote:

  looks like your mn.cnf has this commented
 
  #set default_storage_engine=InnoDB
 
  Can u please uncomment it, if u want INNODB as ur default storage
  engine.
 
On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:
  
   Hi all,
  
   I have change the data directory from /var/lib/mysql to /data/mysql
   directory and adding innodb_file_per_table. By doing this innodb
   storage
   engine get dissabled. my.cnf doesn't contains #skip-innodb. Is it's
   adding
   will enable or not
  
   HOW CAN I ENABLE INNODB
  
   mysql show engines;
  
   ++--++
   | Engine | Support  |
   Comment|
  
   ++--++
   | MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with great
   performance |
   | MEMORY | YES  | Hash based, stored in memory, useful for
   temporary
   tables  |
   | InnoDB | DISABLED | Supports transactions, row-level locking,
   and
   foreign keys |
   | BerkeleyDB | NO   | Supports transactions and page-level
   locking   |
   | BLACKHOLE  | NO   | /dev/null storage engine (anything you write
   to it
   disappears) |
   | EXAMPLE| NO   | Example storage
   engine |
   | ARCHIVE| YES  | Archive storage
   engine |
   | CSV| YES  | CSV storage
   engine |
   | ndbcluster | DISABLED | Clustered, fault-tolerant, memory-based
   tables |
   | FEDERATED  | YES  | Federated MySQL storage
   engine |
   | MRG_MYISAM | YES  | Collection of identical MyISAM
   tables  |
   | ISAM   | NO   | Obsolete storage
   engine|
  
   ++--++
   12 rows in set (0.00 sec)
  
  
   # /etc/mysql/my.cnf: The global mysql configuration file.
   # $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/files/my.cnf-4.1-r1,v
   1.3
   2006/02/01 20:25:56 vivo Exp $
   #
   # $Revision:$
   # $Id:$
  
   # The following options will be passed to all MySQL clients
   [client]
   #password   =
   port= 3306
   socket  =
   /var/run/mysqld/mysqld.sock
  
   [mysql]
   character-sets-dir=utf8
   default-character-set=utf8
  
   [mysqladmin]
   character-sets-dir=utf8
   default-character-set=utf8
  
   [mysqlcheck]
   character-sets-dir=utf8
   default-character-set=utf8
  
   [mysqldump]
   character-sets-dir=utf8
   default-character-set=utf8
  
   [mysqlimport]
   character-sets-dir=utf8
   default-character-set=utf8
  
   [mysqlshow]
   character-sets-dir=utf8
   default-character-set=utf8
  
   [myisamchk]
   character-sets-dir=utf8
   default-character-set=utf8
  
   [myisampack]
   character-sets-dir=utf8
  
  
   # use [safe_mysqld] with mysql-3
   [mysqld_safe]
   err-log =
   /var/log/mysql/mysql.err
  
   # add a section [mysqld-4.1] or [mysqld-5.0] for specific
   configurations.
   [mysqld]
   old_passwords = false # inserted by debconf
   character-set-server= utf8
   default-character-set   = utf8
   user= mysql
   port= 3306
   socket  = /var/run/mysqld/mysqld.sock
   pid-file= /var/run/mysqld/mysqld.pid
   log-error   = /var/log/mysql/mysqld.err
   basedir = /usr
   #datadir= /var/lib/mysql
   skip-locking
   #set default_storage_engine=InnoDB
   key_buffer  = 384M
   max_allowed_packet  = 16M
   table_cache = 1024
  
   sort_buffer_size= 9M
  
   net_buffer_length   = 8K
   read_buffer_size= 2M
   read_rnd_buffer_size= 32M
   myisam_sort_buffer_size = 64M
  
   query_cache_type= 1
   query_cache_size= 100M
  
   language= /usr/share/mysql/english
  
   set-variable = max_connections=1024
  
   # Begin replication section
   log-bin=/var/db/db05-master-bin.log
   server-id=5
  
   # End replication section
  
   #security:
   #using localhost in connects 

Re: innodb disabled

2008-05-06 Thread Juan Eduardo Moreno
Hi,

The InnoDB engine was disable because some ib_log files or Ibdata files,
InnoDB can´t read. In some cases, could be a directory permissions or some
error in creation of ib_logfiles when database is started. If you want , try
to see in the error log file generated in order to see more details. If you
don´t understand nothing in the error log file, please send this errors to
the list.

Regards,
Juan


On Tue, May 6, 2008 at 5:27 AM, Krishna Chandra Prajapati 
[EMAIL PROTECTED] wrote:

 Hi all,

 I have change the data directory from /var/lib/mysql to /data/mysql
 directory and adding innodb_file_per_table. By doing this innodb storage
 engine get dissabled. my.cnf doesn't contains #skip-innodb. Is it's
 adding
 will enable or not

 HOW CAN I ENABLE INNODB

 mysql show engines;

 ++--++
 | Engine | Support  |
 Comment|

 ++--++
 | MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with great
 performance |
 | MEMORY | YES  | Hash based, stored in memory, useful for
 temporary
 tables  |
 | InnoDB | DISABLED | Supports transactions, row-level locking, and
 foreign keys |
 | BerkeleyDB | NO   | Supports transactions and page-level
 locking   |
 | BLACKHOLE  | NO   | /dev/null storage engine (anything you write to
 it
 disappears) |
 | EXAMPLE| NO   | Example storage
 engine |
 | ARCHIVE| YES  | Archive storage
 engine |
 | CSV| YES  | CSV storage
 engine |
 | ndbcluster | DISABLED | Clustered, fault-tolerant, memory-based
 tables |
 | FEDERATED  | YES  | Federated MySQL storage
 engine |
 | MRG_MYISAM | YES  | Collection of identical MyISAM
 tables  |
 | ISAM   | NO   | Obsolete storage
 engine|

 ++--++
 12 rows in set (0.00 sec)


 # /etc/mysql/my.cnf: The global mysql configuration file.
 # $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/files/my.cnf-4.1-r1,v 1.3
 2006/02/01 20:25:56 vivo Exp $
 #
 # $Revision:$
 # $Id:$

 # The following options will be passed to all MySQL clients
 [client]
 #password   =
 port= 3306
 socket  =
 /var/run/mysqld/mysqld.sock

 [mysql]
 character-sets-dir=utf8
 default-character-set=utf8

 [mysqladmin]
 character-sets-dir=utf8
 default-character-set=utf8

 [mysqlcheck]
 character-sets-dir=utf8
 default-character-set=utf8

 [mysqldump]
 character-sets-dir=utf8
 default-character-set=utf8

 [mysqlimport]
 character-sets-dir=utf8
 default-character-set=utf8

 [mysqlshow]
 character-sets-dir=utf8
 default-character-set=utf8

 [myisamchk]
 character-sets-dir=utf8
 default-character-set=utf8

 [myisampack]
 character-sets-dir=utf8


 # use [safe_mysqld] with mysql-3
 [mysqld_safe]
 err-log = /var/log/mysql/mysql.err

 # add a section [mysqld-4.1] or [mysqld-5.0] for specific configurations.
 [mysqld]
 old_passwords = false # inserted by debconf
 character-set-server= utf8
 default-character-set   = utf8
 user= mysql
 port= 3306
 socket  = /var/run/mysqld/mysqld.sock
 pid-file= /var/run/mysqld/mysqld.pid
 log-error   = /var/log/mysql/mysqld.err
 basedir = /usr
 #datadir= /var/lib/mysql
 skip-locking
 #set default_storage_engine=InnoDB
 key_buffer  = 384M
 max_allowed_packet  = 16M
 table_cache = 1024

 sort_buffer_size= 9M

 net_buffer_length   = 8K
 read_buffer_size= 2M
 read_rnd_buffer_size= 32M
 myisam_sort_buffer_size = 64M

 query_cache_type= 1
 query_cache_size= 100M

 language= /usr/share/mysql/english

 set-variable = max_connections=1024

 # Begin replication section
 log-bin=/var/db/db05-master-bin.log
 server-id=5

 # End replication section

 #security:
 #using localhost in connects use sockets by default
 #skip-networking
 #bind-address   = 127.0.0.1

 # Point the following paths to different dedicated disks
 tmpdir  = /tmp/
 #log-update = /path-to-dedicated-directory/hostname

 # you need debug use flag enabled to use this ones.
 # if needed 

Re: innodb disabled

2008-05-06 Thread Krishna Chandra Prajapati
Hi Juan,

I have verified directory permissions, its shown below.

linux76:~# ls -l /data/mysql/
total 535088
drwx-- 2 mysql mysql 20480 2008-05-04 23:44 dip
-rw-rw 1 mysql mysql  10485760 2007-12-23 01:21 ibdata1
-rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile0
-rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile1
drwx-- 2 mysql root   4096 2008-03-28 02:58 mysql

In error log file there is error.
debian-sys-maint error

The above error come while starting mysql for the first time. Then i have
given the permissions for debian sys-maint from  /etc/mysql/debian.cnf.
After that restart mysql don't gives any error. still innodb is disabled.

Thanks,
Prajapati

On Tue, May 6, 2008 at 7:03 AM, Juan Eduardo Moreno [EMAIL PROTECTED]
wrote:

 Hi,

 The InnoDB engine was disable because some ib_log files or Ibdata files,
 InnoDB can´t read. In some cases, could be a directory permissions or some
 error in creation of ib_logfiles when database is started. If you want , try
 to see in the error log file generated in order to see more details. If you
 don´t understand nothing in the error log file, please send this errors to
 the list.

 Regards,
 Juan



 On Tue, May 6, 2008 at 5:27 AM, Krishna Chandra Prajapati 
 [EMAIL PROTECTED] wrote:

  Hi all,
 
  I have change the data directory from /var/lib/mysql to /data/mysql
  directory and adding innodb_file_per_table. By doing this innodb storage
  engine get dissabled. my.cnf doesn't contains #skip-innodb. Is it's
  adding
  will enable or not
 
  HOW CAN I ENABLE INNODB
 
  mysql show engines;
 
  ++--++
  | Engine | Support  |
  Comment|
 
  ++--++
  | MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with great
  performance |
  | MEMORY | YES  | Hash based, stored in memory, useful for
  temporary
  tables  |
  | InnoDB | DISABLED | Supports transactions, row-level locking, and
  foreign keys |
  | BerkeleyDB | NO   | Supports transactions and page-level
  locking   |
  | BLACKHOLE  | NO   | /dev/null storage engine (anything you write
  to it
  disappears) |
  | EXAMPLE| NO   | Example storage
  engine |
  | ARCHIVE| YES  | Archive storage
  engine |
  | CSV| YES  | CSV storage
  engine |
  | ndbcluster | DISABLED | Clustered, fault-tolerant, memory-based
  tables |
  | FEDERATED  | YES  | Federated MySQL storage
  engine |
  | MRG_MYISAM | YES  | Collection of identical MyISAM
  tables  |
  | ISAM   | NO   | Obsolete storage
  engine|
 
  ++--++
  12 rows in set (0.00 sec)
 
 
  # /etc/mysql/my.cnf: The global mysql configuration file.
  # $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/files/my.cnf-4.1-r1,v
  1.3
  2006/02/01 20:25:56 vivo Exp $
  #
  # $Revision:$
  # $Id:$
 
  # The following options will be passed to all MySQL clients
  [client]
  #password   =
  port= 3306
  socket  =
  /var/run/mysqld/mysqld.sock
 
  [mysql]
  character-sets-dir=utf8
  default-character-set=utf8
 
  [mysqladmin]
  character-sets-dir=utf8
  default-character-set=utf8
 
  [mysqlcheck]
  character-sets-dir=utf8
  default-character-set=utf8
 
  [mysqldump]
  character-sets-dir=utf8
  default-character-set=utf8
 
  [mysqlimport]
  character-sets-dir=utf8
  default-character-set=utf8
 
  [mysqlshow]
  character-sets-dir=utf8
  default-character-set=utf8
 
  [myisamchk]
  character-sets-dir=utf8
  default-character-set=utf8
 
  [myisampack]
  character-sets-dir=utf8
 
 
  # use [safe_mysqld] with mysql-3
  [mysqld_safe]
  err-log =
  /var/log/mysql/mysql.err
 
  # add a section [mysqld-4.1] or [mysqld-5.0] for specific
  configurations.
  [mysqld]
  old_passwords = false # inserted by debconf
  character-set-server= utf8
  default-character-set   = utf8
  user= mysql
  port= 3306
  socket  = /var/run/mysqld/mysqld.sock
  pid-file= /var/run/mysqld/mysqld.pid
  log-error   = /var/log/mysql/mysqld.err
  basedir = /usr
  #datadir= /var/lib/mysql
  skip-locking
  #set default_storage_engine=InnoDB
  key_buffer  = 384M
  max_allowed_packet   

Re: innodb disabled

2008-05-06 Thread Juan Eduardo Moreno
Hi,

Can you send the error log file of mysql server in your machine?.

Regards,
Juan


On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:

 Hi Juan,

 I have verified directory permissions, its shown below.

 linux76:~# ls -l /data/mysql/
 total 535088
 drwx-- 2 mysql mysql 20480 2008-05-04 23:44 dip
 -rw-rw 1 mysql mysql  10485760 2007-12-23 01:21 ibdata1
 -rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile0
 -rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile1
 drwx-- 2 mysql root   4096 2008-03-28 02:58 mysql

 In error log file there is error.
 debian-sys-maint error

 The above error come while starting mysql for the first time. Then i have
 given the permissions for debian sys-maint from  /etc/mysql/debian.cnf.
 After that restart mysql don't gives any error. still innodb is disabled.

 Thanks,
 Prajapati

 On Tue, May 6, 2008 at 7:03 AM, Juan Eduardo Moreno 
 [EMAIL PROTECTED] wrote:

  Hi,
 
  The InnoDB engine was disable because some ib_log files or Ibdata
  files,  InnoDB can´t read. In some cases, could be a directory permissions
  or some error in creation of ib_logfiles when database is started. If you
  want , try to see in the error log file generated in order to see more
  details. If you don´t understand nothing in the error log file, please send
  this errors to the list.
 
  Regards,
  Juan
 
 
 
  On Tue, May 6, 2008 at 5:27 AM, Krishna Chandra Prajapati 
  [EMAIL PROTECTED] wrote:
 
   Hi all,
  
   I have change the data directory from /var/lib/mysql to /data/mysql
   directory and adding innodb_file_per_table. By doing this innodb
   storage
   engine get dissabled. my.cnf doesn't contains #skip-innodb. Is it's
   adding
   will enable or not
  
   HOW CAN I ENABLE INNODB
  
   mysql show engines;
  
   ++--++
   | Engine | Support  |
   Comment|
  
   ++--++
   | MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with great
   performance |
   | MEMORY | YES  | Hash based, stored in memory, useful for
   temporary
   tables  |
   | InnoDB | DISABLED | Supports transactions, row-level locking,
   and
   foreign keys |
   | BerkeleyDB | NO   | Supports transactions and page-level
   locking   |
   | BLACKHOLE  | NO   | /dev/null storage engine (anything you write
   to it
   disappears) |
   | EXAMPLE| NO   | Example storage
   engine |
   | ARCHIVE| YES  | Archive storage
   engine |
   | CSV| YES  | CSV storage
   engine |
   | ndbcluster | DISABLED | Clustered, fault-tolerant, memory-based
   tables |
   | FEDERATED  | YES  | Federated MySQL storage
   engine |
   | MRG_MYISAM | YES  | Collection of identical MyISAM
   tables  |
   | ISAM   | NO   | Obsolete storage
   engine|
  
   ++--++
   12 rows in set (0.00 sec)
  
  
   # /etc/mysql/my.cnf: The global mysql configuration file.
   # $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/files/my.cnf-4.1-r1,v
   1.3
   2006/02/01 20:25:56 vivo Exp $
   #
   # $Revision:$
   # $Id:$
  
   # The following options will be passed to all MySQL clients
   [client]
   #password   =
   port= 3306
   socket  =
   /var/run/mysqld/mysqld.sock
  
   [mysql]
   character-sets-dir=utf8
   default-character-set=utf8
  
   [mysqladmin]
   character-sets-dir=utf8
   default-character-set=utf8
  
   [mysqlcheck]
   character-sets-dir=utf8
   default-character-set=utf8
  
   [mysqldump]
   character-sets-dir=utf8
   default-character-set=utf8
  
   [mysqlimport]
   character-sets-dir=utf8
   default-character-set=utf8
  
   [mysqlshow]
   character-sets-dir=utf8
   default-character-set=utf8
  
   [myisamchk]
   character-sets-dir=utf8
   default-character-set=utf8
  
   [myisampack]
   character-sets-dir=utf8
  
  
   # use [safe_mysqld] with mysql-3
   [mysqld_safe]
   err-log =
   /var/log/mysql/mysql.err
  
   # add a section [mysqld-4.1] or [mysqld-5.0] for specific
   configurations.
   [mysqld]
   old_passwords = false # inserted by debconf
   character-set-server= utf8
   default-character-set   = utf8
   user= mysql
   port= 3306
   socket  = /var/run/mysqld/mysqld.sock
   pid-file   

RE: innodb disabled

2008-05-06 Thread Rolando Edwards
If you just created the /data/mysql folder and moved the ib* files to that 
folder from /var/lib/mysql, you may have to contend with the internal data 
dictionary with ibdata1.

You do the following:

1) Put the mysql data back into /var/lib/mysql
2) Configure my.cnf to set datadir=/var/lib/mysql
3) Restart mysqld

Once you put it back the way it was, then

4) mysqldump -h... -u... -p... --single-transaction --all-databases --routines 
--triggers  AllData.sql
5) Make /data/mysql TOTALLY EMPTY.
6) Configure my.cnf to set datadir=/data/mysql
7) Restart mysqld

At this point, mysqld will regenerate a new ibdata1 file with a clean internal 
data dictionary.

8) mysql -h... -u... -p...  AllData.sql

All data get put into this new data folder and will reload the internal data 
dictionary elements pertaining to its new location.

Moving MyISAM is simple. Moving InnoDB is a little more work but doing it this 
way ensures ibdata1 is in a proper state.

-Original Message-
From: Juan Eduardo Moreno [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 06, 2008 9:12 AM
To: Krishna Chandra Prajapati
Cc: mysql
Subject: Re: innodb disabled

Hi,

Can you send the error log file of mysql server in your machine?.

Regards,
Juan


On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:

 Hi Juan,

 I have verified directory permissions, its shown below.

 linux76:~# ls -l /data/mysql/
 total 535088
 drwx-- 2 mysql mysql 20480 2008-05-04 23:44 dip
 -rw-rw 1 mysql mysql  10485760 2007-12-23 01:21 ibdata1
 -rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile0
 -rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile1
 drwx-- 2 mysql root   4096 2008-03-28 02:58 mysql

 In error log file there is error.
 debian-sys-maint error

 The above error come while starting mysql for the first time. Then i have
 given the permissions for debian sys-maint from  /etc/mysql/debian.cnf.
 After that restart mysql don't gives any error. still innodb is disabled.

 Thanks,
 Prajapati

 On Tue, May 6, 2008 at 7:03 AM, Juan Eduardo Moreno 
 [EMAIL PROTECTED] wrote:

  Hi,
 
  The InnoDB engine was disable because some ib_log files or Ibdata
  files,  InnoDB can´t read. In some cases, could be a directory permissions
  or some error in creation of ib_logfiles when database is started. If you
  want , try to see in the error log file generated in order to see more
  details. If you don´t understand nothing in the error log file, please send
  this errors to the list.
 
  Regards,
  Juan
 
 
 
  On Tue, May 6, 2008 at 5:27 AM, Krishna Chandra Prajapati 
  [EMAIL PROTECTED] wrote:
 
   Hi all,
  
   I have change the data directory from /var/lib/mysql to /data/mysql
   directory and adding innodb_file_per_table. By doing this innodb
   storage
   engine get dissabled. my.cnf doesn't contains #skip-innodb. Is it's
   adding
   will enable or not
  
   HOW CAN I ENABLE INNODB
  
   mysql show engines;
  
   ++--++
   | Engine | Support  |
   Comment|
  
   ++--++
   | MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with great
   performance |
   | MEMORY | YES  | Hash based, stored in memory, useful for
   temporary
   tables  |
   | InnoDB | DISABLED | Supports transactions, row-level locking,
   and
   foreign keys |
   | BerkeleyDB | NO   | Supports transactions and page-level
   locking   |
   | BLACKHOLE  | NO   | /dev/null storage engine (anything you write
   to it
   disappears) |
   | EXAMPLE| NO   | Example storage
   engine |
   | ARCHIVE| YES  | Archive storage
   engine |
   | CSV| YES  | CSV storage
   engine |
   | ndbcluster | DISABLED | Clustered, fault-tolerant, memory-based
   tables |
   | FEDERATED  | YES  | Federated MySQL storage
   engine |
   | MRG_MYISAM | YES  | Collection of identical MyISAM
   tables  |
   | ISAM   | NO   | Obsolete storage
   engine|
  
   ++--++
   12 rows in set (0.00 sec)
  
  
   # /etc/mysql/my.cnf: The global mysql configuration file.
   # $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/files/my.cnf-4.1-r1,v
   1.3
   2006/02/01 20:25:56 vivo Exp $
   #
   # $Revision:$
   # $Id:$
  
   # The following options will be passed to all MySQL clients
   [client]
   #password   =
   port= 3306
   socket

Re: innodb disabled

2008-05-06 Thread Krishna Chandra Prajapati
Hi,

Currently error log file is empty. What else can be the reason for disable
innodb.


On Tue, May 6, 2008 at 9:11 AM, Juan Eduardo Moreno [EMAIL PROTECTED]
wrote:

 Hi,

 Can you send the error log file of mysql server in your machine?.

 Regards,
 Juan


 On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:
 
  Hi Juan,
 
  I have verified directory permissions, its shown below.
 
  linux76:~# ls -l /data/mysql/
  total 535088
  drwx-- 2 mysql mysql 20480 2008-05-04 23:44 dip
  -rw-rw 1 mysql mysql  10485760 2007-12-23 01:21 ibdata1
  -rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile0
  -rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile1
  drwx-- 2 mysql root   4096 2008-03-28 02:58 mysql
 
  In error log file there is error.
  debian-sys-maint error
 
  The above error come while starting mysql for the first time. Then i
  have given the permissions for debian sys-maint from  /etc/mysql/debian.cnf.
  After that restart mysql don't gives any error. still innodb is disabled.
 
  Thanks,
  Prajapati
 
  On Tue, May 6, 2008 at 7:03 AM, Juan Eduardo Moreno 
  [EMAIL PROTECTED] wrote:
 
   Hi,
  
   The InnoDB engine was disable because some ib_log files or Ibdata
   files,  InnoDB can´t read. In some cases, could be a directory permissions
   or some error in creation of ib_logfiles when database is started. If you
   want , try to see in the error log file generated in order to see more
   details. If you don´t understand nothing in the error log file, please 
   send
   this errors to the list.
  
   Regards,
   Juan
  
  
  
   On Tue, May 6, 2008 at 5:27 AM, Krishna Chandra Prajapati 
   [EMAIL PROTECTED] wrote:
  
Hi all,
   
I have change the data directory from /var/lib/mysql to /data/mysql
directory and adding innodb_file_per_table. By doing this innodb
storage
engine get dissabled. my.cnf doesn't contains #skip-innodb. Is
it's adding
will enable or not
   
HOW CAN I ENABLE INNODB
   
mysql show engines;
   
++--++
| Engine | Support  |
Comment|
   
++--++
| MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with great
performance |
| MEMORY | YES  | Hash based, stored in memory, useful for
temporary
tables  |
| InnoDB | DISABLED | Supports transactions, row-level locking,
and
foreign keys |
| BerkeleyDB | NO   | Supports transactions and page-level
locking   |
| BLACKHOLE  | NO   | /dev/null storage engine (anything you
write to it
disappears) |
| EXAMPLE| NO   | Example storage
engine |
| ARCHIVE| YES  | Archive storage
engine |
| CSV| YES  | CSV storage
engine |
| ndbcluster | DISABLED | Clustered, fault-tolerant, memory-based
tables |
| FEDERATED  | YES  | Federated MySQL storage
engine |
| MRG_MYISAM | YES  | Collection of identical MyISAM
tables  |
| ISAM   | NO   | Obsolete storage
engine|
   
++--++
12 rows in set (0.00 sec)
   
   
# /etc/mysql/my.cnf: The global mysql configuration file.
# $Header:
/var/cvsroot/gentoo-x86/dev-db/mysql/files/my.cnf-4.1-r1,v 1.3
2006/02/01 20:25:56 vivo Exp $
#
# $Revision:$
# $Id:$
   
# The following options will be passed to all MySQL clients
[client]
#password   =
port= 3306
socket  =
/var/run/mysqld/mysqld.sock
   
[mysql]
character-sets-dir=utf8
default-character-set=utf8
   
[mysqladmin]
character-sets-dir=utf8
default-character-set=utf8
   
[mysqlcheck]
character-sets-dir=utf8
default-character-set=utf8
   
[mysqldump]
character-sets-dir=utf8
default-character-set=utf8
   
[mysqlimport]
character-sets-dir=utf8
default-character-set=utf8
   
[mysqlshow]
character-sets-dir=utf8
default-character-set=utf8
   
[myisamchk]
character-sets-dir=utf8
default-character-set=utf8
   
[myisampack]
character-sets-dir=utf8
   
   
# use [safe_mysqld] with mysql-3
[mysqld_safe]
err-log =
/var/log/mysql/mysql.err
   
# add a section [mysqld-4.1] or [mysqld-5.0] for specific

Re: innodb disabled

2008-05-06 Thread Krishna Chandra Prajapati
Hi,

What ever you have written i did the same thing, Yet innodb get disabled,


On Tue, May 6, 2008 at 11:24 AM, Rolando Edwards [EMAIL PROTECTED]
wrote:

 If you just created the /data/mysql folder and moved the ib* files to that
 folder from /var/lib/mysql, you may have to contend with the internal data
 dictionary with ibdata1.

 You do the following:

 1) Put the mysql data back into /var/lib/mysql
 2) Configure my.cnf to set datadir=/var/lib/mysql
 3) Restart mysqld

 Once you put it back the way it was, then

 4) mysqldump -h... -u... -p... --single-transaction --all-databases
 --routines --triggers  AllData.sql
 5) Make /data/mysql TOTALLY EMPTY.
 6) Configure my.cnf to set datadir=/data/mysql
 7) Restart mysqld

 At this point, mysqld will regenerate a new ibdata1 file with a clean
 internal data dictionary.

 8) mysql -h... -u... -p...  AllData.sql

 All data get put into this new data folder and will reload the internal
 data dictionary elements pertaining to its new location.

 Moving MyISAM is simple. Moving InnoDB is a little more work but doing it
 this way ensures ibdata1 is in a proper state.

 -Original Message-
 From: Juan Eduardo Moreno [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, May 06, 2008 9:12 AM
 To: Krishna Chandra Prajapati
 Cc: mysql
 Subject: Re: innodb disabled

 Hi,

 Can you send the error log file of mysql server in your machine?.

 Regards,
 Juan


 On 5/6/08, Krishna Chandra Prajapati [EMAIL PROTECTED] wrote:
 
  Hi Juan,
 
  I have verified directory permissions, its shown below.
 
  linux76:~# ls -l /data/mysql/
  total 535088
  drwx-- 2 mysql mysql 20480 2008-05-04 23:44 dip
  -rw-rw 1 mysql mysql  10485760 2007-12-23 01:21 ibdata1
  -rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile0
  -rw-rw 1 mysql mysql 268435456 2008-01-13 01:17 ib_logfile1
  drwx-- 2 mysql root   4096 2008-03-28 02:58 mysql
 
  In error log file there is error.
  debian-sys-maint error
 
  The above error come while starting mysql for the first time. Then i
 have
  given the permissions for debian sys-maint from  /etc/mysql/debian.cnf.
  After that restart mysql don't gives any error. still innodb is
 disabled.
 
  Thanks,
  Prajapati
 
  On Tue, May 6, 2008 at 7:03 AM, Juan Eduardo Moreno 
  [EMAIL PROTECTED] wrote:
 
   Hi,
  
   The InnoDB engine was disable because some ib_log files or Ibdata
   files,  InnoDB can´t read. In some cases, could be a directory
 permissions
   or some error in creation of ib_logfiles when database is started. If
 you
   want , try to see in the error log file generated in order to see more
   details. If you don´t understand nothing in the error log file, please
 send
   this errors to the list.
  
   Regards,
   Juan
  
  
  
   On Tue, May 6, 2008 at 5:27 AM, Krishna Chandra Prajapati 
   [EMAIL PROTECTED] wrote:
  
Hi all,
   
I have change the data directory from /var/lib/mysql to /data/mysql
directory and adding innodb_file_per_table. By doing this innodb
storage
engine get dissabled. my.cnf doesn't contains #skip-innodb. Is
 it's
adding
will enable or not
   
HOW CAN I ENABLE INNODB
   
mysql show engines;
   
   
 ++--++
| Engine | Support  |
Comment|
   
   
 ++--++
| MyISAM | DEFAULT  | Default engine as of MySQL 3.23 with great
performance |
| MEMORY | YES  | Hash based, stored in memory, useful for
temporary
tables  |
| InnoDB | DISABLED | Supports transactions, row-level locking,
and
foreign keys |
| BerkeleyDB | NO   | Supports transactions and page-level
locking   |
| BLACKHOLE  | NO   | /dev/null storage engine (anything you
 write
to it
disappears) |
| EXAMPLE| NO   | Example storage
engine |
| ARCHIVE| YES  | Archive storage
engine |
| CSV| YES  | CSV storage
engine |
| ndbcluster | DISABLED | Clustered, fault-tolerant, memory-based
tables |
| FEDERATED  | YES  | Federated MySQL storage
engine |
| MRG_MYISAM | YES  | Collection of identical MyISAM
tables  |
| ISAM   | NO   | Obsolete storage
engine|
   
   
 ++--++
12 rows in set (0.00 sec)
   
   
# /etc/mysql/my.cnf: The global mysql configuration file.
# $Header:
 /var/cvsroot/gentoo-x86/dev-db/mysql/files/my.cnf-4.1-r1,v
1.3
2006/02/01 20:25:56

Re: InnoDB Disabled?

2007-05-19 Thread Jesse
Found the problem.  After searching for a while, I found where someone 
deleted the ib_logfile*.* in the data directory.  I did that, and that 
cleaned it up.


Jesse

- Original Message - 
From: Jesse [EMAIL PROTECTED]

To: MySQL List mysql@lists.mysql.com
Sent: Saturday, May 19, 2007 4:22 PM
Subject: InnoDB Disabled?


I'm running version 5.0.22-community-nt of MySQL.  For some reason, InnoDB 
is disabled.  I have it installed on my XP Pro machine, and it's working 
fine, and one on a Windows 2003 server, which is working fine, and another 
on a Windows 2003 server, which is the one with a problem.


At one point, this server was a replication slave.  I recently stopped the 
replication process so I could use it as a separate server.  I didn't 
notice any issues with it until this one.  When I try to make a table an 
InnoDB, it's not available as a selection in SQL Manager.  When I do a 
SHOW ENGINES, InnoDB is listed as DISABLED.  when I edit My.ini and try to 
make InnoDB the default engine, then the MySQL Service will not restart. 
I've come to rely on InnoDB, because it allows foreign keys.  Otherwise, I 
have to write queries to remove child records manually


Does anyone have any suggestions?

Thanks,
Jesse

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]





--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]