Skip to Content
Menu
This question has been flagged
3 Replies
7573 Views

I tried install Odoo like one post here:

# echo "deb http://nightly.openerp.com/8.0/nightly/deb/ ./" >> /etc/apt/sources.list

# apt-get update

# apt-get install odoo

# service odoo start

But when i try to go localhost:8069 have an error: 

Internal Server Error

The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application.

 

Iḿ newbie with this software, and have not idea how can i solve this.

It's installed in a clean Linuxmint 17 64bits cinnamon. 

Tried with safari and chrome and have the same error. 

thanks

Avatar
Discard
Best Answer

Please check server log generally its located at /var/log/openerp/openerp-server.log. There might be any python package missing.

Avatar
Discard
Best Answer

What does your log-file tell you about the error? How do you run the server, using a deamon or manually on the commandline?

Avatar
Discard
Author Best Answer

the server log: 

a lot of thanks for this help, odoo is the last software i need for migrate 100% from windows to linux :-)

Hi, edit the answer, in my computer, the instructions for install the last version of odoo don't work. Finally i can install odoo doing this (don't know if is the better way, i believe can help others).

Install postgresql with terminal

$ sudo apt-get install postgresql

Password for postgres user

$ sudo -u postgres psql postgres

postgres=# \password postgres  (write your password when terminal say)

 

(ctrl +D for exit)

Create a user as my linuxmint user:

$ sudo -u postgres createuser --superuser $USER ($USER automatically is your linux user)

$ sudo -u postgres psql (for change the new user password)

postgres=# \password USUARIO (change USUARIO/USER for your linux user and write your password)

CTRL + D for exit

Next, I download the .deb package from Odoo, change the permission of the file for all to write and read (don't know if necessary), then click and install. Next in terminal, write:

sudo su (for superuser access)

sudo service odoo start (must be OK, you can test with sudo service odoo status)

Go for your internet browser and write: localhost:8069, create the database following the instructions, and next, create one user for your Odoo company.

For me, it was OK and running well, please, if somebody can say if something is wrong it will can help others with same problem.

 

 

 

 

 

 

 

Avatar
Discard