opt/mysql/my.cnf
Juergen Daubert cec6297154 [notify] mysql: update to 5.5.9
even though we have a major new version with this release the
update is mostly backwards compatible, but please note:

- new runtime dependency opt/libaio
- new buildtime dependency cmake
- ImmoDB is now the default database engine, the supplied
  /etc/my.conf still sets MyISAM as the default and skips
  InnoDB. Don't reject /etc/my.cnf without inspection.
- after the upgrade fix or rejmerge /etc/my.cnf, start
  the server and run mysql_upgrade to adjust the mysql
  system database tables.
2011-02-07 18:34:05 +01:00

24 lines
371 B
INI

#
# /etc/my.cnf
#
[mysqld]
datadir = /var/lib/mysql
user = mysql
pid-file = /var/run/mysqld.pid
socket = /tmp/mysql.sock
port = 3306
general_log = 1
general_log_file = /var/log/mysqld.log
skip-networking
skip-innodb
default-storage-engine = MYISAM
[client]
socket = /tmp/mysql.sock
port = 3306
# End of file