I could reproduce the issue. It's a dependency related issue:
File "/opt/bitnami/apps/odoo/lib/odoo-9.0.post20151109-py2.7.egg/openerp/addons/website/models/ir_http.py", line 175, in _dispatch key = self.get_page_key() File "/opt/bitnami/apps/odoo/lib/odoo-9.0.post20151109-py2.7.egg/openerp/addons/website/models/ir_http.py", line 94, in get_page_key return (self._name, "cache", request.uid, request.lang, request.httprequest.full_path)AttributeError: 'Request' object has no attribute 'full_path'
A quick fix (workaround) is upgrading werkzeug package. Werkzeug is an HTTP and WSGI utility library for Python.
Connect to your Odoo instance via SSH and run the following command:
$ sudo pip install werkzeug==0.9.1
This will upgrade werkzeug from 0.8.3 to 0.9.1. After upgrade, restart the VM instance and it should be good.
I hope this works for you.
Sincerely,