MySQL

MySQL-Datenbank

Projektseite & Download

http://www.mysql.com

MySQL-Web-Administration

MyWebSQL

Alternative zu phpMyAdmin

Projektseite & Download
http://mywebsql.net

osi_standard_logo-48x55

Installation

Manuelle Installation

1. Download des No-Install-Paketes
2. Kofiguationsdatei erstellen

[MySQL-Verzeichnis]/bin/my.ini

[mysqld]
# installation directory
basedir="[MYSQL-DIR]/mysql/"
# data directory
datadir="[DATABASE-DIR]"

3. MySQL starten

cmd> mysqld.exe

4. In einer zweiten Konsole die MySQL-Eingabe als ‚root‘ öffnen

cmd> mysql -u root

5. Root-Passwort setzen

mysql> UPDATE mysql.user SET password=PASSWORD("my-new-password") WHERE User='root';
FLUSH PRIVILEGES;

#MySQL-Eingabekonsole beenden
mysql> exit

6. MySQL beenden

cmd> mysqladmin.exe -u root shutdown

MySQL als Dienst installieren/entfenen

cmd> mysqld --install (--install-manual)

//nicht automatisch starten

cmd> mysqld --remove

Dienst starten und beenden

net start/stop "MySQL"

Referenzhandbuch

Tutorials – Manuelle Installation von MySQL

http://www.sitepoint.com/how-to-install-mysql/
http://richardsower.blogspot.de/2012/04/how-to-do-manual-install-of-mysql-on.html

http://www.devside.net/guides/windows/mysql

Troubleshooting
http://dev.mysql.com/doc/refman/5.1/de/windows-troubleshooting.html

Installation mit Installer

MySQL-Windows (Installer & Tools)
http://dev.mysql.com/downloads/windows/installer/

Administration

Kommandozeilentool

mysqladmin.exe

phpMyAdmin (Der Quasi-Standard)
http://www.phpmyadmin.net

Alternativen

Links