PostgreSQL (Ubuntu): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
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, 12: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