Opened 16 years ago

Closed 16 years ago

#8978 closed (fixed)

python manage.py dbshell unhelpful error when postgresql-client not installed

Reported by: Aaron C. de Bruyn Owned by: Adrian Holovaty
Component: Core (Management commands) Version: 1.0
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Karen Tracey)

If you try to start a dbshell and don't have the postgresql client installed, you get an unhelpful error message:

aaron@hoth:~/code/sfd$ ./manage.py dbshell
Traceback (most recent call last):
  File "./manage.py", line 11, in <module>
    execute_manager(settings)
  File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 340, in execute_manager
    utility.execute()
  File "/usr/lib/python2.5/site-packages/django/core/management/__init__.py", line 295, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/usr/lib/python2.5/site-packages/django/core/management/base.py", line 77, in run_from_argv
    self.execute(*args, **options.__dict__)
  File "/usr/lib/python2.5/site-packages/django/core/management/base.py", line 96, in execute
    output = self.handle(*args, **options)
  File "/usr/lib/python2.5/site-packages/django/core/management/base.py", line 178, in handle
    return self.handle_noargs(**options)
  File "/usr/lib/python2.5/site-packages/django/core/management/commands/dbshell.py", line 10, in handle_noargs
    connection.client.runshell()
  File "/usr/lib/python2.5/site-packages/django/db/backends/postgresql/client.py", line 17, in runshell
    os.execvp('psql', args)
  File "/usr/lib/python2.5/os.py", line 353, in execvp
    _execvpe(file, args)
  File "/usr/lib/python2.5/os.py", line 389, in _execvpe
    func(fullname, *argrest)
OSError: [Errno 2] No such file or directory

Change History (4)

comment:1 by Aaron C. de Bruyn, 16 years ago

Sorry, I totally forgot to wrap that in braces and apparently can't edit my own ticket.

comment:2 by Karen Tracey, 16 years ago

Description: modified (diff)

Fixed formatting.

comment:3 by Adrian Holovaty, 16 years ago

Owner: changed from nobody to Adrian Holovaty
Status: newassigned
Triage Stage: UnreviewedAccepted

Good call -- we should have a friendlier error message here. I'm on it.

comment:4 by Adrian Holovaty, 16 years ago

Resolution: fixed
Status: assignedclosed

(In [8990]) Fixed #8978 -- We now print a helpful error message for 'manage.py dbshell' if the client executable is not found. Previously we were displaying a traceback

Note: See TracTickets for help on using tickets.
Back to Top