MySQL installieren (Linux)

Aus Tutorials
Zur Navigation springen Zur Suche springen

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>


Zurück zu Ubuntu