Re: Postgres connection error

2023-10-10 Thread ASAMOAH EMMANUEL
I often come across this issue, run this code but before you do, log in into the postgres shell with a database with all privileges, let's say postgre user and switch with your new database created and run: GRANT CREATE ON SCHEMA public TO your_user; On Tue, Oct 10, 2023 at 3:47 PM Joyce Mumbi wr

Re: Postgres connection error

2023-10-10 Thread Joyce Mumbi
Hello i have problem in deploying my back-end work could you kindly help me out Thank you [image: Mailtrack] Sender notified by Mailtrack

Re: Postgres connection error

2023-10-09 Thread Nana Bright Atsiatorme
ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'knapds', 'USER': 'system', 'PASSWORD': 'password', 'HOST': 'localhost', 'PORT': 5432, Install pgadmin and run with the setup with the credentials above Make sure the it running the apply the migra

Re: Postgres connection error

2023-10-08 Thread Pranav Sawant
- > (Unsigned mail from my phone) > > > > Original message > From: Pranav Sawant > Date: 9/10/23 01:24 (GMT+10:00) > To: Django users > Subject: Postgres connection error > > *Hey all, I am new to django* > *and i want to connect to postgresql * >

Re: Postgres connection error

2023-10-08 Thread Sebastian Jung
GRANT ALL PRIVILEGES ON DATABASE knapds TO system; Don't give all rights. This is very strange in PostgreSQL Pranav Sawant schrieb am So., 8. Okt. 2023, 16:24: > *Hey all, I am new to django* > *and i want to connect to postgresql * > > *what I have doing:* > > *At postgres plsql* > CREATE DAT

RE: Postgres connection error

2023-10-08 Thread Mike Dewhirst
nav Sawant Date: 9/10/23 01:24 (GMT+10:00) To: Django users Subject: Postgres connection error Hey all, I am new to djangoand i want to connect to postgresql what I have doing:At postgres plsqlCREATE DATABASE knapds; CREATE USER system WITH PASSWORD 'password'; ALTER ROLE system SE

Postgres connection error

2023-10-08 Thread Pranav Sawant
*Hey all, I am new to django* *and i want to connect to postgresql * *what I have doing:* *At postgres plsql* CREATE DATABASE knapds; CREATE USER system WITH PASSWORD 'password'; ALTER ROLE system SET client_encoding TO 'utf8'; ALTER ROLE system SET default_transaction_isolation TO 'read commit