MySQL installieren (Linux): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
Zeile 23: Zeile 23:
== Werkzeuge ==
== Werkzeuge ==
=== phpMyAdmin ===
=== phpMyAdmin ===
Aktuellen Downloadpfad unter  [https://www.phpmyadmin.net/downloads/ https://www.phpmyadmin.net/downloads/] nachschauen.
<pre style="white-space: pre-wrap;  
<pre style="white-space: pre-wrap;  
white-space: -moz-pre-wrap;  
white-space: -moz-pre-wrap;  
Zeile 28: Zeile 29:
white-space: -o-pre-wrap;  
white-space: -o-pre-wrap;  
word-wrap: break-word;">
word-wrap: break-word;">
https://files.phpmyadmin.net/phpMyAdmin/4.5.5.1/phpMyAdmin-4.5.5.1-all-languages.tar.gz
tar -xzvf phpMyAdmin-*.*.*.*.tar.gz
tar -xzvf phpMyAdmin-*.*.*.*.tar.gz
</pre>
</pre>

Version vom 10. März 2016, 21:44 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

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