Go to file
Michal Hrusecky (old before rename to _miska_) 7c7ed7d3df Accepting request 124326 from home:achaios:branches:server:database
dialog is a client side plugin. It is loaded automatically by the client library. Installing it on a client machine should not pull the entire server package.

OBS-URL: https://build.opensuse.org/request/show/124326
OBS-URL: https://build.opensuse.org/package/show/server:database/mariadb?expand=0&rev=82
2012-06-12 07:21:22 +00:00
.gitattributes Accepting request 39217 from server:database 2010-05-05 21:42:29 +00:00
.gitignore Accepting request 39217 from server:database 2010-05-05 21:42:29 +00:00
baselibs.conf - migrated to MariaDB 5.5.23, see: 2012-04-15 09:06:13 +00:00
build.inc Accepting request 115149 from home:achaios:branches:server:database 2012-04-24 09:27:35 +00:00
configuration-tweaks.tar.bz2 fix 2012-04-15 12:51:13 +00:00
install.inc update 2012-03-12 16:06:36 +00:00
mariadb-5.5.23.tar.bz2 - migrated to MariaDB 5.5.23, see: 2012-04-15 09:06:13 +00:00
mariadb.changes Accepting request 124326 from home:achaios:branches:server:database 2012-06-12 07:21:22 +00:00
mariadb.spec Accepting request 124326 from home:achaios:branches:server:database 2012-06-12 07:21:22 +00:00
mysql-patches.tar.bz2 Accepting request 115300 from home:k0da:ppc 2012-04-25 12:47:26 +00:00
mysql.SuSEfirewall2 Accepting request 39217 from server:database 2010-05-05 21:42:29 +00:00
rc.mysql-multi remove runlevel 2 2011-03-02 23:41:47 +00:00
README.debug Accepting request 39217 from server:database 2010-05-05 21:42:29 +00:00
README.SuSE Accepting request 39217 from server:database 2010-05-05 21:42:29 +00:00
series Accepting request 115300 from home:k0da:ppc 2012-04-25 12:47:26 +00:00
suse-test-run Accepting request 39217 from server:database 2010-05-05 21:42:29 +00:00

Notes about MySQL 5.1 package:
==============================

With MySQL 5.1 package we introduced some changes you may like to know. Most of
them will affect you only if you are upgrading from previous version and you
did some changes to your configuration.

1) Plugins:
===========

One of the new features in MySQL 5.1 is support for plugins. So some of the
storage engines are now shipped like that. You can use following plugins:

 - archive
 - blackhole
 - federated
 - example

InnoDB is still compiled as internal part of MySQL. If you are upgrading from
version 5.0 or if this is your first installation of MySQL 5.1, all plugins
will be enabled by default and you can disable them manually later (see
http://dev.mysql.com/doc/refman/5.1/en/uninstall-plugin.html).

With this change you need to remove skip-federated option from your my.cnf file
if you have changed it manually. This option was there by default in previous
versions of MySQL.

2) File locations:
==================

There were some changes in files locations. Most of them were made in the
default configuration file so if you are experiencing problems and you have
made some manual adjustments to your /etc/my.cnf, try to merge this file with
/etc/my.cnf.rpmnew.

File locations changes:
 - MySQL socket file and pid file were moved from /var/lib/mysql to more
   reasonable location ( /var/run/mysql ) by default.
 - MySQL log files are in /var/log/mysql.

3) BerkeleyDB:
==============

MySQL no longer contains BerkeleyDB as storage engine. There is no fix for that
and if you used it before, you have to migrate your data to different storage
engine BEFORE updating. This can be done for example using following command:

	ALTER TABLE foo ENGINE = INNODB;

4) MySQL Upgrade Log
====================

If you missed messages displayed during automatic MySQL database upgrade, you
can find them from now on in

	/var/log/mysql/mysqld-upgrade.log