The content of the my.cnf (Master)

   [client]
   port=26001
   socket=/tmp/mysql.prod.sock

   [mysqld]
   port=26001
   socket=/tmp/mysql.prod.sock
   pid-file=/nas/prod/app/mysql/etc/prod.pid
   datadir=/store/prod/mysql/data
   log-bin
   server-id=1

   [mysql.server]
   basedir=/nas/prod/app/mysql/current

The my.cnf of the replika:

   [client]
   port=26000
   socket=/tmp/mysql.replika.sock

   [mysqld]
   port=26000
   socket=/tmp/mysql.replika.sock
   pid-file=/nas/prod/app/mysql/etc/replika.pid
   datadir=/nas/prod/store/mysql/data
   master-host= ... mysql server name
   master-user= ... mysql replika user
   master-password= ... mysql replika user password
   master-port=26001
   server-id=2

I don't see any InnoDB settings...? Both, Master and Replika have the InnoDB Files in the DataDir...

Thanks,
Stephan

Jeremy Zawodny wrote:

On Thu, Mar 27, 2003 at 10:55:28AM +0100, Stephan Amann wrote:


The InnoDB files are created in the standard data directory; I did not configure any InnoDB Option, since we are not currently using InnoDB.

What's wrong? Why do I get InnoDB datafiles (ib_arch_log_0000000000, ib_logfile0, ib_logfile1, ibdata1) with only MyISAM Tables?



Please post your my.cnf file. There is probably a setting in there which specifies the innodb options.

If you don't want to use InnoDB at all, simply add:

skip-innodb

to your my.cnf file.

Jeremy




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



Reply via email to