MySQL installieren (Linux): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
Zeile 19: Zeile 19:
# localhost which is more compatible and is not less secure.
# localhost which is more compatible and is not less secure.
bind-address            = <static IP address>
bind-address            = <static IP address>
</pre>
== Werkzeuge ==
=== phpMyAdmin ===
<pre style="white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;">
tar -xzvf phpMyAdmin-*.*.*.*.tar.gz
</pre>
</pre>




Zurück zu [[Ubuntu]]
Zurück zu [[Ubuntu]]

Version vom 10. März 2016, 21:41 Uhr

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

tar -xzvf phpMyAdmin-*.*.*.*.tar.gz


Zurück zu Ubuntu