PostgreSQL 10 Admin Guide Debian
Hi! This Article Resume the Start-Up Procedure Following the Installation for Getting-Started with PostgreSQL 10 Administration on Debian Linux.
And this Debian PostgreSQL 10 Admin Guide let you make the First, Steps Easily with PostgreSQL 10 Database.
Moreover, the Procedure Described is Expressly Resumed in Few Words to Give Focus to the Essential Commands Needed to the Initial SetUp.
Finally, the post include also information on Installing PostgreSQL 10 on Debian and PostgreSQL 10 Online Docs.
-
How to Install PostgreSQL 10 Server on Debian
PostgreSQL 10 Debian Install -
Set the postgres User Password
sudo passwd postgres
Give a Password to the postgres User Account.
If Got “User is Not in Sudoers file” then see: How to Enable sudo -
Login as the postgres User.
su postgres
-
Create a PostgreSQL test Database.
createdb test
If your Database is Not Already Started or the psql Command do Not Works look the Troubleshooting Here Below.
How to StartUp the PostgreSQL 10 Server:
-
Access PostgreSQL Database CLI
First, Set the postgres Database’s Password:psql template1
And then on the template1# Prompt:
password postgres
And Exit with:
\q
Then to Access test Database:
psql test
-
Then to Create a Table.
CREATE TABLE account(/nuser_id serial PRIMARY KEY,/nusername VARCHAR (50) UNIQUE NOT NULL );
-
Next to List Tables.
\dt
-
Again Listing Databases.
\l
‘q’ to Quit.
-
For More See PostgreSQL 10 Online Documentation
-
Finally, to Delete test Database.
dropdb test
-
For PostgreSQL 10 GUI Administration Install PgAdmin 4
PgAdmin4 on Debian Install