MySQL installieren (Linux)
Version vom 10. März 2016, 20:44 Uhr von Martin Kirner (Diskussion | Beiträge)
Installation
sudo apt-get install mysql-server sudo apt-get install php5-mysql
Netzwerkzugriff
Um auch von einem anderem Rechner auf die Datenbank zugreifen zu können, muss noch bind-address = 127.0.0.1
auf die IP-Adresse der Netzwerkschnittstelle umgestellt werden:
# Instead of skip-networking the default is now to listen only on # localhost which is more compatible and is not less secure. bind-address = <static IP address>
Werkzeuge
phpMyAdmin
Aktuellen Downloadpfad unter https://www.phpmyadmin.net/downloads/ nachschauen.
https://files.phpmyadmin.net/phpMyAdmin/4.5.5.1/phpMyAdmin-4.5.5.1-all-languages.tar.gz tar -xzvf phpMyAdmin-*.*.*.*.tar.gz
Zurück zu Ubuntu