Umbenannt & aufgesplittet

This commit is contained in:
2017-04-29 12:03:48 +02:00
commit 775413078b
12 changed files with 834 additions and 0 deletions

23
mysql-externer-zugriff.md Normal file
View File

@ -0,0 +1,23 @@
## Zugriff auf MySQL von außerhalb
**MySQL Config-Datei bearbeiten**
```xml
sudo nano /etc/mysql/my.conf
```
->Suche (CTRL+W) nach "bind", Zeile auskommentieren
**MySQL neu starten**
```xml
sudo /etc/init.d/mysql restart
```
**Rechte in der DB setzen**
```xml
mysql -p -u root
use ***db***;
GRANT ALL ON *.* TO root@'%' IDENTIFIED BY 'RootPassword';
exit
```