Comment 1 for bug 794391

Revision history for this message
Alex Yurchenko (ayurchen) wrote :

Still the mystery remains. These are the first two lines in the log:

110705 9:08:41 [ERROR] Can't find messagefile '/tmp/galera0/mysql/share/mysql/english/errmsg.sys'
110705 9:08:41 [Note] WSREP: wsrep_load(): loading provider library '/tmp/galera0/galera/lib/libgalera_smm.so'

The first comes from mysqld.cc:4942:

  if (init_common_variables(MYSQL_CONFIG_NAME,
                                           argc, argv, load_default_groups))
    unireg_abort(1);

and should result in immediate abort. The second, however, comes from mysqld.cc:5040:

  if (init_server_components())
    unireg_abort(1);

which seems to complete successfully:

110705 9:08:42 InnoDB: Initializing buffer pool, size = 595.0M
110705 9:08:42 InnoDB: Completed initialization of buffer pool
110705 9:08:43 InnoDB: Started; log sequence number 6 2033279309

but instead is followed by unireg_abort():

110705 9:08:43 [ERROR] Aborting

What is going on there? What we should be seeing is:

110705 9:08:41 [ERROR] Can't find messagefile '/tmp/galera0/mysql/share/mysql/english/errmsg.sys'
110705 9:08:43 [ERROR] Aborting