--> -->
 
 
<class 'bsddb.db.DBAccessError'>
Python 2.7.3: /usr/bin/python
Wed Jun 19 16:31:24 2013

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /usr/lib/cgi-bin/ng/report.py in ()
     31 
     32 form = cgi.SvFormContentDict()
=>   33 store = shelve.open('/var/run/profile-baselines')
     34 
     35 if "db" in form:
store undefined, shelve = <module 'shelve' from '/usr/lib/python2.7/shelve.pyc'>, shelve.open = <function open>
 /usr/lib/python2.7/shelve.py in open(filename='/var/run/profile-baselines', flag='c', protocol=None, writeback=False)
    235 
    236     See the module's __doc__ string for an overview of the interface.
    237     """
    238 
=>  239     return DbfilenameShelf(filename, flag, protocol, writeback)
global DbfilenameShelf = <class shelve.DbfilenameShelf>, filename = '/var/run/profile-baselines', flag = 'c', protocol = None, writeback = False
 /usr/lib/python2.7/shelve.py in __init__(self=<DbfilenameShelf instance>, filename='/var/run/profile-baselines', flag='c', protocol=None, writeback=False)
    221     def __init__(self, filename, flag='c', protocol=None, writeback=False):
    222         import anydbm
=>  223         Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback)
    224 
    225 
global Shelf = <class shelve.Shelf>, Shelf.__init__ = <unbound method Shelf.__init__>, self = <DbfilenameShelf instance>, anydbm = <module 'anydbm' from '/usr/lib/python2.7/anydbm.pyc'>, anydbm.open = <function open>, filename = '/var/run/profile-baselines', flag = 'c', protocol = None, writeback = False
 /usr/lib/python2.7/anydbm.py in open(file='/var/run/profile-baselines', flag='c', mode=438)
     81         # db type cannot be determined
     82         raise error, "db type could not be determined"
     83     else:
     84         mod = __import__(result)
=>   85     return mod.open(file, flag, mode)
mod = <module 'dbhash' from '/usr/lib/python2.7/dbhash.pyc'>, mod.open = <function open>, file = '/var/run/profile-baselines', flag = 'c', mode = 438
 /usr/lib/python2.7/dbhash.py in open(file='/var/run/profile-baselines', flag='c', mode=438)
     14 
     15 error = bsddb.error                     # Exported for anydbm
     16 
     17 def open(file, flag = 'r', mode=0666):
=>   18     return bsddb.hashopen(file, flag, mode)
global bsddb = <module 'bsddb' from '/usr/lib/python2.7/bsddb/__init__.pyc'>, bsddb.hashopen = <function hashopen>, file = '/var/run/profile-baselines', flag = 'c', mode = 438
 /usr/lib/python2.7/bsddb/__init__.py in hashopen(file='/var/run/profile-baselines', flag='c', mode=438, pgsize=None, ffactor=None, nelem=None, cachesize=None, lorder=None, hflags=0)
    362     if ffactor is not None:   d.set_h_ffactor(ffactor)
    363     if nelem is not None:     d.set_h_nelem(nelem)
=>  364     d.open(file, db.DB_HASH, flags, mode)
    365     return _DBWithCursor(d)
    366 
d = <DB object>, d.open = <built-in method open of DB object>, file = '/var/run/profile-baselines', global db = <module '_bsddb' from '/usr/lib/python2.7/lib-dynload/_bsddb.so'>, db.DB_HASH = 2, flags = 17, mode = 438

<class 'bsddb.db.DBAccessError'>: (13, 'Permission denied')
      args = (13, 'Permission denied')
      message = ''