0
votes

I need to install Odoo V12 in my laptop and I having some problems with it. When I run the ./odoo-bin command for running the server this is the log. enter image description here

It seems okey but when I run http://localhost:8069/ is not working.

[options]
; This is the password that allows database operations:
; admin_passwd = admin
db_host = localhost
db_port = 5432
db_user = odoo
db_password = False
logfile = /var/log/odoo/odoo-server.log
addons_path = /opt/odoo/core/addons,/opt/odoo/core/odoo/addons
xmlrpc_port = 8269

Postgres user list: enter image description here

Anyone knows what's happening? Thanks for reading!

2

2 Answers

0
votes

Check if db is working and permission on config file.

sudo chown odoo: /etc/odoo-server.conf

sudo chmod 640 /etc/odoo-server.conf

0
votes

actually problem is with process's pid.

You have to kill process which is running on localhost:8069 port.

fire this commands:-

ps aux|grep odoo

Their find your command like (ODOO_FOLDER_PATH/odoo-bin )

Kill this process with

sudo kill -9 pid(pid is the process id , find where you located the line : second column)