Re: syncdb just hangs/tutorial

2011-04-12 Thread nishant kashyap
Check out once properly yor connection(Host, username,password,port) in setting.py On Apr 11, 6:08 pm, L Corbani wrote: > I am new to django, and am running the tutorial.  I have edited > 'settings.py' and am running "python manage.py runserver". > > When I run the server and

Re: syncdb just hangs/tutorial

2011-04-12 Thread Sam Walters
Postgres uses a unix style user model. Its intuitive once you understand it: I would seriously advise you to read the tutorial for this: http://www.postgresql.org/docs/manuals/ FInd out the version you are using too. Specifically: 1.2. Architectural Fundamentals onwards. That error just means

Re: syncdb just hangs/tutorial

2011-04-11 Thread L Corbani
Shawn, In fact, it was an issue with my database settings. I changed the host and now it is working. Thanks for helping me shift my brain a bit this morning :) Lori On Apr 11, 9:31 am, Shawn Milochik wrote: > Try it with sqlite3. If that works, then the problem is

Re: syncdb just hangs/tutorial

2011-04-11 Thread jsierra
Can you provide information on what OS you are using? It may just be a configuration issue. I had to edit the postgresql pg_hba.conf file on my ubuntu setup to make it less strict (for development purposes). https://help.ubuntu.com/community/PostgreSQL read on 'managing the server' section to get

Re: syncdb just hangs/tutorial

2011-04-11 Thread Shawn Milochik
Try it with sqlite3. If that works, then the problem is probably with your Postgres setup. Try interacting with Postgres using the psql command. It's likely that you have some problem in the configuration. -- You received this message because you are subscribed to the Google Groups "Django

syncdb just hangs/tutorial

2011-04-11 Thread L Corbani
I am new to django, and am running the tutorial. I have edited 'settings.py' and am running "python manage.py runserver". When I run the server and then call "python manage.py syncdb" against my Postgres database, everything just hangs. If I kill 'runserver', then I get this message from