Re: Django + Postgressql - Mailing list pgsql-novice

From SUNDAY A. OLUTAYO
Subject Re: Django + Postgressql
Date
Msg-id 1500301495.2331.1283263923355.JavaMail.root@mail
Whole thread Raw
In response to Django + Postgressql  (Robert Dean <robbington@hotmail.co.uk>)
List pgsql-novice
You do not need to be a root to login nor create sys account for postgres just switch user to postgres e.g
sudo -u postgres psql template1

The template1 could an exiting db you are login into, it a default template you use before create a user db.

Sunday Olutayo

 
 
I seem to be having problems configuring Postgres with Django and was wondering if someone could help me as I cant find any tutorials that fit my problem.
 
First, I seem to be having issues with my postgres permissions/or understand them.
 
Trying to connect to a database in root I get "psql: FATAL:  role "root" does not exist"
 
Also after trying this I get:
postgres@myvps:/root$ psql -d template1 -c "ALTER USER postgres WITH PASSWORD 'mypassword';"
could not change directory to "/root"
ALTER ROLE
postgres@myvps:/root$ createdb mytestdb
could not change directory to "/root"
createdb: database creation failed: ERROR:  source database "template1" is being accessed by other users
DETAIL:  There are 1 other session(s) using the database.
 
Can someone help me figure this out? Why can it not change directory to root and why is template1 being accesed by another user?
 
Thanks in advance
 
Rob

pgsql-novice by date:

Previous
From: Tom Lane
Date:
Subject: Re: Function Returning Table/Record
Next
From: Tom Lane
Date:
Subject: Re: Django + Postgressql