Kanga
Kanga

Reputation: 125

Running Odoo Application from Ubuntu

I have a project to do using Odoo in Ubuntu, they sent me an image file with a virtual machine containing Ubuntu and all the apps pre-installed for Odoo (Python, PostgreSQL, PyCharm etc.). The problem is that I can't find out how to access Odoo via browser or run an Odoo application (I got some finished projects too). I tried accessing the Odoo server with the default 127.0.0.1:8069 but it doesn't work. Any help would be appreciated.

Upvotes: 2

Views: 2775

Answers (1)

Keith John Hutchison
Keith John Hutchison

Reputation: 5287

I run odoo on an Ubuntu server. I'd start with checking if you have a odoo service.

sudo service odoo status

Status of odoo: running

This is what I put into my jira comments from when I was installing odoo.

wget -O - https://nightly.odoo.com/odoo.key | apt-key add -
echo "deb http://nightly.odoo.com/8.0/nightly/deb/ ./" >> /etc/apt/sources.list
apt-get update && apt-get install odoo

Upvotes: 1

Related Questions