MySQL: Unterschied zwischen den Versionen

Aus crazylinux.de
Zur Navigation springen Zur Suche springen
(typo)
K (http://mysqltuner.com/)
 
(7 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
=Konfiguration=
= Konfiguration  =
==Volltextsuche==
Damit die Volltextsuche bereits ab 3 Buchstaben indiziert, ist ein Eintrag in /etc/mysql/my.cnf notwendig (http://dev.mysql.com/doc/refman/4.1/en/fulltext-fine-tuning.html):
[mysqld]
  ft_min_word_len=3


== Custom Settings ==


=Clients=
<source lang="">#/etc/mysql/conf.d/settings.cnf
==MySQL QueryBrowser==
[mysqld]
http://dev.mysql.com/downloads/query-browser/1.1.html
#
# * Basic Settings
#
datadir        = /srv/mysql/datadir55


==SQLManager==
ft_min_word_len=3
http://www.sqlmanager.net/products/mysql/manager


==Navicat==
table_cache            = 256</source>
http://www.navicat.de/


==SQLyog==
==Secure Installation==
  http://www.webyog.com/
<source lang="bash">/usr/bin/mysqladmin -u root -h hostname password 'new-password'
 
Alternatively you can run:
/usr/bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default. This is
strongly recommended for production servers.</source>
 
== Apparmor config ==
<source lang="bash">#/etc/apparmor.d/usr.sbin.mysqld
#find and replace
 
  #/var/lib/mysql/ r,
  #/var/lib/mysql/** rwk,
  /srv/mysql/datadir55/ r,
  /srv/mysql/datadir55/** rwk,</source>
 
 
=Backup=
*[[MySQLDumper]]
*http://hollandbackup.org/
*[http://www.lenzg.net/mylvmbackup/ mylvmbackup is a tool for quickly creating full physical backups of a MySQLserver's data files.]
 
 
= Clients =
*[http://dev.mysql.com/downloads/tools/workbench/ MySQL Workbench]
*[http://www.navicat.de/ Navicat]
 
=Links=
*[http://www.thomas-krenn.com/de/wiki/MySQL_Performance_Tuning MySQL Performance Tuning]
*[http://mysqltuner.com/ MySQL Tuner]
 
[[Kategorie:Datenbank]]
[[Kategorie:MySQL]]

Aktuelle Version vom 18. Dezember 2015, 22:37 Uhr

Konfiguration

Custom Settings

#/etc/mysql/conf.d/settings.cnf
[mysqld]
#
# * Basic Settings
#
datadir         = /srv/mysql/datadir55

ft_min_word_len=3

table_cache             = 256

Secure Installation

/usr/bin/mysqladmin -u root -h hostname password 'new-password'

Alternatively you can run:
/usr/bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

Apparmor config

#/etc/apparmor.d/usr.sbin.mysqld
#find and replace

  #/var/lib/mysql/ r,
  #/var/lib/mysql/** rwk,
  /srv/mysql/datadir55/ r,
  /srv/mysql/datadir55/** rwk,


Backup


Clients

Links