This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
mysql [2012/01/11 23:20] mh created |
mysql [2014/09/10 21:22] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | Datenbank anlegen | ||
| + | |||
| + | <code> | ||
| + | > mysql --user=root mysql --password='pwd' | ||
| + | |||
| + | mysql> create database wordpress; | ||
| + | |||
| + | |||
| + | mysql> GRANT ALL PRIVILEGES ON wordpress.* TO wp@localhost IDENTIFIED BY 'pwd' WITH GRANT OPTION; | ||
| + | Query OK, 0 rows affected (0.03 sec) | ||
| + | </code> | ||
| + | |||
| + | |||
| Kaputte/gecrashte mysql Tables reparieren | Kaputte/gecrashte mysql Tables reparieren | ||