Hello list!

I have installed MySQL  3.23.39 on Compaq Tru64 UNIX V5.1. I need to run two
servers on the same machine, one as master and another as slave. The
database used is InnoDB, I need to replicate only one database.
I start successfully the master. When I start the slave it go up and down.
The slave log file contains the following message:

011205 12:25:08  mysqld restarted
011205 12:25:10  InnoDB: Started
/asp/.buttami/mysql-max-3.23.39-dec-osf5.1-alphaev6/bin/mysqld: ready for
connections
mysqld got signal 11;
This could be because you hit a bug. It is also possible that this binary
or one of the libraries it was linked agaist 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

key_buffer_size=8388600
record_buffer=131072
sort_buffer=2097144
max_used_connections=0
max_connections=100
threads_connected=0
It is possible that mysqld could use up to
key_buffer_size + (record_buffer + sort_buffer)*max_connections = 225791 K
bytes of memory
Hope that's ok, if not, decrease some variables in the equation       


This is the Slave my.cnf:

[mysqld]
port=3307
socket=/tmp/mysqld-repl.sock
server-id=2
master-host=semarmx0031
master-port=3306
replicate-do-db=innodb
# You can write your other MySQL server options here
# ...
#
innodb_data_file_path = ibdata1:20M;ibdata2:20M
innodb_data_home_dir =
/asp/.buttami/mysql-max-3.23.39-dec-osf5.1-alphaev6/replica/innodb


This is the Master my.cnf

[mysqld]
port=3306
server-id=1
log-bin=/asp/.buttami/mysql-max-3.23.39-dec-osf5.1-alphaev6/data/innodb/repl
ication.log
log-bin-index=/asp/.buttami/mysql-max-3.23.39-dec-osf5.1-alphaev6/data/innod
b/db.index.log
binlog-do-db=innodb
# You can write your other MySQL server options here
# ...
#
innodb_data_file_path = ibdata1:20M;ibdata2:20M
innodb_data_home_dir =
/asp/.buttami/mysql-max-3.23.39-dec-osf5.1-alphaev6/data/innodb


Any comments, suggestions? 
  Thank you very much in advance.

Raffaella Graziano

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to