PostgreSQL (Ubuntu): Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(→Links) |
|||
Zeile 6: | Zeile 6: | ||
<pre> | <pre> | ||
sudo apt-get install postgresql postgresql-client | sudo apt-get install postgresql postgresql-client | ||
</pre> | |||
== Konfiguration == | |||
=== Admin-Passwort einrichten === | |||
<pre> | |||
sudo -u postgres psql | |||
\password postgres | |||
\q | |||
</pre> | </pre> | ||
Version vom 1. Mai 2019, 11:24 Uhr
Noch in Bearbeitung
Installation
sudo apt-get install postgresql postgresql-client
Konfiguration
Admin-Passwort einrichten
sudo -u postgres psql \password postgres \q
Links
https://wiki.ubuntuusers.de/PostgreSQL/
Zurück zu Ubuntu